body {
  font-family: 'Urbanist', sans-serif;
}
.display-1 {
  font-family: 'Urbanist', sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-2 {
  font-family: 'Urbanist', sans-serif;
  font-size: 2.5rem;
  line-height: 1.24;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.125rem;
  line-height: 1.63;
}
.display-4 > .mbr-iconfont {
  font-size: 1.40625rem;
}
.display-5 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.5rem;
  line-height: 1.28;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Urbanist', 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: 2.8rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.45rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-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: #0057fc !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #b4b8ff !important;
}
.bg-warning {
  background-color: #ffdd0f !important;
}
.bg-danger {
  background-color: #a28b00 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0057fc !important;
  border-color: #0057fc !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0039a5 !important;
  border-color: #0039a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0039a5 !important;
  border-color: #0039a5 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff1f25 !important;
  border-color: #ff1f25 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #c70005 !important;
  border-color: #c70005 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #c70005 !important;
  border-color: #c70005 !important;
}
.btn-info,
.btn-info:active {
  background-color: #b4b8ff !important;
  border-color: #b4b8ff !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #5d66ff !important;
  border-color: #5d66ff !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #5d66ff !important;
  border-color: #5d66ff !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffdd0f !important;
  border-color: #ffdd0f !important;
  color: #0f0d00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #b79d00 !important;
  border-color: #b79d00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #0f0d00 !important;
  background-color: #b79d00 !important;
  border-color: #b79d00 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #a28b00 !important;
  border-color: #a28b00 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #4b4100 !important;
  border-color: #4b4100 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #4b4100 !important;
  border-color: #4b4100 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #111111 !important;
  border-color: #111111 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0057fc;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0039a5 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0057fc !important;
  border-color: #0057fc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff1f25;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #c70005 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff1f25 !important;
  border-color: #ff1f25 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b4b8ff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #5d66ff !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #b4b8ff !important;
  border-color: #b4b8ff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffdd0f;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #b79d00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #0f0d00 !important;
  background-color: #ffdd0f !important;
  border-color: #ffdd0f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a28b00;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #4b4100 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #a28b00 !important;
  border-color: #a28b00 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #111111;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #111111 !important;
  border-color: #111111 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #0057fc !important;
}
.text-secondary {
  color: #ff1f25 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #b4b8ff !important;
}
.text-warning {
  color: #ffdd0f !important;
}
.text-danger {
  color: #a28b00 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #111111 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #003496 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #b80005 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #4e57ff !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #a89000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #3c3300 !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: #0057fc;
}
.nav-tabs .nav-link:not(.active) {
  color: #111111;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #b4b8ff;
}
.alert-warning {
  background-color: #ffdd0f;
}
.alert-danger {
  background-color: #a28b00;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0057fc;
  border-color: #0057fc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #0057fc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c9dcff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fffadb;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffe022;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.125rem;
  line-height: 1.63;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.40625rem;
}
.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: #0057fc !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.125rem;
  line-height: 1.63;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.40625rem;
}
blockquote {
  border-color: #0057fc;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0057fc;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0057fc;
}
.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: #0057fc;
  border-bottom-color: #0057fc;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #0057fc !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff1f25 !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='%230057fc' %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;
}
.container {
  max-width: 1200px;
}
.btn {
  box-shadow: none;
  padding: 14px 28px;
  line-height: 1;
}
.label-text {
  letter-spacing: 2px;
}
.cid-sPTNINWSSI .navbar-dropdown {
  position: relative !important;
}
.cid-sPTNINWSSI .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-sPTNINWSSI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPTNINWSSI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPTNINWSSI .dropdown-item:hover,
.cid-sPTNINWSSI .dropdown-item:focus {
  background: #0057fc !important;
  color: white !important;
}
.cid-sPTNINWSSI .dropdown-item:hover span {
  color: white;
}
.cid-sPTNINWSSI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPTNINWSSI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPTNINWSSI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPTNINWSSI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPTNINWSSI .nav-link {
  position: relative;
}
.cid-sPTNINWSSI .container {
  display: flex;
  margin: auto;
}
.cid-sPTNINWSSI .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPTNINWSSI .dropdown-menu,
.cid-sPTNINWSSI .navbar.opened {
  background: #f3d0f4 !important;
}
.cid-sPTNINWSSI .nav-item:focus,
.cid-sPTNINWSSI .nav-link:focus {
  outline: none;
}
.cid-sPTNINWSSI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPTNINWSSI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPTNINWSSI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPTNINWSSI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPTNINWSSI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPTNINWSSI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPTNINWSSI .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sPTNINWSSI .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-sPTNINWSSI .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-sPTNINWSSI .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f3d0f4;
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-sPTNINWSSI .navbar.opened {
  transition: all 0.3s;
}
.cid-sPTNINWSSI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPTNINWSSI .navbar .navbar-logo img {
  width: auto;
}
.cid-sPTNINWSSI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sPTNINWSSI .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-sPTNINWSSI .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-sPTNINWSSI .navbar.collapsed {
  justify-content: center;
}
.cid-sPTNINWSSI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPTNINWSSI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPTNINWSSI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-sPTNINWSSI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPTNINWSSI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPTNINWSSI .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-sPTNINWSSI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-sPTNINWSSI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPTNINWSSI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPTNINWSSI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPTNINWSSI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPTNINWSSI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPTNINWSSI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPTNINWSSI .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-sPTNINWSSI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPTNINWSSI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPTNINWSSI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPTNINWSSI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPTNINWSSI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPTNINWSSI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPTNINWSSI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPTNINWSSI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPTNINWSSI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sPTNINWSSI .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-sPTNINWSSI .navbar {
    padding: 0 50px !important;
  }
}
.cid-sPTNINWSSI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sPTNINWSSI .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-sPTNINWSSI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-sPTNINWSSI .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-sPTNINWSSI .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
  display: none !important;
}
.cid-sPTNINWSSI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPTNINWSSI .dropdown-item.active,
.cid-sPTNINWSSI .dropdown-item:active {
  background-color: transparent;
}
.cid-sPTNINWSSI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPTNINWSSI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPTNINWSSI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPTNINWSSI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3d0f4;
}
.cid-sPTNINWSSI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPTNINWSSI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPTNINWSSI ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sPTNINWSSI ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-sPTNINWSSI .navbar-buttons {
  text-align: center;
  margin-left: auto;
  margin-right: -0.6rem;
}
@media (min-width: 992px) {
  .cid-sPTNINWSSI .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-sPTNINWSSI .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-sPTNINWSSI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-sPTNINWSSI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sPTNINWSSI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPTNINWSSI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-sPTNINWSSI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-sPTNINWSSI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-sPTNINWSSI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPTNINWSSI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-sPTNINWSSI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-sPTNINWSSI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPTNINWSSI .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sPTNINWSSI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPTNINWSSI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPTNINWSSI .navbar {
    height: 100px;
  }
  .cid-sPTNINWSSI .navbar.opened {
    height: auto;
  }
  .cid-sPTNINWSSI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sPTNINWSSI .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-sPTNINWSSI .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-sPTNINWSSI .nav-link:before {
  content: '';
  position: absolute;
  color: #0057fc;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-sPTNLFvAOB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sPTNLFvAOB .mbr-overlay {
  z-index: 1;
}
.cid-sPTNLFvAOB .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-sPTNLFvAOB .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-sPTNLFvAOB .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-sPTNLFvAOB .item-title {
  width: 100%;
  color: #111111;
}
.cid-sPTNLFvAOB .mbr-text {
  color: #555555;
}
.cid-sPTNLFvAOB .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-sPTNLFvAOB .card-container {
  display: flex;
}
.cid-sPTNLFvAOB .card-container .card {
  border-radius: 0;
}
.cid-sPTNLFvAOB .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-sPTNLFvAOB .card-container .card .item-img {
    height: 400px;
  }
}
.cid-sPTNLFvAOB .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-sPTNLFvAOB .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-sPTO0THb0b {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f3d0f4;
}
.cid-sPTO0THb0b .row {
  align-items: center;
}
.cid-sPTO0THb0b .img-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-sPTO0THb0b .img-item {
    padding: 0;
  }
}
.cid-sPTO0THb0b .img-item img {
  height: auto;
  width: 250px;
}
@media (max-width: 767px) {
  .cid-sPTO0THb0b .text-col {
    margin-top: 45px;
    order: 5;
  }
}
@media (min-width: 992px) {
  .cid-sPTO0THb0b .text-col {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-sPTO0THb0b .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .cid-sPTO0THb0b .text-wrapper {
    padding: 0 100px 0 75px;
  }
}
.cid-sPTO0THb0b .icon-wrap {
  width: 100%;
  display: flex;
}
@media (max-width: 767px) {
  .cid-sPTO0THb0b .icon-wrap {
    justify-content: center;
  }
}
.cid-sPTO0THb0b .icon-box {
  background: #ffdd0f;
  width: 50px;
  min-width: 50px;
  height: 50px;
  padding: 17px;
  border-radius: 50%;
  margin-bottom: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sPTO0THb0b .icon-box .mbr-iconfont {
  font-size: 16px;
  color: #0f0d00;
}
.cid-sPTO0THb0b .mbr-section-title {
  margin-bottom: 36px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sPTO0THb0b .mbr-section-title {
    text-align: center !important;
  }
}
.cid-sPTO0THb0b .mbr-text {
  color: #555555;
  letter-spacing: inherit;
  width: 100%;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .cid-sPTO0THb0b .mbr-text {
    text-align: center !important;
  }
}
.cid-sPTO0THb0b .btn-container {
  width: 100%;
}
.cid-sPTO0THb0b .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-sPTO0THb0b .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sPTO0THb0b .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sPTO1bNArn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sPTO1bNArn .row {
  align-items: center;
}
.cid-sPTO1bNArn .img-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-sPTO1bNArn .img-item {
    padding: 0;
  }
}
.cid-sPTO1bNArn .img-item img {
  height: auto;
  width: 250px;
}
@media (max-width: 767px) {
  .cid-sPTO1bNArn .text-col {
    margin-top: 45px;
    order: 5;
  }
}
@media (min-width: 992px) {
  .cid-sPTO1bNArn .text-col {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-sPTO1bNArn .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .cid-sPTO1bNArn .text-wrapper {
    padding: 0 75px 0 100px;
  }
}
.cid-sPTO1bNArn .icon-wrap {
  width: 100%;
  display: flex;
}
@media (max-width: 767px) {
  .cid-sPTO1bNArn .icon-wrap {
    justify-content: center;
  }
}
.cid-sPTO1bNArn .icon-box {
  background: #ff1f25;
  width: 50px;
  min-width: 50px;
  height: 50px;
  padding: 17px;
  border-radius: 50%;
  margin-bottom: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sPTO1bNArn .icon-box .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-sPTO1bNArn .mbr-section-title {
  margin-bottom: 36px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sPTO1bNArn .mbr-section-title {
    text-align: center !important;
  }
}
.cid-sPTO1bNArn .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-sPTO1bNArn .mbr-text {
    text-align: center !important;
  }
}
.cid-sPTO1bNArn .item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  width: 100%;
}
.cid-sPTO1bNArn .item-icon-box {
  margin-right: 16px;
}
.cid-sPTO1bNArn .item-icon-box .mbr-iconfont {
  font-size: 18px;
  color: #0057fc;
}
.cid-sPTO1bNArn .text-box {
  flex-grow: 1;
}
.cid-sPTO1bNArn .btn-container {
  width: 100%;
}
.cid-sPTO1bNArn .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-sPTO1bNArn .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sPTO1bNArn .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-u4qAEVeAnn {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f3d0f4;
}
.cid-u4qAEVeAnn .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4qAEVeAnn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4qAEVeAnn .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u4qAEVeAnn .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u4qAEVeAnn .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u4qAEVeAnn .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u4qAEVeAnn .container {
    padding: 0 16px;
  }
}
.cid-u4qAEVeAnn .content-wrapper {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  padding: 40px 0;
}
@media (max-width: 992px) {
  .cid-u4qAEVeAnn .content-wrapper {
    padding: 20px 0;
  }
}
.cid-u4qAEVeAnn .content-wrapper .content-wrap {
  display: inline-flex;
  width: 80%;
}
@media (max-width: 768px) {
  .cid-u4qAEVeAnn .content-wrapper .content-wrap {
    display: block;
    width: 100%;
  }
}
.cid-u4qAEVeAnn .content-wrapper .content-wrap:hover .mbr-iconfont,
.cid-u4qAEVeAnn .content-wrapper .content-wrap:focus .mbr-iconfont {
  transform: translateX(1rem);
}
.cid-u4qAEVeAnn .content-wrapper .content-wrap:hover .mbr-section-title,
.cid-u4qAEVeAnn .content-wrapper .content-wrap:focus .mbr-section-title {
  text-decoration-color: #000000;
}
.cid-u4qAEVeAnn .content-wrapper .content-wrap .mbr-iconfont {
  font-size: 100px;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  margin-right: 48px;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-u4qAEVeAnn .content-wrapper .content-wrap .mbr-iconfont {
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 60px;
  }
}
.cid-u4qAEVeAnn .content-wrapper .content-wrap .mbr-section-title {
  text-decoration: underline;
  text-decoration-color: transparent;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-u4qAEVeAnn .mbr-section-title {
  color: #000000;
}
.cid-u4qAEVeAnn .mbr-section-title,
.cid-u4qAEVeAnn .content-wrapper {
  text-align: center;
}
.cid-u4qAxobQ2V {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f3d0f4;
}
.cid-u4qAxobQ2V .row {
  padding: 0 1rem;
  border-bottom: 1px solid #EEEEEE;
}
@media (min-width: 992px) {
  .cid-u4qAxobQ2V .row {
    padding-bottom: 45px;
  }
}
@media (max-width: 991px) {
  .cid-u4qAxobQ2V .row {
    padding: 0 0.75rem;
  }
}
.cid-u4qAxobQ2V .card-wrapper {
  display: flex;
  padding-right: 2rem;
}
@media (max-width: 991px) {
  .cid-u4qAxobQ2V .card-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
  }
}
.cid-u4qAxobQ2V .card-text {
  color: #000000;
}
.cid-u4qAxobQ2V .mbr-iconfont {
  font-size: 25px;
  color: #ffffff;
}
.cid-u4qAxobQ2V .icon-box {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u4qAxobQ2V .icon-box {
    margin-bottom: 28px;
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-u4qAxobQ2V .card-box {
    text-align: center;
  }
}
.cid-u4qAxobQ2V .card:nth-child(1) .icon-box {
  background: #0057fc;
}
.cid-u4qAxobQ2V .card:nth-child(2) .icon-box {
  background: #ffdd0f;
}
.cid-u4qAxobQ2V .card:nth-child(3) .icon-box {
  background: #ff1f25;
}
.cid-u4qAxobQ2V .card:nth-child(4) .icon-box {
  background: #40b0bf;
}
.cid-u4qAxobQ2V .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4qAxobQ2V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sPTO3tPEJ6 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../images/5-1280x720.jpg");
}
.cid-sPTO3tPEJ6 .row {
  align-items: center;
}
.cid-sPTO3tPEJ6 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-sPTO3tPEJ6 .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-sPTO3tPEJ6 .header-text {
    margin-bottom: 20px;
  }
}
.cid-sPTO3tPEJ6 .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
}
.cid-sPTO3tPEJ6 .mbr-text {
  color: #ffffff;
  width: 100%;
  margin-bottom: 0;
  margin-top: 12px;
}
.cid-u4qBkiTl4O {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u4qBkiTl4O .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4qBkiTl4O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4qBkiTl4O .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u4qBkiTl4O .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u4qBkiTl4O .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u4qBkiTl4O .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u4qBkiTl4O .container {
    padding: 0 16px;
  }
}
.cid-u4qBkiTl4O .row {
  padding: 60px 44px;
  background-color: #f3d0f4;
  justify-content: space-between;
  margin: 0;
  border-radius: 1rem;
}
@media (max-width: 1200px) {
  .cid-u4qBkiTl4O .row {
    padding: 32px 16px;
  }
}
@media (max-width: 992px) {
  .cid-u4qBkiTl4O .row {
    padding: 25px 9px;
  }
}
.cid-u4qBkiTl4O .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u4qBkiTl4O .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-u4qBkiTl4O .content-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u4qBkiTl4O .content-wrapper {
    height: auto;
    margin-bottom: 32px;
  }
}
.cid-u4qBkiTl4O .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-u4qBkiTl4O .image-wrapper img {
  height: 500px;
  object-fit: cover;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-u4qBkiTl4O .image-wrapper img {
    height: 350px;
  }
}
.cid-u4qBkiTl4O .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-u4qBkiTl4O .mbr-text {
  color: #000000;
}
.cid-u4qBkiTl4O .mbr-name {
  color: #000000;
}
.cid-u4qBBphOAJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3d0f4;
  flex-direction: column;
  justify-content: center;
}
.cid-u4qBBphOAJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4qBBphOAJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4qBBphOAJ .container-fluid {
  padding: 0 48px;
}
@media (max-width: 992px) {
  .cid-u4qBBphOAJ .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u4qBBphOAJ .container {
    padding: 0 16px;
  }
}
.cid-u4qBBphOAJ .content-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-u4qBBphOAJ .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 85%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u4qBBphOAJ .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-u4qBBphOAJ .mbr-desc {
  color: #000000;
}
.cid-u4qBBphOAJ .mbr-text {
  color: #000000;
}
.cid-u4qBomRbLh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-u4qBomRbLh .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4qBomRbLh .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-u4qBomRbLh .container {
    padding: 0 16px;
  }
}
.cid-u4qBomRbLh .row {
  justify-content: space-between;
}
.cid-u4qBomRbLh .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-u4qBomRbLh .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u4qBomRbLh .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-u4qBomRbLh .image-wrapper {
    margin-top: 32px;
  }
}
.cid-u4qBomRbLh .image-wrapper img {
  height: 550px;
  object-fit: cover;
  border-radius: .5rem !important;
}
@media (max-width: 992px) {
  .cid-u4qBomRbLh .image-wrapper img {
    height: 350px;
  }
}
.cid-u4qBomRbLh .mbr-desc {
  color: #706cff;
}
.cid-u4qBomRbLh .mbr-section-title {
  color: #000000;
}
.cid-u4qBomRbLh .mbr-text {
  color: #000000;
}
.cid-sPBVHiCONA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f3d0f4;
  overflow: hidden;
}
.cid-sPBVHiCONA .mbr-text {
  color: #111111;
}
.cid-sPTNINWSSI .navbar-dropdown {
  position: relative !important;
}
.cid-sPTNINWSSI .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-sPTNINWSSI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPTNINWSSI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPTNINWSSI .dropdown-item:hover,
.cid-sPTNINWSSI .dropdown-item:focus {
  background: #0057fc !important;
  color: white !important;
}
.cid-sPTNINWSSI .dropdown-item:hover span {
  color: white;
}
.cid-sPTNINWSSI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPTNINWSSI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPTNINWSSI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPTNINWSSI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPTNINWSSI .nav-link {
  position: relative;
}
.cid-sPTNINWSSI .container {
  display: flex;
  margin: auto;
}
.cid-sPTNINWSSI .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPTNINWSSI .dropdown-menu,
.cid-sPTNINWSSI .navbar.opened {
  background: #f3d0f4 !important;
}
.cid-sPTNINWSSI .nav-item:focus,
.cid-sPTNINWSSI .nav-link:focus {
  outline: none;
}
.cid-sPTNINWSSI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPTNINWSSI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPTNINWSSI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPTNINWSSI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPTNINWSSI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPTNINWSSI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPTNINWSSI .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sPTNINWSSI .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-sPTNINWSSI .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-sPTNINWSSI .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f3d0f4;
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-sPTNINWSSI .navbar.opened {
  transition: all 0.3s;
}
.cid-sPTNINWSSI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPTNINWSSI .navbar .navbar-logo img {
  width: auto;
}
.cid-sPTNINWSSI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sPTNINWSSI .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-sPTNINWSSI .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-sPTNINWSSI .navbar.collapsed {
  justify-content: center;
}
.cid-sPTNINWSSI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPTNINWSSI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPTNINWSSI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-sPTNINWSSI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPTNINWSSI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPTNINWSSI .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-sPTNINWSSI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-sPTNINWSSI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPTNINWSSI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPTNINWSSI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPTNINWSSI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPTNINWSSI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPTNINWSSI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPTNINWSSI .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-sPTNINWSSI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPTNINWSSI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPTNINWSSI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPTNINWSSI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPTNINWSSI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPTNINWSSI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPTNINWSSI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPTNINWSSI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPTNINWSSI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sPTNINWSSI .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-sPTNINWSSI .navbar {
    padding: 0 50px !important;
  }
}
.cid-sPTNINWSSI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sPTNINWSSI .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-sPTNINWSSI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-sPTNINWSSI .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-sPTNINWSSI .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
  display: none !important;
}
.cid-sPTNINWSSI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPTNINWSSI .dropdown-item.active,
.cid-sPTNINWSSI .dropdown-item:active {
  background-color: transparent;
}
.cid-sPTNINWSSI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPTNINWSSI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPTNINWSSI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPTNINWSSI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3d0f4;
}
.cid-sPTNINWSSI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPTNINWSSI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPTNINWSSI ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sPTNINWSSI ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-sPTNINWSSI .navbar-buttons {
  text-align: center;
  margin-left: auto;
  margin-right: -0.6rem;
}
@media (min-width: 992px) {
  .cid-sPTNINWSSI .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-sPTNINWSSI .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-sPTNINWSSI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-sPTNINWSSI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sPTNINWSSI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPTNINWSSI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-sPTNINWSSI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-sPTNINWSSI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-sPTNINWSSI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPTNINWSSI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-sPTNINWSSI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-sPTNINWSSI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPTNINWSSI .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sPTNINWSSI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPTNINWSSI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPTNINWSSI .navbar {
    height: 100px;
  }
  .cid-sPTNINWSSI .navbar.opened {
    height: auto;
  }
  .cid-sPTNINWSSI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sPTNINWSSI .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-sPTNINWSSI .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-sPTNINWSSI .nav-link:before {
  content: '';
  position: absolute;
  color: #0057fc;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u4qF8CfmhB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u4qF8CfmhB .row {
  align-items: center;
}
.cid-u4qF8CfmhB .image-wrapper img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-u4qF8CfmhB .image-wrapper {
    padding-top: 1.5rem;
  }
}
.cid-u4qF8CfmhB .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .cid-u4qF8CfmhB .text-wrapper {
    padding-right: 115px;
  }
}
.cid-u4qF8CfmhB .label-text {
  width: 100%;
  margin-bottom: 12px;
  color: #111111;
}
.cid-u4qF8CfmhB .mbr-section-title {
  margin-bottom: 12px;
}
.cid-u4qF8CfmhB .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-u4qF8CfmhB .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-u4qF8CfmhB .btn-container {
  width: 100%;
}
.cid-u4qF8CfmhB .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-u4qF8CfmhB .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-u4qF8CfmhB .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-u4qFadn0EG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3d0f4;
}
.cid-u4qFadn0EG .row {
  align-items: center;
}
.cid-u4qFadn0EG .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-u4qFadn0EG .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-u4qFadn0EG .header-text {
    margin-bottom: 20px;
  }
}
.cid-u4qFadn0EG .mbr-section-title {
  width: 100%;
  color: #111111;
  margin-bottom: 8px;
}
.cid-u4qFadn0EG .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-u4qFadn0EG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4qFadn0EG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4qFadn0EG .mbr-text,
.cid-u4qFadn0EG .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-u4qGSxdMlf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u4qGSxdMlf .mbr-overlay {
  z-index: 1;
}
.cid-u4qGSxdMlf .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-u4qGSxdMlf .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-u4qGSxdMlf .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-u4qGSxdMlf .item-title {
  width: 100%;
  color: #111111;
}
.cid-u4qGSxdMlf .mbr-text {
  color: #555555;
}
.cid-u4qGSxdMlf .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-u4qGSxdMlf .card-container {
  display: flex;
}
.cid-u4qGSxdMlf .card-container .card {
  border-radius: 0;
}
.cid-u4qGSxdMlf .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-u4qGSxdMlf .card-container .card .item-img {
    height: 400px;
  }
}
.cid-u4qGSxdMlf .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-u4qGSxdMlf .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-sPBVHiCONA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f3d0f4;
  overflow: hidden;
}
.cid-sPBVHiCONA .mbr-text {
  color: #111111;
}
.cid-u4qH0997FF .navbar-dropdown {
  position: relative !important;
}
.cid-u4qH0997FF .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-u4qH0997FF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4qH0997FF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4qH0997FF .dropdown-item:hover,
.cid-u4qH0997FF .dropdown-item:focus {
  background: #0057fc !important;
  color: white !important;
}
.cid-u4qH0997FF .dropdown-item:hover span {
  color: white;
}
.cid-u4qH0997FF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4qH0997FF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4qH0997FF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4qH0997FF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4qH0997FF .nav-link {
  position: relative;
}
.cid-u4qH0997FF .container {
  display: flex;
  margin: auto;
}
.cid-u4qH0997FF .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4qH0997FF .dropdown-menu,
.cid-u4qH0997FF .navbar.opened {
  background: #f3d0f4 !important;
}
.cid-u4qH0997FF .nav-item:focus,
.cid-u4qH0997FF .nav-link:focus {
  outline: none;
}
.cid-u4qH0997FF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4qH0997FF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4qH0997FF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4qH0997FF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4qH0997FF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4qH0997FF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4qH0997FF .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u4qH0997FF .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-u4qH0997FF .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-u4qH0997FF .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f3d0f4;
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-u4qH0997FF .navbar.opened {
  transition: all 0.3s;
}
.cid-u4qH0997FF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4qH0997FF .navbar .navbar-logo img {
  width: auto;
}
.cid-u4qH0997FF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-u4qH0997FF .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-u4qH0997FF .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-u4qH0997FF .navbar.collapsed {
  justify-content: center;
}
.cid-u4qH0997FF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4qH0997FF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4qH0997FF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-u4qH0997FF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4qH0997FF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4qH0997FF .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-u4qH0997FF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-u4qH0997FF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4qH0997FF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4qH0997FF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4qH0997FF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4qH0997FF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4qH0997FF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4qH0997FF .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-u4qH0997FF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4qH0997FF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4qH0997FF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4qH0997FF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4qH0997FF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4qH0997FF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u4qH0997FF .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4qH0997FF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4qH0997FF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-u4qH0997FF .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-u4qH0997FF .navbar {
    padding: 0 50px !important;
  }
}
.cid-u4qH0997FF .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-u4qH0997FF .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-u4qH0997FF .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-u4qH0997FF .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-u4qH0997FF .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
  display: none !important;
}
.cid-u4qH0997FF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4qH0997FF .dropdown-item.active,
.cid-u4qH0997FF .dropdown-item:active {
  background-color: transparent;
}
.cid-u4qH0997FF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4qH0997FF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4qH0997FF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4qH0997FF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3d0f4;
}
.cid-u4qH0997FF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4qH0997FF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4qH0997FF ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-u4qH0997FF ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-u4qH0997FF .navbar-buttons {
  text-align: center;
  margin-left: auto;
  margin-right: -0.6rem;
}
@media (min-width: 992px) {
  .cid-u4qH0997FF .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-u4qH0997FF .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-u4qH0997FF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-u4qH0997FF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u4qH0997FF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4qH0997FF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u4qH0997FF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u4qH0997FF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-u4qH0997FF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4qH0997FF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u4qH0997FF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u4qH0997FF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4qH0997FF .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u4qH0997FF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4qH0997FF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4qH0997FF .navbar {
    height: 100px;
  }
  .cid-u4qH0997FF .navbar.opened {
    height: auto;
  }
  .cid-u4qH0997FF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4qH0997FF .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-u4qH0997FF .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u4qH0997FF .nav-link:before {
  content: '';
  position: absolute;
  color: #0057fc;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u4qH09LmQ0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u4qH09LmQ0 .row {
  align-items: center;
}
.cid-u4qH09LmQ0 .image-wrapper img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-u4qH09LmQ0 .image-wrapper {
    padding-top: 1.5rem;
  }
}
.cid-u4qH09LmQ0 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .cid-u4qH09LmQ0 .text-wrapper {
    padding-right: 115px;
  }
}
.cid-u4qH09LmQ0 .label-text {
  width: 100%;
  margin-bottom: 12px;
  color: #111111;
}
.cid-u4qH09LmQ0 .mbr-section-title {
  margin-bottom: 12px;
}
.cid-u4qH09LmQ0 .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-u4qH09LmQ0 .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-u4qH09LmQ0 .btn-container {
  width: 100%;
}
.cid-u4qH09LmQ0 .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-u4qH09LmQ0 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-u4qH09LmQ0 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-u4qH09LmQ0 .mbr-text,
.cid-u4qH09LmQ0 .mbr-section-btn {
  color: #000000;
}
.cid-u4qH0ahVko {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #f3d0f4;
}
.cid-u4qH0ahVko .row {
  align-items: center;
}
.cid-u4qH0ahVko .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-u4qH0ahVko .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-u4qH0ahVko .header-text {
    margin-bottom: 20px;
  }
}
.cid-u4qH0ahVko .mbr-section-title {
  width: 100%;
  color: #111111;
  margin-bottom: 8px;
}
.cid-u4qH0ahVko .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-u4qH0ahVko .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4qH0ahVko .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4qH0ahVko .mbr-text,
.cid-u4qH0ahVko .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-u4qH0aFfVo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u4qH0aFfVo .mbr-overlay {
  z-index: 1;
}
.cid-u4qH0aFfVo .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-u4qH0aFfVo .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-u4qH0aFfVo .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-u4qH0aFfVo .item-title {
  width: 100%;
  color: #111111;
}
.cid-u4qH0aFfVo .mbr-text {
  color: #555555;
}
.cid-u4qH0aFfVo .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-u4qH0aFfVo .card-container {
  display: flex;
}
.cid-u4qH0aFfVo .card-container .card {
  border-radius: 0;
}
.cid-u4qH0aFfVo .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-u4qH0aFfVo .card-container .card .item-img {
    height: 400px;
  }
}
.cid-u4qH0aFfVo .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-u4qH0aFfVo .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-u4qH0b07pz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f3d0f4;
  overflow: hidden;
}
.cid-u4qH0b07pz .mbr-text {
  color: #111111;
}
.cid-u4qIiDXOE7 .navbar-dropdown {
  position: relative !important;
}
.cid-u4qIiDXOE7 .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-u4qIiDXOE7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4qIiDXOE7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4qIiDXOE7 .dropdown-item:hover,
.cid-u4qIiDXOE7 .dropdown-item:focus {
  background: #0057fc !important;
  color: white !important;
}
.cid-u4qIiDXOE7 .dropdown-item:hover span {
  color: white;
}
.cid-u4qIiDXOE7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4qIiDXOE7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4qIiDXOE7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4qIiDXOE7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4qIiDXOE7 .nav-link {
  position: relative;
}
.cid-u4qIiDXOE7 .container {
  display: flex;
  margin: auto;
}
.cid-u4qIiDXOE7 .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4qIiDXOE7 .dropdown-menu,
.cid-u4qIiDXOE7 .navbar.opened {
  background: #f3d0f4 !important;
}
.cid-u4qIiDXOE7 .nav-item:focus,
.cid-u4qIiDXOE7 .nav-link:focus {
  outline: none;
}
.cid-u4qIiDXOE7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4qIiDXOE7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4qIiDXOE7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4qIiDXOE7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4qIiDXOE7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4qIiDXOE7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4qIiDXOE7 .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u4qIiDXOE7 .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-u4qIiDXOE7 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-u4qIiDXOE7 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f3d0f4;
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-u4qIiDXOE7 .navbar.opened {
  transition: all 0.3s;
}
.cid-u4qIiDXOE7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4qIiDXOE7 .navbar .navbar-logo img {
  width: auto;
}
.cid-u4qIiDXOE7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-u4qIiDXOE7 .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-u4qIiDXOE7 .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-u4qIiDXOE7 .navbar.collapsed {
  justify-content: center;
}
.cid-u4qIiDXOE7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4qIiDXOE7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4qIiDXOE7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-u4qIiDXOE7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4qIiDXOE7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4qIiDXOE7 .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-u4qIiDXOE7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-u4qIiDXOE7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4qIiDXOE7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4qIiDXOE7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4qIiDXOE7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4qIiDXOE7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4qIiDXOE7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4qIiDXOE7 .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-u4qIiDXOE7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4qIiDXOE7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4qIiDXOE7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4qIiDXOE7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4qIiDXOE7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4qIiDXOE7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u4qIiDXOE7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4qIiDXOE7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4qIiDXOE7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-u4qIiDXOE7 .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-u4qIiDXOE7 .navbar {
    padding: 0 50px !important;
  }
}
.cid-u4qIiDXOE7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-u4qIiDXOE7 .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-u4qIiDXOE7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-u4qIiDXOE7 .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-u4qIiDXOE7 .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
  display: none !important;
}
.cid-u4qIiDXOE7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4qIiDXOE7 .dropdown-item.active,
.cid-u4qIiDXOE7 .dropdown-item:active {
  background-color: transparent;
}
.cid-u4qIiDXOE7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4qIiDXOE7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4qIiDXOE7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4qIiDXOE7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3d0f4;
}
.cid-u4qIiDXOE7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4qIiDXOE7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4qIiDXOE7 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-u4qIiDXOE7 ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-u4qIiDXOE7 .navbar-buttons {
  text-align: center;
  margin-left: auto;
  margin-right: -0.6rem;
}
@media (min-width: 992px) {
  .cid-u4qIiDXOE7 .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-u4qIiDXOE7 .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-u4qIiDXOE7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-u4qIiDXOE7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u4qIiDXOE7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4qIiDXOE7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u4qIiDXOE7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u4qIiDXOE7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-u4qIiDXOE7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4qIiDXOE7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u4qIiDXOE7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u4qIiDXOE7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4qIiDXOE7 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u4qIiDXOE7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4qIiDXOE7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4qIiDXOE7 .navbar {
    height: 100px;
  }
  .cid-u4qIiDXOE7 .navbar.opened {
    height: auto;
  }
  .cid-u4qIiDXOE7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4qIiDXOE7 .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-u4qIiDXOE7 .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u4qIiDXOE7 .nav-link:before {
  content: '';
  position: absolute;
  color: #0057fc;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u4qIiEwmLN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u4qIiEwmLN .row {
  align-items: center;
}
.cid-u4qIiEwmLN .image-wrapper img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-u4qIiEwmLN .image-wrapper {
    padding-top: 1.5rem;
  }
}
.cid-u4qIiEwmLN .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .cid-u4qIiEwmLN .text-wrapper {
    padding-right: 115px;
  }
}
.cid-u4qIiEwmLN .label-text {
  width: 100%;
  margin-bottom: 12px;
  color: #111111;
}
.cid-u4qIiEwmLN .mbr-section-title {
  margin-bottom: 12px;
}
.cid-u4qIiEwmLN .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-u4qIiEwmLN .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-u4qIiEwmLN .btn-container {
  width: 100%;
}
.cid-u4qIiEwmLN .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-u4qIiEwmLN .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-u4qIiEwmLN .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-u4qIiEwmLN .mbr-text,
.cid-u4qIiEwmLN .mbr-section-btn {
  color: #000000;
}
.cid-u4qIiF0LNa {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #f3d0f4;
}
.cid-u4qIiF0LNa .row {
  align-items: center;
}
.cid-u4qIiF0LNa .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-u4qIiF0LNa .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-u4qIiF0LNa .header-text {
    margin-bottom: 20px;
  }
}
.cid-u4qIiF0LNa .mbr-section-title {
  width: 100%;
  color: #111111;
  margin-bottom: 8px;
}
.cid-u4qIiF0LNa .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-u4qIiF0LNa .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4qIiF0LNa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4qIiF0LNa .mbr-text,
.cid-u4qIiF0LNa .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-u4qIiFpnNE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u4qIiFpnNE .mbr-overlay {
  z-index: 1;
}
.cid-u4qIiFpnNE .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-u4qIiFpnNE .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-u4qIiFpnNE .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-u4qIiFpnNE .item-title {
  width: 100%;
  color: #111111;
}
.cid-u4qIiFpnNE .mbr-text {
  color: #555555;
}
.cid-u4qIiFpnNE .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-u4qIiFpnNE .card-container {
  display: flex;
}
.cid-u4qIiFpnNE .card-container .card {
  border-radius: 0;
}
.cid-u4qIiFpnNE .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-u4qIiFpnNE .card-container .card .item-img {
    height: 400px;
  }
}
.cid-u4qIiFpnNE .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-u4qIiFpnNE .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-u4qIiFHPeM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f3d0f4;
  overflow: hidden;
}
.cid-u4qIiFHPeM .mbr-text {
  color: #111111;
}
