body {
  font-family: Spartan;
}
.display-1 {
  font-family: 'Spartan', sans-serif;
  font-size: 4.0625rem;
  line-height: 1.2;
}
.display-1 > .mbr-iconfont {
  font-size: 5.078125rem;
}
.display-2 {
  font-family: 'Spartan', sans-serif;
  font-size: 3rem;
  line-height: 1.2;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  line-height: 1.65;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Spartan', sans-serif;
  font-size: 2.2rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Spartan', sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
}
.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.25rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.84375rem;
    font-size: calc( 2.071875rem + (4.0625 - 2.071875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.071875rem + (4.0625 - 2.071875) * ((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.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((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: 7px 15px;
  border-radius: 4px;
}
.btn-sm {
  padding: 7px 15px;
  border-radius: 4px;
}
.btn-md {
  padding: 15px 20px;
  border-radius: 4px;
}
.btn-lg {
  padding: 18px 25px;
  border-radius: 4px;
}
.bg-primary {
  background-color: #f24d94 !important;
}
.bg-success {
  background-color: #34b794 !important;
}
.bg-info {
  background-color: #f24d94 !important;
}
.bg-warning {
  background-color: #e53712 !important;
}
.bg-danger {
  background-color: #ffd6ee !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f24d94 !important;
  border-color: #f24d94 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #ef1d77 !important;
  border-color: #ef1d77 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ef1d77 !important;
  border-color: #ef1d77 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #4200ff !important;
  border-color: #4200ff !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #3500cc !important;
  border-color: #3500cc !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #3500cc !important;
  border-color: #3500cc !important;
}
.btn-info,
.btn-info:active {
  background-color: #f24d94 !important;
  border-color: #f24d94 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #ef1d77 !important;
  border-color: #ef1d77 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #ef1d77 !important;
  border-color: #ef1d77 !important;
}
.btn-success,
.btn-success:active {
  background-color: #34b794 !important;
  border-color: #34b794 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #298f74 !important;
  border-color: #298f74 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #298f74 !important;
  border-color: #298f74 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #e53712 !important;
  border-color: #e53712 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #b62c0e !important;
  border-color: #b62c0e !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #b62c0e !important;
  border-color: #b62c0e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffd6ee !important;
  border-color: #ffd6ee !important;
  color: #d6007d !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ffa3d9 !important;
  border-color: #ffa3d9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #d6007d !important;
  background-color: #ffa3d9 !important;
  border-color: #ffa3d9 !important;
}
.btn-white {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #666666 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-white:hover {
  color: #cccccc !important;
  background-color: #cccccc !important;
  border-color: #cccccc !important;
}
.btn-white:hover,
.btn-white:hover:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover:hover,
.btn-white:hover:focus,
.btn-white:hover.focus,
.btn-white:hover.active {
  color: #666666 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-white:hover.disabled,
.btn-white:hover:disabled {
  color: #808080 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-black {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-black,
.btn-black:active {
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  color: #ffffff !important;
}
.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-black:hover {
  background-color: #4d4d4d !important;
  border-color: #4d4d4d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #f24d94;
  color: #f24d94;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff !important;
  background-color: #f24d94 !important;
  border-color: #f24d94 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f24d94 !important;
  border-color: #f24d94 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #4200ff;
  color: #4200ff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff !important;
  background-color: #4200ff !important;
  border-color: #4200ff !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #4200ff !important;
  border-color: #4200ff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #f24d94;
  color: #f24d94;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff !important;
  background-color: #f24d94 !important;
  border-color: #f24d94 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #f24d94 !important;
  border-color: #f24d94 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #34b794;
  color: #34b794;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff !important;
  background-color: #34b794 !important;
  border-color: #34b794 !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #34b794 !important;
  border-color: #34b794 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #e53712;
  color: #e53712;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff !important;
  background-color: #e53712 !important;
  border-color: #e53712 !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #e53712 !important;
  border-color: #e53712 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ffd6ee;
  color: #ffd6ee;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #d6007d !important;
  background-color: #ffd6ee !important;
  border-color: #ffd6ee !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #d6007d !important;
  background-color: #ffd6ee !important;
  border-color: #ffd6ee !important;
}
.btn-black-outline {
  border-color: #1a1a1a !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #1a1a1a;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #4d4d4d !important;
  background-color: transparent;
  border-color: #4d4d4d !important;
}
.btn-white-outline {
  border-color: #ffffff !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #cccccc !important;
  background-color: transparent;
  border-color: #cccccc !important;
}
.text-primary {
  color: #f24d94 !important;
}
.text-secondary {
  color: #4200ff !important;
}
.text-success {
  color: #34b794 !important;
}
.text-info {
  color: #f24d94 !important;
}
.text-warning {
  color: #e53712 !important;
}
.text-danger {
  color: #ffd6ee !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #1a1a1a !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #ca0f5f !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #280099 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #1d6854 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #ca0f5f !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #86200b !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff70c4 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
.nav-tabs .nav-link.active {
  color: #f24d94;
}
.nav-tabs .nav-link:not(.active) {
  color: #1a1a1a;
}
.alert-success {
  background-color: #34b794;
}
.alert-info {
  background-color: #f24d94;
}
.alert-warning {
  background-color: #e53712;
}
.alert-danger {
  background-color: #ffd6ee;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f24d94;
  border-color: #f24d94;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f24d94;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #8cdec8;
}
.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: #fbd1c8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
blockquote {
  border-color: #f24d94;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f24d94;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f24d94;
}
.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: #f24d94;
  border-bottom-color: #f24d94;
}
.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: #f24d94 !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: #4200ff !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='%23f24d94' %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.4s;
}
.cid-sa6nSF5W0u {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffd6ee;
}
@media (min-width: 991px) {
  .cid-sa6nSF5W0u {
    min-height: 170px !important;
  }
}
.cid-sa6nSF5W0u .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-sa6nSF5W0u .empty_md {
    display: block;
  }
}
.cid-sa6nSF5W0u .container,
.cid-sa6nSF5W0u .container-fluid,
.cid-sa6nSF5W0u .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-sa6nSF5W0u .container,
  .cid-sa6nSF5W0u .container-fluid,
  .cid-sa6nSF5W0u .empty_md {
    min-height: 170px !important;
  }
}
.cid-sa6nSF5W0u .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-sa6nSF5W0u .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sa6nSF5W0u .top_menu {
    min-height: 110px !important;
  }
}
.cid-sa6nSF5W0u .navbar-caption:hover {
  color: #4200ff !important;
}
.cid-sa6nSF5W0u .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-sa6nSF5W0u .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-sa6nSF5W0u .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #232226;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-sa6nSF5W0u .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-sa6nSF5W0u .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-sa6nSF5W0u .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-sa6nSF5W0u .icons-menu .icons-wrapper:hover {
    background: #232226;
  }
  .cid-sa6nSF5W0u .icons-menu .icons-wrapper:hover .mbr-iconfont {
    color: #ffffff;
  }
  .cid-sa6nSF5W0u .empty,
  .cid-sa6nSF5W0u .icons-menu {
    min-width: 265px;
  }
  .cid-sa6nSF5W0u .navbar-logo {
    margin: 0;
  }
  .cid-sa6nSF5W0u .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-sa6nSF5W0u .btn {
    white-space: nowrap;
  }
  .cid-sa6nSF5W0u .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-sa6nSF5W0u .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-sa6nSF5W0u .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-sa6nSF5W0u .dropdown-toggle::after,
  .cid-sa6nSF5W0u .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-sa6nSF5W0u .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-sa6nSF5W0u .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-sa6nSF5W0u .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-sa6nSF5W0u .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-sa6nSF5W0u .dropdown-menu .dropdown-item:hover {
  color: #f24d94 !important;
  background-color: #f8f8f8;
}
.cid-sa6nSF5W0u .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-sa6nSF5W0u .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-sa6nSF5W0u .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-sa6nSF5W0u .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-sa6nSF5W0u .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-sa6nSF5W0u .nav-item:focus,
.cid-sa6nSF5W0u .nav-link:focus {
  outline: none;
}
.cid-sa6nSF5W0u .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-sa6nSF5W0u .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-sa6nSF5W0u .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sa6nSF5W0u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sa6nSF5W0u .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-sa6nSF5W0u ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sa6nSF5W0u ul.navbar-nav li {
  margin: auto;
}
.cid-sa6nSF5W0u .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffd6ee;
}
.cid-sa6nSF5W0u .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffd6ee !important;
}
.cid-sa6nSF5W0u .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sa6nSF5W0u .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-sa6nSF5W0u .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-sa6nSF5W0u .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sa6nSF5W0u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sa6nSF5W0u .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-sa6nSF5W0u .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-sa6nSF5W0u .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sa6nSF5W0u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sa6nSF5W0u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sa6nSF5W0u .navbar .icons-menu,
  .cid-sa6nSF5W0u .navbar .empty {
    display: none;
  }
  .cid-sa6nSF5W0u .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-sa6nSF5W0u .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sa6nSF5W0u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sa6nSF5W0u .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-sa6nSF5W0u .navbar .container-fluid,
  .cid-sa6nSF5W0u .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-sa6nSF5W0u .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sa6nSF5W0u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sa6nSF5W0u .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-sa6nSF5W0u .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-sa6nSF5W0u .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-sa6nSF5W0u .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-sa6nSF5W0u .navbar.navbar-short {
  background: #ffd6ee !important;
  min-height: 90px;
}
.cid-sa6nSF5W0u .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sa6nSF5W0u .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sa6nSF5W0u .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-sa6nSF5W0u .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sa6nSF5W0u .dropdown-item.active,
.cid-sa6nSF5W0u .dropdown-item:active {
  background-color: transparent;
}
.cid-sa6nSF5W0u .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sa6nSF5W0u .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-sa6nSF5W0u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffd6ee;
}
.cid-sa6nSF5W0u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-sa6nSF5W0u .navbar-buttons {
  text-align: center;
}
.cid-sa6nSF5W0u button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sa6nSF5W0u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232226;
}
.cid-sa6nSF5W0u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sa6nSF5W0u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sa6nSF5W0u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sa6nSF5W0u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sa6nSF5W0u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sa6nSF5W0u nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sa6nSF5W0u nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sa6nSF5W0u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sa6nSF5W0u .navbar-dropdown {
  position: absolute;
}
.cid-sa6nSF5W0u a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-sa6nSF5W0u a.nav-link:hover {
  color: #4200ff !important;
}
.is-builder .cid-sa6nSF5W0u .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sa6nSF5W0u .navbar {
    height: 77px;
  }
  .cid-sa6nSF5W0u .navbar.opened {
    height: auto;
  }
  .cid-sa6nSF5W0u .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sa6pdusY2m {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffd6ee;
}
.cid-sa6pdusY2m .pos_rel {
  position: relative;
}
.cid-sa6pdusY2m .main_section_title {
  display: flex;
}
.cid-sa6pdusY2m .main_title {
  padding: 0 8.333%;
}
.cid-sa6pdusY2m .empty_content {
  width: 90%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sa6pdusY2m .card_title {
    font-size: 2rem;
  }
}
.cid-sa6pdusY2m .text-wrapper {
  width: 60%;
  background: #ffffff;
  padding: 90px 1rem;
  height: 70vh;
}
@media (min-width: 1550px) {
  .cid-sa6pdusY2m .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-sa6pdusY2m .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-sa6pdusY2m .text-wrapper {
    padding-right: 3%;
    padding-left: calc(3% + 16px);
  }
}
.cid-sa6pdusY2m .text-wrapper:hover .card_title a {
  color: #4200ff !important;
}
.cid-sa6pdusY2m .text-wrapper .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-sa6pdusY2m .block-content,
.cid-sa6pdusY2m .main_section_title {
  flex-direction: row-reverse;
}
@media (min-width: 1550px) {
  .cid-sa6pdusY2m .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-sa6pdusY2m .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-sa6pdusY2m .text-wrapper {
    padding-left: 3%;
    padding-right: calc(3% + 16px);
  }
}
.cid-sa6pdusY2m .block-content {
  display: flex;
  align-items: center;
}
.cid-sa6pdusY2m .image-wrapper,
.cid-sa6pdusY2m img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.cid-sa6pdusY2m .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #232226;
}
.cid-sa6pdusY2m .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-sa6pdusY2m .mbr-section-btn .btn-secondary-outline:hover,
.cid-sa6pdusY2m .mbr-section-btn .btn-secondary-outline .active,
.cid-sa6pdusY2m .mbr-section-btn .btn-secondary-outline:focus {
  color: #f24d94 !important;
}
@media (max-width: 991px) {
  .cid-sa6pdusY2m .block-content {
    flex-direction: column;
  }
  .cid-sa6pdusY2m .text-wrapper {
    order: 2;
    width: 100%;
    padding: 40px;
    height: auto;
  }
  .cid-sa6pdusY2m .empty_content {
    display: none;
  }
  .cid-sa6pdusY2m .main_title {
    padding: 40px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sa6pdusY2m .text-wrapper,
  .cid-sa6pdusY2m .main_title {
    padding: 30px 1rem;
  }
}
.cid-sa6pdusY2m .mbr-section-title {
  color: #232226;
}
.cid-sa6pdusY2m .card_subtitle {
  color: #232226;
}
.cid-sa6pdusY2m .mbr-text,
.cid-sa6pdusY2m .mbr-section-btn {
  color: #232226;
}
.cid-v9CkWLwUc7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v9CkWLwUc7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9CkWLwUc7 .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-v9CkWLwUc7 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v9CkWLwUc7 .container {
    padding: 0 12px;
  }
}
.cid-v9CkWLwUc7 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v9CkWLwUc7 .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-v9CkWLwUc7 .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-v9CkWLwUc7 .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ffd6ee;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-v9CkWLwUc7 .mbr-section-title {
  color: #222222;
}
.cid-v9ChoN3clJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v9ChoN3clJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9ChoN3clJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9ChoN3clJ .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-v9ChoN3clJ .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-v9ChoN3clJ .container {
    padding: 0 24px;
  }
}
.cid-v9ChoN3clJ .row {
  justify-content: center;
}
.cid-v9ChoN3clJ .content-wrapper {
  border-radius: 40px;
  background-color: #ffd6ee;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-v9ChoN3clJ .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-v9ChoN3clJ .content-wrapper {
    padding: 32px;
  }
}
.cid-v9ChoN3clJ .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v9ChoN3clJ .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-v9ChoN3clJ .mbr-section-title {
  color: #000000;
}
.cid-v9ChoN3clJ .mbr-text {
  color: #000000;
}
.cid-v9ChUYGQpF {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-v9ChUYGQpF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9ChUYGQpF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9ChUYGQpF .content-wrapper .mbr-label {
  margin-bottom: 12px;
}
.cid-v9ChUYGQpF .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v9ChUYGQpF .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-v9ChUYGQpF .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v9ChUYGQpF .mbr-label {
  color: #000000;
}
.cid-v9ChUYGQpF .mbr-text {
  color: #ffffff;
}
.cid-v9ChUYGQpF .mbr-text,
.cid-v9ChUYGQpF .mbr-section-btn {
  color: #000000;
}
.cid-sa6tROvFNm {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sa6tROvFNm .card_block {
  border-radius: 10px;
  padding: 40px;
  background-color: #ffd6ee;
}
.cid-sa6tROvFNm .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #232226;
}
.cid-sa6tROvFNm .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-sa6tROvFNm .mbr-section-btn .btn-secondary-outline:hover,
.cid-sa6tROvFNm .mbr-section-btn .btn-secondary-outline .active,
.cid-sa6tROvFNm .mbr-section-btn .btn-secondary-outline:focus {
  color: #f24d94 !important;
}
.cid-sa6tROvFNm .content_block:hover .mbr-section-subtitle a {
  color: #4200ff !important;
}
@media (max-width: 767px) {
  .cid-sa6tROvFNm .card_block {
    margin-bottom: 1.5rem;
    padding: 20px;
  }
}
.cid-sa6tROvFNm .mbr-text,
.cid-sa6tROvFNm .mbr-section-btn {
  color: #232226;
}
.cid-sa6tROvFNm .card_text {
  color: #232226;
}
.cid-v9CiN7Czku {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v9CiN7Czku .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9CiN7Czku .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9CiN7Czku .content-wrapper {
  padding: 80px 90px;
  background-color: #ffd6ee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v9CiN7Czku .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-v9CiN7Czku .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v9CiN7Czku .content-wrapper .title-wrapper {
    margin-bottom: 24px;
    width: 100%;
  }
}
.cid-v9CiN7Czku .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v9CiN7Czku .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-v9CiN7Czku .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 38px;
}
@media (max-width: 992px) {
  .cid-v9CiN7Czku .content-wrapper .title-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-v9CiN7Czku .content-wrapper .image-wrapper {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-v9CiN7Czku .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-v9CiN7Czku .content-wrapper .image-wrapper img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v9CiN7Czku .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-v9CiN7Czku .mbr-section-title {
  color: #050f0f;
}
.cid-v9CiN7Czku .mbr-text {
  color: #050f0f;
}
.cid-v9CixjPQww {
  padding-top: 0rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v9CixjPQww .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9CixjPQww .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9CixjPQww .row {
  justify-content: center;
}
.cid-v9CixjPQww .content-wrapper .title-wrapper {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-v9CixjPQww .content-wrapper .title-wrapper {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .cid-v9CixjPQww .content-wrapper .title-wrapper {
    padding-bottom: 60px;
  }
}
.cid-v9CixjPQww .content-wrapper .title-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 32px;
  width: 100%;
  background-color: #ffd6ee;
}
@media (max-width: 992px) {
  .cid-v9CixjPQww .content-wrapper .title-wrapper::before {
    height: 24px;
  }
}
.cid-v9CixjPQww .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v9CixjPQww .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-v9CixjPQww .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v9CixjPQww .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-v9CixjPQww .mbr-section-title {
  color: #ffffff;
}
.cid-v9CixjPQww .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-v9CixjPQww .mbr-text,
.cid-v9CixjPQww .text-wrapper {
  color: #232323;
  text-align: center;
}
.cid-v9CixjPQww .mbr-section-title,
.cid-v9CixjPQww .mbr-section-btn {
  text-align: center;
}
.cid-v9Chun366L {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v9Chun366L .card_block {
  border-radius: 10px;
  padding: 40px;
  background-color: #ffd6ee;
}
.cid-v9Chun366L .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #232226;
}
.cid-v9Chun366L .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v9Chun366L .mbr-section-btn .btn-secondary-outline:hover,
.cid-v9Chun366L .mbr-section-btn .btn-secondary-outline .active,
.cid-v9Chun366L .mbr-section-btn .btn-secondary-outline:focus {
  color: #f24d94 !important;
}
.cid-v9Chun366L .content_block:hover .mbr-section-subtitle a {
  color: #4200ff !important;
}
@media (max-width: 767px) {
  .cid-v9Chun366L .card_block {
    margin-bottom: 1.5rem;
    padding: 20px;
  }
}
.cid-v9Chun366L .mbr-text,
.cid-v9Chun366L .mbr-section-btn {
  color: #232226;
}
.cid-v9Chun366L .card_text {
  color: #232226;
}
.cid-v9Chq9HvjO {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-v9Chq9HvjO H1 {
  color: #232323;
}
.cid-v9Chq9HvjO .mbr-text,
.cid-v9Chq9HvjO .mbr-section-btn {
  color: #232323;
}
.cid-v9Ch7b5XDz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffd6ee;
}
.cid-v9Ch7b5XDz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Ch7b5XDz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Ch7b5XDz .container-fluid {
  padding: 0 70px;
}
@media (max-width: 1440px) {
  .cid-v9Ch7b5XDz .container-fluid {
    padding: 0 48px;
  }
}
@media (max-width: 992px) {
  .cid-v9Ch7b5XDz .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-v9Ch7b5XDz .container {
    padding: 0 20px;
  }
}
.cid-v9Ch7b5XDz .row {
  justify-content: center;
}
.cid-v9Ch7b5XDz .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #000000;
  margin-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-v9Ch7b5XDz .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-v9Ch7b5XDz .text-wrapper {
  margin-bottom: 136px;
}
@media (max-width: 992px) {
  .cid-v9Ch7b5XDz .text-wrapper {
    margin-bottom: 30px;
  }
}
.cid-v9Ch7b5XDz .text-wrapper .text-wrap .mbr-text {
  width: 50%;
  display: inline-flex;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .cid-v9Ch7b5XDz .text-wrapper .text-wrap .mbr-text {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-v9Ch7b5XDz .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-v9Ch7b5XDz .nav-wrapper {
  margin-bottom: 136px;
}
@media (max-width: 992px) {
  .cid-v9Ch7b5XDz .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-v9Ch7b5XDz .nav-wrapper .mbr-list-title {
  margin-bottom: 24px;
}
.cid-v9Ch7b5XDz .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v9Ch7b5XDz .nav-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.cid-v9Ch7b5XDz .nav-wrapper .list .item-wrap:hover,
.cid-v9Ch7b5XDz .nav-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-v9Ch7b5XDz .mbr-copy {
  margin-bottom: 0;
  color: #000000;
}
.cid-v9Ch7b5XDz .mbr-text {
  color: #000000;
}
.cid-v9Ch7b5XDz .mbr-list-title {
  color: #000000;
}
.cid-v9Ch7b5XDz .list {
  color: #9a9a9a;
}
.cid-v9Ch7b5XDz .list,
.cid-v9Ch7b5XDz .item-wrap,
.cid-v9Ch7b5XDz .contacts-wrapper {
  color: #000000;
}
.cid-v9CGiyFzfL {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffd6ee;
}
@media (min-width: 991px) {
  .cid-v9CGiyFzfL {
    min-height: 170px !important;
  }
}
.cid-v9CGiyFzfL .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-v9CGiyFzfL .empty_md {
    display: block;
  }
}
.cid-v9CGiyFzfL .container,
.cid-v9CGiyFzfL .container-fluid,
.cid-v9CGiyFzfL .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-v9CGiyFzfL .container,
  .cid-v9CGiyFzfL .container-fluid,
  .cid-v9CGiyFzfL .empty_md {
    min-height: 170px !important;
  }
}
.cid-v9CGiyFzfL .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-v9CGiyFzfL .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-v9CGiyFzfL .top_menu {
    min-height: 110px !important;
  }
}
.cid-v9CGiyFzfL .navbar-caption:hover {
  color: #4200ff !important;
}
.cid-v9CGiyFzfL .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v9CGiyFzfL .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-v9CGiyFzfL .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #232226;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-v9CGiyFzfL .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-v9CGiyFzfL .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-v9CGiyFzfL .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-v9CGiyFzfL .icons-menu .icons-wrapper:hover {
    background: #232226;
  }
  .cid-v9CGiyFzfL .icons-menu .icons-wrapper:hover .mbr-iconfont {
    color: #ffffff;
  }
  .cid-v9CGiyFzfL .empty,
  .cid-v9CGiyFzfL .icons-menu {
    min-width: 265px;
  }
  .cid-v9CGiyFzfL .navbar-logo {
    margin: 0;
  }
  .cid-v9CGiyFzfL .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-v9CGiyFzfL .btn {
    white-space: nowrap;
  }
  .cid-v9CGiyFzfL .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-v9CGiyFzfL .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-v9CGiyFzfL .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-v9CGiyFzfL .dropdown-toggle::after,
  .cid-v9CGiyFzfL .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-v9CGiyFzfL .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-v9CGiyFzfL .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v9CGiyFzfL .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-v9CGiyFzfL .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v9CGiyFzfL .dropdown-menu .dropdown-item:hover {
  color: #f24d94 !important;
  background-color: #f8f8f8;
}
.cid-v9CGiyFzfL .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-v9CGiyFzfL .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-v9CGiyFzfL .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-v9CGiyFzfL .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-v9CGiyFzfL .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-v9CGiyFzfL .nav-item:focus,
.cid-v9CGiyFzfL .nav-link:focus {
  outline: none;
}
.cid-v9CGiyFzfL .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-v9CGiyFzfL .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-v9CGiyFzfL .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-v9CGiyFzfL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v9CGiyFzfL .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-v9CGiyFzfL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v9CGiyFzfL ul.navbar-nav li {
  margin: auto;
}
.cid-v9CGiyFzfL .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffd6ee;
}
.cid-v9CGiyFzfL .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffd6ee !important;
}
.cid-v9CGiyFzfL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-v9CGiyFzfL .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-v9CGiyFzfL .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-v9CGiyFzfL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v9CGiyFzfL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v9CGiyFzfL .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-v9CGiyFzfL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-v9CGiyFzfL .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-v9CGiyFzfL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v9CGiyFzfL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-v9CGiyFzfL .navbar .icons-menu,
  .cid-v9CGiyFzfL .navbar .empty {
    display: none;
  }
  .cid-v9CGiyFzfL .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-v9CGiyFzfL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v9CGiyFzfL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v9CGiyFzfL .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-v9CGiyFzfL .navbar .container-fluid,
  .cid-v9CGiyFzfL .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-v9CGiyFzfL .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-v9CGiyFzfL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v9CGiyFzfL .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-v9CGiyFzfL .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-v9CGiyFzfL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-v9CGiyFzfL .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-v9CGiyFzfL .navbar.navbar-short {
  background: #ffd6ee !important;
  min-height: 90px;
}
.cid-v9CGiyFzfL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-v9CGiyFzfL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-v9CGiyFzfL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-v9CGiyFzfL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v9CGiyFzfL .dropdown-item.active,
.cid-v9CGiyFzfL .dropdown-item:active {
  background-color: transparent;
}
.cid-v9CGiyFzfL .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v9CGiyFzfL .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-v9CGiyFzfL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffd6ee;
}
.cid-v9CGiyFzfL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-v9CGiyFzfL .navbar-buttons {
  text-align: center;
}
.cid-v9CGiyFzfL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-v9CGiyFzfL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232226;
}
.cid-v9CGiyFzfL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v9CGiyFzfL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v9CGiyFzfL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v9CGiyFzfL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v9CGiyFzfL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9CGiyFzfL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v9CGiyFzfL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v9CGiyFzfL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9CGiyFzfL .navbar-dropdown {
  position: absolute;
}
.cid-v9CGiyFzfL a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v9CGiyFzfL a.nav-link:hover {
  color: #4200ff !important;
}
.is-builder .cid-v9CGiyFzfL .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v9CGiyFzfL .navbar {
    height: 77px;
  }
  .cid-v9CGiyFzfL .navbar.opened {
    height: auto;
  }
  .cid-v9CGiyFzfL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9CGizuInb {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffd6ee;
}
.cid-v9CGizuInb .pos_rel {
  position: relative;
}
.cid-v9CGizuInb .main_section_title {
  display: flex;
}
.cid-v9CGizuInb .main_title {
  padding: 0 8.333%;
}
.cid-v9CGizuInb .empty_content {
  width: 90%;
}
.cid-v9CGizuInb .text-wrapper {
  width: 60%;
  background: #ffffff;
  padding: 90px 1rem;
  height: 70vh;
}
@media (min-width: 1550px) {
  .cid-v9CGizuInb .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-v9CGizuInb .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-v9CGizuInb .text-wrapper {
    padding-right: 3%;
    padding-left: calc(3% + 16px);
  }
}
.cid-v9CGizuInb .text-wrapper:hover .card_title a {
  color: #4200ff !important;
}
.cid-v9CGizuInb .text-wrapper .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v9CGizuInb .block-content,
.cid-v9CGizuInb .main_section_title {
  flex-direction: row-reverse;
}
@media (min-width: 1550px) {
  .cid-v9CGizuInb .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-v9CGizuInb .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-v9CGizuInb .text-wrapper {
    padding-left: 3%;
    padding-right: calc(3% + 16px);
  }
}
.cid-v9CGizuInb .block-content {
  display: flex;
  align-items: center;
}
.cid-v9CGizuInb .image-wrapper,
.cid-v9CGizuInb img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.cid-v9CGizuInb .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #232226;
}
.cid-v9CGizuInb .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v9CGizuInb .mbr-section-btn .btn-secondary-outline:hover,
.cid-v9CGizuInb .mbr-section-btn .btn-secondary-outline .active,
.cid-v9CGizuInb .mbr-section-btn .btn-secondary-outline:focus {
  color: #f24d94 !important;
}
@media (max-width: 991px) {
  .cid-v9CGizuInb .block-content {
    flex-direction: column;
  }
  .cid-v9CGizuInb .text-wrapper {
    order: 2;
    width: 100%;
    padding: 40px;
    height: auto;
  }
  .cid-v9CGizuInb .empty_content {
    display: none;
  }
  .cid-v9CGizuInb .main_title {
    padding: 40px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-v9CGizuInb .text-wrapper,
  .cid-v9CGizuInb .main_title {
    padding: 30px 1rem;
  }
}
.cid-v9CGizuInb .mbr-section-title {
  color: #232226;
  text-align: justify;
}
.cid-v9CGizuInb .card_subtitle {
  color: #232226;
}
.cid-v9CGizuInb .mbr-text,
.cid-v9CGizuInb .mbr-section-btn {
  color: #232226;
}
.cid-v9CGiAH2z2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v9CGiAH2z2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9CGiAH2z2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9CGiAH2z2 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-v9CGiAH2z2 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-v9CGiAH2z2 .container {
    padding: 0 24px;
  }
}
.cid-v9CGiAH2z2 .row {
  justify-content: center;
}
.cid-v9CGiAH2z2 .content-wrapper {
  border-radius: 40px;
  background-color: #ffd6ee;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-v9CGiAH2z2 .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-v9CGiAH2z2 .content-wrapper {
    padding: 32px;
  }
}
.cid-v9CGiAH2z2 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v9CGiAH2z2 .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-v9CGiAH2z2 .mbr-section-title {
  color: #000000;
}
.cid-v9CGiAH2z2 .mbr-text {
  color: #000000;
}
.cid-v9CGiEuPgq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffd6ee;
}
.cid-v9CGiEuPgq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9CGiEuPgq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9CGiEuPgq .container-fluid {
  padding: 0 70px;
}
@media (max-width: 1440px) {
  .cid-v9CGiEuPgq .container-fluid {
    padding: 0 48px;
  }
}
@media (max-width: 992px) {
  .cid-v9CGiEuPgq .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-v9CGiEuPgq .container {
    padding: 0 20px;
  }
}
.cid-v9CGiEuPgq .row {
  justify-content: center;
}
.cid-v9CGiEuPgq .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #000000;
  margin-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-v9CGiEuPgq .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-v9CGiEuPgq .text-wrapper {
  margin-bottom: 136px;
}
@media (max-width: 992px) {
  .cid-v9CGiEuPgq .text-wrapper {
    margin-bottom: 30px;
  }
}
.cid-v9CGiEuPgq .text-wrapper .text-wrap .mbr-text {
  width: 50%;
  display: inline-flex;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .cid-v9CGiEuPgq .text-wrapper .text-wrap .mbr-text {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-v9CGiEuPgq .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-v9CGiEuPgq .nav-wrapper {
  margin-bottom: 136px;
}
@media (max-width: 992px) {
  .cid-v9CGiEuPgq .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-v9CGiEuPgq .nav-wrapper .mbr-list-title {
  margin-bottom: 24px;
}
.cid-v9CGiEuPgq .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v9CGiEuPgq .nav-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.cid-v9CGiEuPgq .nav-wrapper .list .item-wrap:hover,
.cid-v9CGiEuPgq .nav-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-v9CGiEuPgq .mbr-copy {
  margin-bottom: 0;
  color: #000000;
}
.cid-v9CGiEuPgq .mbr-text {
  color: #000000;
}
.cid-v9CGiEuPgq .mbr-list-title {
  color: #000000;
}
.cid-v9CGiEuPgq .list {
  color: #9a9a9a;
}
.cid-v9CGiEuPgq .list,
.cid-v9CGiEuPgq .item-wrap,
.cid-v9CGiEuPgq .contacts-wrapper {
  color: #000000;
}
.cid-v9CGMtzT7D {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffd6ee;
}
@media (min-width: 991px) {
  .cid-v9CGMtzT7D {
    min-height: 170px !important;
  }
}
.cid-v9CGMtzT7D .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-v9CGMtzT7D .empty_md {
    display: block;
  }
}
.cid-v9CGMtzT7D .container,
.cid-v9CGMtzT7D .container-fluid,
.cid-v9CGMtzT7D .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-v9CGMtzT7D .container,
  .cid-v9CGMtzT7D .container-fluid,
  .cid-v9CGMtzT7D .empty_md {
    min-height: 170px !important;
  }
}
.cid-v9CGMtzT7D .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-v9CGMtzT7D .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-v9CGMtzT7D .top_menu {
    min-height: 110px !important;
  }
}
.cid-v9CGMtzT7D .navbar-caption:hover {
  color: #4200ff !important;
}
.cid-v9CGMtzT7D .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v9CGMtzT7D .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-v9CGMtzT7D .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #232226;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-v9CGMtzT7D .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-v9CGMtzT7D .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-v9CGMtzT7D .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-v9CGMtzT7D .icons-menu .icons-wrapper:hover {
    background: #232226;
  }
  .cid-v9CGMtzT7D .icons-menu .icons-wrapper:hover .mbr-iconfont {
    color: #ffffff;
  }
  .cid-v9CGMtzT7D .empty,
  .cid-v9CGMtzT7D .icons-menu {
    min-width: 265px;
  }
  .cid-v9CGMtzT7D .navbar-logo {
    margin: 0;
  }
  .cid-v9CGMtzT7D .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-v9CGMtzT7D .btn {
    white-space: nowrap;
  }
  .cid-v9CGMtzT7D .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-v9CGMtzT7D .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-v9CGMtzT7D .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-v9CGMtzT7D .dropdown-toggle::after,
  .cid-v9CGMtzT7D .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-v9CGMtzT7D .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-v9CGMtzT7D .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v9CGMtzT7D .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-v9CGMtzT7D .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v9CGMtzT7D .dropdown-menu .dropdown-item:hover {
  color: #f24d94 !important;
  background-color: #f8f8f8;
}
.cid-v9CGMtzT7D .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-v9CGMtzT7D .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-v9CGMtzT7D .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-v9CGMtzT7D .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-v9CGMtzT7D .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-v9CGMtzT7D .nav-item:focus,
.cid-v9CGMtzT7D .nav-link:focus {
  outline: none;
}
.cid-v9CGMtzT7D .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-v9CGMtzT7D .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-v9CGMtzT7D .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-v9CGMtzT7D .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v9CGMtzT7D .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-v9CGMtzT7D ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v9CGMtzT7D ul.navbar-nav li {
  margin: auto;
}
.cid-v9CGMtzT7D .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffd6ee;
}
.cid-v9CGMtzT7D .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffd6ee !important;
}
.cid-v9CGMtzT7D .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-v9CGMtzT7D .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-v9CGMtzT7D .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-v9CGMtzT7D .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v9CGMtzT7D .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v9CGMtzT7D .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-v9CGMtzT7D .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-v9CGMtzT7D .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-v9CGMtzT7D .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v9CGMtzT7D .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-v9CGMtzT7D .navbar .icons-menu,
  .cid-v9CGMtzT7D .navbar .empty {
    display: none;
  }
  .cid-v9CGMtzT7D .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-v9CGMtzT7D .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v9CGMtzT7D .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v9CGMtzT7D .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-v9CGMtzT7D .navbar .container-fluid,
  .cid-v9CGMtzT7D .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-v9CGMtzT7D .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-v9CGMtzT7D .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v9CGMtzT7D .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-v9CGMtzT7D .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-v9CGMtzT7D .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-v9CGMtzT7D .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-v9CGMtzT7D .navbar.navbar-short {
  background: #ffd6ee !important;
  min-height: 90px;
}
.cid-v9CGMtzT7D .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-v9CGMtzT7D .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-v9CGMtzT7D .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-v9CGMtzT7D .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v9CGMtzT7D .dropdown-item.active,
.cid-v9CGMtzT7D .dropdown-item:active {
  background-color: transparent;
}
.cid-v9CGMtzT7D .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v9CGMtzT7D .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-v9CGMtzT7D .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffd6ee;
}
.cid-v9CGMtzT7D .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-v9CGMtzT7D .navbar-buttons {
  text-align: center;
}
.cid-v9CGMtzT7D button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-v9CGMtzT7D button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232226;
}
.cid-v9CGMtzT7D button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v9CGMtzT7D button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v9CGMtzT7D button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v9CGMtzT7D button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v9CGMtzT7D nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9CGMtzT7D nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v9CGMtzT7D nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v9CGMtzT7D nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9CGMtzT7D .navbar-dropdown {
  position: absolute;
}
.cid-v9CGMtzT7D a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v9CGMtzT7D a.nav-link:hover {
  color: #4200ff !important;
}
.is-builder .cid-v9CGMtzT7D .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v9CGMtzT7D .navbar {
    height: 77px;
  }
  .cid-v9CGMtzT7D .navbar.opened {
    height: auto;
  }
  .cid-v9CGMtzT7D .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9CGMu9dTL {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffd6ee;
}
.cid-v9CGMu9dTL .pos_rel {
  position: relative;
}
.cid-v9CGMu9dTL .main_section_title {
  display: flex;
}
.cid-v9CGMu9dTL .main_title {
  padding: 0 8.333%;
}
.cid-v9CGMu9dTL .empty_content {
  width: 90%;
}
.cid-v9CGMu9dTL .text-wrapper {
  width: 60%;
  background: #ffffff;
  padding: 90px 1rem;
  height: 70vh;
}
@media (min-width: 1550px) {
  .cid-v9CGMu9dTL .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-v9CGMu9dTL .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-v9CGMu9dTL .text-wrapper {
    padding-right: 3%;
    padding-left: calc(3% + 16px);
  }
}
.cid-v9CGMu9dTL .text-wrapper:hover .card_title a {
  color: #4200ff !important;
}
.cid-v9CGMu9dTL .text-wrapper .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v9CGMu9dTL .block-content,
.cid-v9CGMu9dTL .main_section_title {
  flex-direction: row-reverse;
}
@media (min-width: 1550px) {
  .cid-v9CGMu9dTL .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-v9CGMu9dTL .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-v9CGMu9dTL .text-wrapper {
    padding-left: 3%;
    padding-right: calc(3% + 16px);
  }
}
.cid-v9CGMu9dTL .block-content {
  display: flex;
  align-items: center;
}
.cid-v9CGMu9dTL .image-wrapper,
.cid-v9CGMu9dTL img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.cid-v9CGMu9dTL .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #232226;
}
.cid-v9CGMu9dTL .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v9CGMu9dTL .mbr-section-btn .btn-secondary-outline:hover,
.cid-v9CGMu9dTL .mbr-section-btn .btn-secondary-outline .active,
.cid-v9CGMu9dTL .mbr-section-btn .btn-secondary-outline:focus {
  color: #f24d94 !important;
}
@media (max-width: 991px) {
  .cid-v9CGMu9dTL .block-content {
    flex-direction: column;
  }
  .cid-v9CGMu9dTL .text-wrapper {
    order: 2;
    width: 100%;
    padding: 40px;
    height: auto;
  }
  .cid-v9CGMu9dTL .empty_content {
    display: none;
  }
  .cid-v9CGMu9dTL .main_title {
    padding: 40px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-v9CGMu9dTL .text-wrapper,
  .cid-v9CGMu9dTL .main_title {
    padding: 30px 1rem;
  }
}
.cid-v9CGMu9dTL .mbr-section-title {
  color: #232226;
  text-align: justify;
}
.cid-v9CGMu9dTL .card_subtitle {
  color: #232226;
}
.cid-v9CGMu9dTL .mbr-text,
.cid-v9CGMu9dTL .mbr-section-btn {
  color: #232226;
}
.cid-v9CGMuBKqq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v9CGMuBKqq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9CGMuBKqq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9CGMuBKqq .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-v9CGMuBKqq .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-v9CGMuBKqq .container {
    padding: 0 24px;
  }
}
.cid-v9CGMuBKqq .row {
  justify-content: center;
}
.cid-v9CGMuBKqq .content-wrapper {
  border-radius: 40px;
  background-color: #ffd6ee;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-v9CGMuBKqq .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-v9CGMuBKqq .content-wrapper {
    padding: 32px;
  }
}
.cid-v9CGMuBKqq .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v9CGMuBKqq .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-v9CGMuBKqq .mbr-section-title {
  color: #000000;
}
.cid-v9CGMuBKqq .mbr-text {
  color: #000000;
}
.cid-v9CGMuXyKx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffd6ee;
}
.cid-v9CGMuXyKx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9CGMuXyKx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9CGMuXyKx .container-fluid {
  padding: 0 70px;
}
@media (max-width: 1440px) {
  .cid-v9CGMuXyKx .container-fluid {
    padding: 0 48px;
  }
}
@media (max-width: 992px) {
  .cid-v9CGMuXyKx .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-v9CGMuXyKx .container {
    padding: 0 20px;
  }
}
.cid-v9CGMuXyKx .row {
  justify-content: center;
}
.cid-v9CGMuXyKx .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #000000;
  margin-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-v9CGMuXyKx .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-v9CGMuXyKx .text-wrapper {
  margin-bottom: 136px;
}
@media (max-width: 992px) {
  .cid-v9CGMuXyKx .text-wrapper {
    margin-bottom: 30px;
  }
}
.cid-v9CGMuXyKx .text-wrapper .text-wrap .mbr-text {
  width: 50%;
  display: inline-flex;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .cid-v9CGMuXyKx .text-wrapper .text-wrap .mbr-text {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-v9CGMuXyKx .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-v9CGMuXyKx .nav-wrapper {
  margin-bottom: 136px;
}
@media (max-width: 992px) {
  .cid-v9CGMuXyKx .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-v9CGMuXyKx .nav-wrapper .mbr-list-title {
  margin-bottom: 24px;
}
.cid-v9CGMuXyKx .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v9CGMuXyKx .nav-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.cid-v9CGMuXyKx .nav-wrapper .list .item-wrap:hover,
.cid-v9CGMuXyKx .nav-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-v9CGMuXyKx .mbr-copy {
  margin-bottom: 0;
  color: #000000;
}
.cid-v9CGMuXyKx .mbr-text {
  color: #000000;
}
.cid-v9CGMuXyKx .mbr-list-title {
  color: #000000;
}
.cid-v9CGMuXyKx .list {
  color: #9a9a9a;
}
.cid-v9CGMuXyKx .list,
.cid-v9CGMuXyKx .item-wrap,
.cid-v9CGMuXyKx .contacts-wrapper {
  color: #000000;
}
.cid-v9ClGzl2Zi {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffd6ee;
}
@media (min-width: 991px) {
  .cid-v9ClGzl2Zi {
    min-height: 170px !important;
  }
}
.cid-v9ClGzl2Zi .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-v9ClGzl2Zi .empty_md {
    display: block;
  }
}
.cid-v9ClGzl2Zi .container,
.cid-v9ClGzl2Zi .container-fluid,
.cid-v9ClGzl2Zi .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-v9ClGzl2Zi .container,
  .cid-v9ClGzl2Zi .container-fluid,
  .cid-v9ClGzl2Zi .empty_md {
    min-height: 170px !important;
  }
}
.cid-v9ClGzl2Zi .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-v9ClGzl2Zi .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-v9ClGzl2Zi .top_menu {
    min-height: 110px !important;
  }
}
.cid-v9ClGzl2Zi .navbar-caption:hover {
  color: #4200ff !important;
}
.cid-v9ClGzl2Zi .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v9ClGzl2Zi .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-v9ClGzl2Zi .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #232226;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-v9ClGzl2Zi .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-v9ClGzl2Zi .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-v9ClGzl2Zi .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-v9ClGzl2Zi .icons-menu .icons-wrapper:hover {
    background: #232226;
  }
  .cid-v9ClGzl2Zi .icons-menu .icons-wrapper:hover .mbr-iconfont {
    color: #ffffff;
  }
  .cid-v9ClGzl2Zi .empty,
  .cid-v9ClGzl2Zi .icons-menu {
    min-width: 265px;
  }
  .cid-v9ClGzl2Zi .navbar-logo {
    margin: 0;
  }
  .cid-v9ClGzl2Zi .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-v9ClGzl2Zi .btn {
    white-space: nowrap;
  }
  .cid-v9ClGzl2Zi .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-v9ClGzl2Zi .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-v9ClGzl2Zi .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-v9ClGzl2Zi .dropdown-toggle::after,
  .cid-v9ClGzl2Zi .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-v9ClGzl2Zi .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-v9ClGzl2Zi .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v9ClGzl2Zi .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-v9ClGzl2Zi .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v9ClGzl2Zi .dropdown-menu .dropdown-item:hover {
  color: #f24d94 !important;
  background-color: #f8f8f8;
}
.cid-v9ClGzl2Zi .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-v9ClGzl2Zi .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-v9ClGzl2Zi .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-v9ClGzl2Zi .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-v9ClGzl2Zi .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-v9ClGzl2Zi .nav-item:focus,
.cid-v9ClGzl2Zi .nav-link:focus {
  outline: none;
}
.cid-v9ClGzl2Zi .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-v9ClGzl2Zi .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-v9ClGzl2Zi .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-v9ClGzl2Zi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v9ClGzl2Zi .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-v9ClGzl2Zi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v9ClGzl2Zi ul.navbar-nav li {
  margin: auto;
}
.cid-v9ClGzl2Zi .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffd6ee;
}
.cid-v9ClGzl2Zi .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffd6ee !important;
}
.cid-v9ClGzl2Zi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-v9ClGzl2Zi .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-v9ClGzl2Zi .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-v9ClGzl2Zi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v9ClGzl2Zi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v9ClGzl2Zi .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-v9ClGzl2Zi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-v9ClGzl2Zi .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-v9ClGzl2Zi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v9ClGzl2Zi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-v9ClGzl2Zi .navbar .icons-menu,
  .cid-v9ClGzl2Zi .navbar .empty {
    display: none;
  }
  .cid-v9ClGzl2Zi .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-v9ClGzl2Zi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v9ClGzl2Zi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v9ClGzl2Zi .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-v9ClGzl2Zi .navbar .container-fluid,
  .cid-v9ClGzl2Zi .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-v9ClGzl2Zi .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-v9ClGzl2Zi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v9ClGzl2Zi .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-v9ClGzl2Zi .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-v9ClGzl2Zi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-v9ClGzl2Zi .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-v9ClGzl2Zi .navbar.navbar-short {
  background: #ffd6ee !important;
  min-height: 90px;
}
.cid-v9ClGzl2Zi .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-v9ClGzl2Zi .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-v9ClGzl2Zi .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-v9ClGzl2Zi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v9ClGzl2Zi .dropdown-item.active,
.cid-v9ClGzl2Zi .dropdown-item:active {
  background-color: transparent;
}
.cid-v9ClGzl2Zi .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v9ClGzl2Zi .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-v9ClGzl2Zi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffd6ee;
}
.cid-v9ClGzl2Zi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-v9ClGzl2Zi .navbar-buttons {
  text-align: center;
}
.cid-v9ClGzl2Zi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-v9ClGzl2Zi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232226;
}
.cid-v9ClGzl2Zi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v9ClGzl2Zi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v9ClGzl2Zi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v9ClGzl2Zi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v9ClGzl2Zi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9ClGzl2Zi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v9ClGzl2Zi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v9ClGzl2Zi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9ClGzl2Zi .navbar-dropdown {
  position: absolute;
}
.cid-v9ClGzl2Zi a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v9ClGzl2Zi a.nav-link:hover {
  color: #4200ff !important;
}
.is-builder .cid-v9ClGzl2Zi .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v9ClGzl2Zi .navbar {
    height: 77px;
  }
  .cid-v9ClGzl2Zi .navbar.opened {
    height: auto;
  }
  .cid-v9ClGzl2Zi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9ClGA5bEY {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffd6ee;
}
.cid-v9ClGA5bEY .pos_rel {
  position: relative;
}
.cid-v9ClGA5bEY .main_section_title {
  display: flex;
}
.cid-v9ClGA5bEY .main_title {
  padding: 0 8.333%;
}
.cid-v9ClGA5bEY .empty_content {
  width: 90%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-v9ClGA5bEY .card_title {
    font-size: 2rem;
  }
}
.cid-v9ClGA5bEY .text-wrapper {
  width: 60%;
  background: #ffffff;
  padding: 90px 1rem;
  height: 70vh;
}
@media (min-width: 1550px) {
  .cid-v9ClGA5bEY .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-v9ClGA5bEY .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-v9ClGA5bEY .text-wrapper {
    padding-right: 3%;
    padding-left: calc(3% + 16px);
  }
}
.cid-v9ClGA5bEY .text-wrapper:hover .card_title a {
  color: #4200ff !important;
}
.cid-v9ClGA5bEY .text-wrapper .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v9ClGA5bEY .block-content,
.cid-v9ClGA5bEY .main_section_title {
  flex-direction: row-reverse;
}
@media (min-width: 1550px) {
  .cid-v9ClGA5bEY .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-v9ClGA5bEY .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-v9ClGA5bEY .text-wrapper {
    padding-left: 3%;
    padding-right: calc(3% + 16px);
  }
}
.cid-v9ClGA5bEY .block-content {
  display: flex;
  align-items: center;
}
.cid-v9ClGA5bEY .image-wrapper,
.cid-v9ClGA5bEY img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.cid-v9ClGA5bEY .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #232226;
}
.cid-v9ClGA5bEY .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v9ClGA5bEY .mbr-section-btn .btn-secondary-outline:hover,
.cid-v9ClGA5bEY .mbr-section-btn .btn-secondary-outline .active,
.cid-v9ClGA5bEY .mbr-section-btn .btn-secondary-outline:focus {
  color: #f24d94 !important;
}
@media (max-width: 991px) {
  .cid-v9ClGA5bEY .block-content {
    flex-direction: column;
  }
  .cid-v9ClGA5bEY .text-wrapper {
    order: 2;
    width: 100%;
    padding: 40px;
    height: auto;
  }
  .cid-v9ClGA5bEY .empty_content {
    display: none;
  }
  .cid-v9ClGA5bEY .main_title {
    padding: 40px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-v9ClGA5bEY .text-wrapper,
  .cid-v9ClGA5bEY .main_title {
    padding: 30px 1rem;
  }
}
.cid-v9ClGA5bEY .mbr-section-title {
  color: #232226;
}
.cid-v9ClGA5bEY .card_subtitle {
  color: #232226;
}
.cid-v9ClGA5bEY .mbr-text,
.cid-v9ClGA5bEY .mbr-section-btn {
  color: #232226;
}
.cid-v9ClGAEXmt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v9ClGAEXmt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9ClGAEXmt .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-v9ClGAEXmt .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v9ClGAEXmt .container {
    padding: 0 12px;
  }
}
.cid-v9ClGAEXmt .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v9ClGAEXmt .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-v9ClGAEXmt .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-v9ClGAEXmt .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ffd6ee;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-v9ClGAEXmt .mbr-section-title {
  color: #222222;
}
.cid-v9ClGAYuRE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v9ClGAYuRE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9ClGAYuRE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9ClGAYuRE .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-v9ClGAYuRE .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-v9ClGAYuRE .container {
    padding: 0 24px;
  }
}
.cid-v9ClGAYuRE .row {
  justify-content: center;
}
.cid-v9ClGAYuRE .content-wrapper {
  border-radius: 40px;
  background-color: #ffd6ee;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-v9ClGAYuRE .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-v9ClGAYuRE .content-wrapper {
    padding: 32px;
  }
}
.cid-v9ClGAYuRE .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v9ClGAYuRE .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-v9ClGAYuRE .mbr-section-title {
  color: #000000;
}
.cid-v9ClGAYuRE .mbr-text {
  color: #000000;
}
.cid-v9ClGBjeun {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-v9ClGBjeun .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9ClGBjeun .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9ClGBjeun .content-wrapper .mbr-label {
  margin-bottom: 12px;
}
.cid-v9ClGBjeun .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v9ClGBjeun .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-v9ClGBjeun .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v9ClGBjeun .mbr-label {
  color: #000000;
}
.cid-v9ClGBjeun .mbr-text {
  color: #ffffff;
}
.cid-v9ClGBjeun .mbr-text,
.cid-v9ClGBjeun .mbr-section-btn {
  color: #000000;
}
.cid-v9ClGBDh5k {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v9ClGBDh5k .card_block {
  border-radius: 10px;
  padding: 40px;
  background-color: #ffd6ee;
}
.cid-v9ClGBDh5k .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #232226;
}
.cid-v9ClGBDh5k .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v9ClGBDh5k .mbr-section-btn .btn-secondary-outline:hover,
.cid-v9ClGBDh5k .mbr-section-btn .btn-secondary-outline .active,
.cid-v9ClGBDh5k .mbr-section-btn .btn-secondary-outline:focus {
  color: #f24d94 !important;
}
.cid-v9ClGBDh5k .content_block:hover .mbr-section-subtitle a {
  color: #4200ff !important;
}
@media (max-width: 767px) {
  .cid-v9ClGBDh5k .card_block {
    margin-bottom: 1.5rem;
    padding: 20px;
  }
}
.cid-v9ClGBDh5k .mbr-text,
.cid-v9ClGBDh5k .mbr-section-btn {
  color: #232226;
}
.cid-v9ClGBDh5k .card_text {
  color: #232226;
}
.cid-v9ClGBZ8YF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v9ClGBZ8YF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9ClGBZ8YF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9ClGBZ8YF .content-wrapper {
  padding: 80px 90px;
  background-color: #ffd6ee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v9ClGBZ8YF .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-v9ClGBZ8YF .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v9ClGBZ8YF .content-wrapper .title-wrapper {
    margin-bottom: 24px;
    width: 100%;
  }
}
.cid-v9ClGBZ8YF .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v9ClGBZ8YF .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-v9ClGBZ8YF .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 38px;
}
@media (max-width: 992px) {
  .cid-v9ClGBZ8YF .content-wrapper .title-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-v9ClGBZ8YF .content-wrapper .image-wrapper {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-v9ClGBZ8YF .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-v9ClGBZ8YF .content-wrapper .image-wrapper img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v9ClGBZ8YF .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-v9ClGBZ8YF .mbr-section-title {
  color: #050f0f;
}
.cid-v9ClGBZ8YF .mbr-text {
  color: #050f0f;
}
.cid-v9ClGCpelK {
  padding-top: 0rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v9ClGCpelK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9ClGCpelK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9ClGCpelK .row {
  justify-content: center;
}
.cid-v9ClGCpelK .content-wrapper .title-wrapper {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-v9ClGCpelK .content-wrapper .title-wrapper {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .cid-v9ClGCpelK .content-wrapper .title-wrapper {
    padding-bottom: 60px;
  }
}
.cid-v9ClGCpelK .content-wrapper .title-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 32px;
  width: 100%;
  background-color: #ffd6ee;
}
@media (max-width: 992px) {
  .cid-v9ClGCpelK .content-wrapper .title-wrapper::before {
    height: 24px;
  }
}
.cid-v9ClGCpelK .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v9ClGCpelK .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-v9ClGCpelK .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v9ClGCpelK .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-v9ClGCpelK .mbr-section-title {
  color: #ffffff;
}
.cid-v9ClGCpelK .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-v9ClGCpelK .mbr-text,
.cid-v9ClGCpelK .text-wrapper {
  color: #232323;
  text-align: center;
}
.cid-v9ClGCpelK .mbr-section-title,
.cid-v9ClGCpelK .mbr-section-btn {
  text-align: center;
}
.cid-v9ClGCLrL1 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v9ClGCLrL1 .card_block {
  border-radius: 10px;
  padding: 40px;
  background-color: #ffd6ee;
}
.cid-v9ClGCLrL1 .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #232226;
}
.cid-v9ClGCLrL1 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v9ClGCLrL1 .mbr-section-btn .btn-secondary-outline:hover,
.cid-v9ClGCLrL1 .mbr-section-btn .btn-secondary-outline .active,
.cid-v9ClGCLrL1 .mbr-section-btn .btn-secondary-outline:focus {
  color: #f24d94 !important;
}
.cid-v9ClGCLrL1 .content_block:hover .mbr-section-subtitle a {
  color: #4200ff !important;
}
@media (max-width: 767px) {
  .cid-v9ClGCLrL1 .card_block {
    margin-bottom: 1.5rem;
    padding: 20px;
  }
}
.cid-v9ClGCLrL1 .mbr-text,
.cid-v9ClGCLrL1 .mbr-section-btn {
  color: #232226;
}
.cid-v9ClGCLrL1 .card_text {
  color: #232226;
}
.cid-v9ClGD7P15 {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-v9ClGD7P15 H1 {
  color: #232323;
}
.cid-v9ClGD7P15 .mbr-text,
.cid-v9ClGD7P15 .mbr-section-btn {
  color: #232323;
}
.cid-v9ClGDpfOM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v9ClGDpfOM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9ClGDpfOM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9ClGDpfOM .row {
  margin: 0 !important;
}
.cid-v9ClGDpfOM .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-v9ClGDpfOM .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-v9ClGDpfOM .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-v9ClGDpfOM .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
}
.cid-v9ClGDpfOM .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v9ClGDpfOM .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-v9ClGDpfOM .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v9ClGDpfOM .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-v9ClGDpfOM .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-v9ClGDpfOM .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-v9ClGDpfOM .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-v9ClGDpfOM .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #f99bc4;
  margin-left: 0.5rem;
}
.cid-v9ClGDpfOM .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #f99bc4;
  font-weight: 900;
}
.cid-v9ClGDpfOM .panel-group {
  border: none;
}
.cid-v9ClGDpfOM .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-v9ClGDpfOM .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v9ClGDpfOM .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-v9ClGDpfOM .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-v9ClGDpfOM .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-v9ClGDpfOM .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-v9ClGDpfOM .panel-title-edit {
  color: #131313;
}
.cid-v9ClGDpfOM .panel-body {
  padding: 0 0 20px;
}
.cid-v9ClGDpfOM .panel-text {
  color: #131313;
  margin: 0;
}
.cid-v9ClGDRvsK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffd6ee;
}
.cid-v9ClGDRvsK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9ClGDRvsK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9ClGDRvsK .container-fluid {
  padding: 0 70px;
}
@media (max-width: 1440px) {
  .cid-v9ClGDRvsK .container-fluid {
    padding: 0 48px;
  }
}
@media (max-width: 992px) {
  .cid-v9ClGDRvsK .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-v9ClGDRvsK .container {
    padding: 0 20px;
  }
}
.cid-v9ClGDRvsK .row {
  justify-content: center;
}
.cid-v9ClGDRvsK .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #000000;
  margin-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-v9ClGDRvsK .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-v9ClGDRvsK .text-wrapper {
  margin-bottom: 136px;
}
@media (max-width: 992px) {
  .cid-v9ClGDRvsK .text-wrapper {
    margin-bottom: 30px;
  }
}
.cid-v9ClGDRvsK .text-wrapper .text-wrap .mbr-text {
  width: 50%;
  display: inline-flex;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .cid-v9ClGDRvsK .text-wrapper .text-wrap .mbr-text {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-v9ClGDRvsK .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-v9ClGDRvsK .nav-wrapper {
  margin-bottom: 136px;
}
@media (max-width: 992px) {
  .cid-v9ClGDRvsK .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-v9ClGDRvsK .nav-wrapper .mbr-list-title {
  margin-bottom: 24px;
}
.cid-v9ClGDRvsK .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v9ClGDRvsK .nav-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.cid-v9ClGDRvsK .nav-wrapper .list .item-wrap:hover,
.cid-v9ClGDRvsK .nav-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-v9ClGDRvsK .mbr-copy {
  margin-bottom: 0;
  color: #000000;
}
.cid-v9ClGDRvsK .mbr-text {
  color: #000000;
}
.cid-v9ClGDRvsK .mbr-list-title {
  color: #000000;
}
.cid-v9ClGDRvsK .list {
  color: #9a9a9a;
}
.cid-v9ClGDRvsK .list,
.cid-v9ClGDRvsK .item-wrap,
.cid-v9ClGDRvsK .contacts-wrapper {
  color: #000000;
}
.cid-v9CoglBQP1 {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffd6ee;
}
@media (min-width: 991px) {
  .cid-v9CoglBQP1 {
    min-height: 170px !important;
  }
}
.cid-v9CoglBQP1 .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-v9CoglBQP1 .empty_md {
    display: block;
  }
}
.cid-v9CoglBQP1 .container,
.cid-v9CoglBQP1 .container-fluid,
.cid-v9CoglBQP1 .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-v9CoglBQP1 .container,
  .cid-v9CoglBQP1 .container-fluid,
  .cid-v9CoglBQP1 .empty_md {
    min-height: 170px !important;
  }
}
.cid-v9CoglBQP1 .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-v9CoglBQP1 .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-v9CoglBQP1 .top_menu {
    min-height: 110px !important;
  }
}
.cid-v9CoglBQP1 .navbar-caption:hover {
  color: #4200ff !important;
}
.cid-v9CoglBQP1 .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v9CoglBQP1 .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-v9CoglBQP1 .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #232226;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-v9CoglBQP1 .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-v9CoglBQP1 .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-v9CoglBQP1 .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-v9CoglBQP1 .icons-menu .icons-wrapper:hover {
    background: #232226;
  }
  .cid-v9CoglBQP1 .icons-menu .icons-wrapper:hover .mbr-iconfont {
    color: #ffffff;
  }
  .cid-v9CoglBQP1 .empty,
  .cid-v9CoglBQP1 .icons-menu {
    min-width: 265px;
  }
  .cid-v9CoglBQP1 .navbar-logo {
    margin: 0;
  }
  .cid-v9CoglBQP1 .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-v9CoglBQP1 .btn {
    white-space: nowrap;
  }
  .cid-v9CoglBQP1 .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-v9CoglBQP1 .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-v9CoglBQP1 .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-v9CoglBQP1 .dropdown-toggle::after,
  .cid-v9CoglBQP1 .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-v9CoglBQP1 .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-v9CoglBQP1 .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v9CoglBQP1 .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-v9CoglBQP1 .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v9CoglBQP1 .dropdown-menu .dropdown-item:hover {
  color: #f24d94 !important;
  background-color: #f8f8f8;
}
.cid-v9CoglBQP1 .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-v9CoglBQP1 .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-v9CoglBQP1 .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-v9CoglBQP1 .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-v9CoglBQP1 .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-v9CoglBQP1 .nav-item:focus,
.cid-v9CoglBQP1 .nav-link:focus {
  outline: none;
}
.cid-v9CoglBQP1 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-v9CoglBQP1 .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-v9CoglBQP1 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-v9CoglBQP1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v9CoglBQP1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-v9CoglBQP1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v9CoglBQP1 ul.navbar-nav li {
  margin: auto;
}
.cid-v9CoglBQP1 .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffd6ee;
}
.cid-v9CoglBQP1 .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffd6ee !important;
}
.cid-v9CoglBQP1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-v9CoglBQP1 .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-v9CoglBQP1 .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-v9CoglBQP1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v9CoglBQP1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v9CoglBQP1 .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-v9CoglBQP1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-v9CoglBQP1 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-v9CoglBQP1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v9CoglBQP1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-v9CoglBQP1 .navbar .icons-menu,
  .cid-v9CoglBQP1 .navbar .empty {
    display: none;
  }
  .cid-v9CoglBQP1 .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-v9CoglBQP1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v9CoglBQP1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v9CoglBQP1 .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-v9CoglBQP1 .navbar .container-fluid,
  .cid-v9CoglBQP1 .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-v9CoglBQP1 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-v9CoglBQP1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v9CoglBQP1 .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-v9CoglBQP1 .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-v9CoglBQP1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-v9CoglBQP1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-v9CoglBQP1 .navbar.navbar-short {
  background: #ffd6ee !important;
  min-height: 90px;
}
.cid-v9CoglBQP1 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-v9CoglBQP1 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-v9CoglBQP1 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-v9CoglBQP1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v9CoglBQP1 .dropdown-item.active,
.cid-v9CoglBQP1 .dropdown-item:active {
  background-color: transparent;
}
.cid-v9CoglBQP1 .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v9CoglBQP1 .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-v9CoglBQP1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffd6ee;
}
.cid-v9CoglBQP1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-v9CoglBQP1 .navbar-buttons {
  text-align: center;
}
.cid-v9CoglBQP1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-v9CoglBQP1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232226;
}
.cid-v9CoglBQP1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v9CoglBQP1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v9CoglBQP1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v9CoglBQP1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v9CoglBQP1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9CoglBQP1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v9CoglBQP1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v9CoglBQP1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9CoglBQP1 .navbar-dropdown {
  position: absolute;
}
.cid-v9CoglBQP1 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v9CoglBQP1 a.nav-link:hover {
  color: #4200ff !important;
}
.is-builder .cid-v9CoglBQP1 .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v9CoglBQP1 .navbar {
    height: 77px;
  }
  .cid-v9CoglBQP1 .navbar.opened {
    height: auto;
  }
  .cid-v9CoglBQP1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9Cogmaj8z {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffd6ee;
}
.cid-v9Cogmaj8z .pos_rel {
  position: relative;
}
.cid-v9Cogmaj8z .main_section_title {
  display: flex;
}
.cid-v9Cogmaj8z .main_title {
  padding: 0 8.333%;
}
.cid-v9Cogmaj8z .empty_content {
  width: 90%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-v9Cogmaj8z .card_title {
    font-size: 2rem;
  }
}
.cid-v9Cogmaj8z .text-wrapper {
  width: 60%;
  background: #ffffff;
  padding: 90px 1rem;
  height: 70vh;
}
@media (min-width: 1550px) {
  .cid-v9Cogmaj8z .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-v9Cogmaj8z .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-v9Cogmaj8z .text-wrapper {
    padding-right: 3%;
    padding-left: calc(3% + 16px);
  }
}
.cid-v9Cogmaj8z .text-wrapper:hover .card_title a {
  color: #4200ff !important;
}
.cid-v9Cogmaj8z .text-wrapper .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v9Cogmaj8z .block-content,
.cid-v9Cogmaj8z .main_section_title {
  flex-direction: row-reverse;
}
@media (min-width: 1550px) {
  .cid-v9Cogmaj8z .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-v9Cogmaj8z .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-v9Cogmaj8z .text-wrapper {
    padding-left: 3%;
    padding-right: calc(3% + 16px);
  }
}
.cid-v9Cogmaj8z .block-content {
  display: flex;
  align-items: center;
}
.cid-v9Cogmaj8z .image-wrapper,
.cid-v9Cogmaj8z img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.cid-v9Cogmaj8z .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #232226;
}
.cid-v9Cogmaj8z .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v9Cogmaj8z .mbr-section-btn .btn-secondary-outline:hover,
.cid-v9Cogmaj8z .mbr-section-btn .btn-secondary-outline .active,
.cid-v9Cogmaj8z .mbr-section-btn .btn-secondary-outline:focus {
  color: #f24d94 !important;
}
@media (max-width: 991px) {
  .cid-v9Cogmaj8z .block-content {
    flex-direction: column;
  }
  .cid-v9Cogmaj8z .text-wrapper {
    order: 2;
    width: 100%;
    padding: 40px;
    height: auto;
  }
  .cid-v9Cogmaj8z .empty_content {
    display: none;
  }
  .cid-v9Cogmaj8z .main_title {
    padding: 40px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-v9Cogmaj8z .text-wrapper,
  .cid-v9Cogmaj8z .main_title {
    padding: 30px 1rem;
  }
}
.cid-v9Cogmaj8z .mbr-section-title {
  color: #232226;
}
.cid-v9Cogmaj8z .card_subtitle {
  color: #232226;
}
.cid-v9Cogmaj8z .mbr-text,
.cid-v9Cogmaj8z .mbr-section-btn {
  color: #232226;
}
.cid-v9CogmF6jW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v9CogmF6jW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9CogmF6jW .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-v9CogmF6jW .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v9CogmF6jW .container {
    padding: 0 12px;
  }
}
.cid-v9CogmF6jW .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v9CogmF6jW .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-v9CogmF6jW .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-v9CogmF6jW .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ffd6ee;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-v9CogmF6jW .mbr-section-title {
  color: #222222;
}
.cid-v9Cogn0ZhK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v9Cogn0ZhK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Cogn0ZhK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Cogn0ZhK .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-v9Cogn0ZhK .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-v9Cogn0ZhK .container {
    padding: 0 24px;
  }
}
.cid-v9Cogn0ZhK .row {
  justify-content: center;
}
.cid-v9Cogn0ZhK .content-wrapper {
  border-radius: 40px;
  background-color: #ffd6ee;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-v9Cogn0ZhK .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-v9Cogn0ZhK .content-wrapper {
    padding: 32px;
  }
}
.cid-v9Cogn0ZhK .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v9Cogn0ZhK .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-v9Cogn0ZhK .mbr-section-title {
  color: #000000;
}
.cid-v9Cogn0ZhK .mbr-text {
  color: #000000;
}
.cid-v9Cognk3Do {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-v9Cognk3Do .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Cognk3Do .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Cognk3Do .content-wrapper .mbr-label {
  margin-bottom: 12px;
}
.cid-v9Cognk3Do .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v9Cognk3Do .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-v9Cognk3Do .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v9Cognk3Do .mbr-label {
  color: #000000;
}
.cid-v9Cognk3Do .mbr-text {
  color: #ffffff;
}
.cid-v9Cognk3Do .mbr-text,
.cid-v9Cognk3Do .mbr-section-btn {
  color: #000000;
}
.cid-v9CognEBxN {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v9CognEBxN .card_block {
  border-radius: 10px;
  padding: 40px;
  background-color: #ffd6ee;
}
.cid-v9CognEBxN .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #232226;
}
.cid-v9CognEBxN .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v9CognEBxN .mbr-section-btn .btn-secondary-outline:hover,
.cid-v9CognEBxN .mbr-section-btn .btn-secondary-outline .active,
.cid-v9CognEBxN .mbr-section-btn .btn-secondary-outline:focus {
  color: #f24d94 !important;
}
.cid-v9CognEBxN .content_block:hover .mbr-section-subtitle a {
  color: #4200ff !important;
}
@media (max-width: 767px) {
  .cid-v9CognEBxN .card_block {
    margin-bottom: 1.5rem;
    padding: 20px;
  }
}
.cid-v9CognEBxN .mbr-text,
.cid-v9CognEBxN .mbr-section-btn {
  color: #232226;
}
.cid-v9CognEBxN .card_text {
  color: #232226;
}
.cid-v9CognVNpt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v9CognVNpt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9CognVNpt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9CognVNpt .content-wrapper {
  padding: 80px 90px;
  background-color: #ffd6ee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v9CognVNpt .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-v9CognVNpt .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v9CognVNpt .content-wrapper .title-wrapper {
    margin-bottom: 24px;
    width: 100%;
  }
}
.cid-v9CognVNpt .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v9CognVNpt .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-v9CognVNpt .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 38px;
}
@media (max-width: 992px) {
  .cid-v9CognVNpt .content-wrapper .title-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-v9CognVNpt .content-wrapper .image-wrapper {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-v9CognVNpt .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-v9CognVNpt .content-wrapper .image-wrapper img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v9CognVNpt .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-v9CognVNpt .mbr-section-title {
  color: #050f0f;
}
.cid-v9CognVNpt .mbr-text {
  color: #050f0f;
}
.cid-v9CogokeDz {
  padding-top: 0rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v9CogokeDz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9CogokeDz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9CogokeDz .row {
  justify-content: center;
}
.cid-v9CogokeDz .content-wrapper .title-wrapper {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-v9CogokeDz .content-wrapper .title-wrapper {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .cid-v9CogokeDz .content-wrapper .title-wrapper {
    padding-bottom: 60px;
  }
}
.cid-v9CogokeDz .content-wrapper .title-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 32px;
  width: 100%;
  background-color: #ffd6ee;
}
@media (max-width: 992px) {
  .cid-v9CogokeDz .content-wrapper .title-wrapper::before {
    height: 24px;
  }
}
.cid-v9CogokeDz .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v9CogokeDz .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-v9CogokeDz .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v9CogokeDz .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-v9CogokeDz .mbr-section-title {
  color: #ffffff;
}
.cid-v9CogokeDz .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-v9CogokeDz .mbr-text,
.cid-v9CogokeDz .text-wrapper {
  color: #232323;
  text-align: center;
}
.cid-v9CogokeDz .mbr-section-title,
.cid-v9CogokeDz .mbr-section-btn {
  text-align: center;
}
.cid-v9CogoDW6X {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v9CogoDW6X .card_block {
  border-radius: 10px;
  padding: 40px;
  background-color: #ffd6ee;
}
.cid-v9CogoDW6X .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #232226;
}
.cid-v9CogoDW6X .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v9CogoDW6X .mbr-section-btn .btn-secondary-outline:hover,
.cid-v9CogoDW6X .mbr-section-btn .btn-secondary-outline .active,
.cid-v9CogoDW6X .mbr-section-btn .btn-secondary-outline:focus {
  color: #f24d94 !important;
}
.cid-v9CogoDW6X .content_block:hover .mbr-section-subtitle a {
  color: #4200ff !important;
}
@media (max-width: 767px) {
  .cid-v9CogoDW6X .card_block {
    margin-bottom: 1.5rem;
    padding: 20px;
  }
}
.cid-v9CogoDW6X .mbr-text,
.cid-v9CogoDW6X .mbr-section-btn {
  color: #232226;
}
.cid-v9CogoDW6X .card_text {
  color: #232226;
}
.cid-v9CogoYOay {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-v9CogoYOay H1 {
  color: #232323;
}
.cid-v9CogoYOay .mbr-text,
.cid-v9CogoYOay .mbr-section-btn {
  color: #232323;
}
.cid-v9CogpqIih {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v9CogpqIih .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9CogpqIih .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9CogpqIih .row {
  margin: 0 !important;
}
.cid-v9CogpqIih .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-v9CogpqIih .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-v9CogpqIih .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-v9CogpqIih .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
}
.cid-v9CogpqIih .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v9CogpqIih .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-v9CogpqIih .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v9CogpqIih .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-v9CogpqIih .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-v9CogpqIih .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-v9CogpqIih .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-v9CogpqIih .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #f99bc4;
  margin-left: 0.5rem;
}
.cid-v9CogpqIih .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #f99bc4;
  font-weight: 900;
}
.cid-v9CogpqIih .panel-group {
  border: none;
}
.cid-v9CogpqIih .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-v9CogpqIih .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v9CogpqIih .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-v9CogpqIih .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-v9CogpqIih .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-v9CogpqIih .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-v9CogpqIih .panel-title-edit {
  color: #131313;
}
.cid-v9CogpqIih .panel-body {
  padding: 0 0 20px;
}
.cid-v9CogpqIih .panel-text {
  color: #131313;
  margin: 0;
}
.cid-v9CogqiRK1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffd6ee;
}
.cid-v9CogqiRK1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9CogqiRK1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9CogqiRK1 .container-fluid {
  padding: 0 70px;
}
@media (max-width: 1440px) {
  .cid-v9CogqiRK1 .container-fluid {
    padding: 0 48px;
  }
}
@media (max-width: 992px) {
  .cid-v9CogqiRK1 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-v9CogqiRK1 .container {
    padding: 0 20px;
  }
}
.cid-v9CogqiRK1 .row {
  justify-content: center;
}
.cid-v9CogqiRK1 .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #000000;
  margin-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-v9CogqiRK1 .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-v9CogqiRK1 .text-wrapper {
  margin-bottom: 136px;
}
@media (max-width: 992px) {
  .cid-v9CogqiRK1 .text-wrapper {
    margin-bottom: 30px;
  }
}
.cid-v9CogqiRK1 .text-wrapper .text-wrap .mbr-text {
  width: 50%;
  display: inline-flex;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .cid-v9CogqiRK1 .text-wrapper .text-wrap .mbr-text {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-v9CogqiRK1 .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-v9CogqiRK1 .nav-wrapper {
  margin-bottom: 136px;
}
@media (max-width: 992px) {
  .cid-v9CogqiRK1 .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-v9CogqiRK1 .nav-wrapper .mbr-list-title {
  margin-bottom: 24px;
}
.cid-v9CogqiRK1 .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v9CogqiRK1 .nav-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.cid-v9CogqiRK1 .nav-wrapper .list .item-wrap:hover,
.cid-v9CogqiRK1 .nav-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-v9CogqiRK1 .mbr-copy {
  margin-bottom: 0;
  color: #000000;
}
.cid-v9CogqiRK1 .mbr-text {
  color: #000000;
}
.cid-v9CogqiRK1 .mbr-list-title {
  color: #000000;
}
.cid-v9CogqiRK1 .list {
  color: #9a9a9a;
}
.cid-v9CogqiRK1 .list,
.cid-v9CogqiRK1 .item-wrap,
.cid-v9CogqiRK1 .contacts-wrapper {
  color: #000000;
}
.cid-v9Cn0GFOvG {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffd6ee;
}
@media (min-width: 991px) {
  .cid-v9Cn0GFOvG {
    min-height: 170px !important;
  }
}
.cid-v9Cn0GFOvG .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-v9Cn0GFOvG .empty_md {
    display: block;
  }
}
.cid-v9Cn0GFOvG .container,
.cid-v9Cn0GFOvG .container-fluid,
.cid-v9Cn0GFOvG .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-v9Cn0GFOvG .container,
  .cid-v9Cn0GFOvG .container-fluid,
  .cid-v9Cn0GFOvG .empty_md {
    min-height: 170px !important;
  }
}
.cid-v9Cn0GFOvG .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-v9Cn0GFOvG .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-v9Cn0GFOvG .top_menu {
    min-height: 110px !important;
  }
}
.cid-v9Cn0GFOvG .navbar-caption:hover {
  color: #4200ff !important;
}
.cid-v9Cn0GFOvG .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v9Cn0GFOvG .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-v9Cn0GFOvG .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #232226;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-v9Cn0GFOvG .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-v9Cn0GFOvG .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-v9Cn0GFOvG .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-v9Cn0GFOvG .icons-menu .icons-wrapper:hover {
    background: #232226;
  }
  .cid-v9Cn0GFOvG .icons-menu .icons-wrapper:hover .mbr-iconfont {
    color: #ffffff;
  }
  .cid-v9Cn0GFOvG .empty,
  .cid-v9Cn0GFOvG .icons-menu {
    min-width: 265px;
  }
  .cid-v9Cn0GFOvG .navbar-logo {
    margin: 0;
  }
  .cid-v9Cn0GFOvG .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-v9Cn0GFOvG .btn {
    white-space: nowrap;
  }
  .cid-v9Cn0GFOvG .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-v9Cn0GFOvG .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-v9Cn0GFOvG .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-v9Cn0GFOvG .dropdown-toggle::after,
  .cid-v9Cn0GFOvG .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-v9Cn0GFOvG .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-v9Cn0GFOvG .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v9Cn0GFOvG .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-v9Cn0GFOvG .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v9Cn0GFOvG .dropdown-menu .dropdown-item:hover {
  color: #f24d94 !important;
  background-color: #f8f8f8;
}
.cid-v9Cn0GFOvG .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-v9Cn0GFOvG .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-v9Cn0GFOvG .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-v9Cn0GFOvG .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-v9Cn0GFOvG .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-v9Cn0GFOvG .nav-item:focus,
.cid-v9Cn0GFOvG .nav-link:focus {
  outline: none;
}
.cid-v9Cn0GFOvG .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-v9Cn0GFOvG .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-v9Cn0GFOvG .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-v9Cn0GFOvG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v9Cn0GFOvG .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-v9Cn0GFOvG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v9Cn0GFOvG ul.navbar-nav li {
  margin: auto;
}
.cid-v9Cn0GFOvG .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffd6ee;
}
.cid-v9Cn0GFOvG .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffd6ee !important;
}
.cid-v9Cn0GFOvG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-v9Cn0GFOvG .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-v9Cn0GFOvG .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-v9Cn0GFOvG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v9Cn0GFOvG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v9Cn0GFOvG .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-v9Cn0GFOvG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-v9Cn0GFOvG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-v9Cn0GFOvG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v9Cn0GFOvG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-v9Cn0GFOvG .navbar .icons-menu,
  .cid-v9Cn0GFOvG .navbar .empty {
    display: none;
  }
  .cid-v9Cn0GFOvG .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-v9Cn0GFOvG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v9Cn0GFOvG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v9Cn0GFOvG .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-v9Cn0GFOvG .navbar .container-fluid,
  .cid-v9Cn0GFOvG .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-v9Cn0GFOvG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-v9Cn0GFOvG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v9Cn0GFOvG .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-v9Cn0GFOvG .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-v9Cn0GFOvG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-v9Cn0GFOvG .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-v9Cn0GFOvG .navbar.navbar-short {
  background: #ffd6ee !important;
  min-height: 90px;
}
.cid-v9Cn0GFOvG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-v9Cn0GFOvG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-v9Cn0GFOvG .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-v9Cn0GFOvG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v9Cn0GFOvG .dropdown-item.active,
.cid-v9Cn0GFOvG .dropdown-item:active {
  background-color: transparent;
}
.cid-v9Cn0GFOvG .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v9Cn0GFOvG .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-v9Cn0GFOvG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffd6ee;
}
.cid-v9Cn0GFOvG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-v9Cn0GFOvG .navbar-buttons {
  text-align: center;
}
.cid-v9Cn0GFOvG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-v9Cn0GFOvG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232226;
}
.cid-v9Cn0GFOvG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v9Cn0GFOvG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v9Cn0GFOvG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v9Cn0GFOvG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v9Cn0GFOvG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9Cn0GFOvG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v9Cn0GFOvG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v9Cn0GFOvG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9Cn0GFOvG .navbar-dropdown {
  position: absolute;
}
.cid-v9Cn0GFOvG a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-v9Cn0GFOvG a.nav-link:hover {
  color: #4200ff !important;
}
.is-builder .cid-v9Cn0GFOvG .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v9Cn0GFOvG .navbar {
    height: 77px;
  }
  .cid-v9Cn0GFOvG .navbar.opened {
    height: auto;
  }
  .cid-v9Cn0GFOvG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9Cn0HhKEJ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffd6ee;
}
.cid-v9Cn0HhKEJ .pos_rel {
  position: relative;
}
.cid-v9Cn0HhKEJ .main_section_title {
  display: flex;
}
.cid-v9Cn0HhKEJ .main_title {
  padding: 0 8.333%;
}
.cid-v9Cn0HhKEJ .empty_content {
  width: 90%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-v9Cn0HhKEJ .card_title {
    font-size: 2rem;
  }
}
.cid-v9Cn0HhKEJ .text-wrapper {
  width: 60%;
  background: #ffffff;
  padding: 90px 1rem;
  height: 70vh;
}
@media (min-width: 1550px) {
  .cid-v9Cn0HhKEJ .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-v9Cn0HhKEJ .text-wrapper {
    padding-right: 8.333%;
    padding-left: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-v9Cn0HhKEJ .text-wrapper {
    padding-right: 3%;
    padding-left: calc(3% + 16px);
  }
}
.cid-v9Cn0HhKEJ .text-wrapper:hover .card_title a {
  color: #4200ff !important;
}
.cid-v9Cn0HhKEJ .text-wrapper .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v9Cn0HhKEJ .block-content,
.cid-v9Cn0HhKEJ .main_section_title {
  flex-direction: row-reverse;
}
@media (min-width: 1550px) {
  .cid-v9Cn0HhKEJ .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(15% + 16px);
  }
}
@media (max-width: 1549px) {
  .cid-v9Cn0HhKEJ .text-wrapper {
    padding-left: 8.333%;
    padding-right: calc(8% + 16px);
  }
}
@media (max-width: 1250px) {
  .cid-v9Cn0HhKEJ .text-wrapper {
    padding-left: 3%;
    padding-right: calc(3% + 16px);
  }
}
.cid-v9Cn0HhKEJ .block-content {
  display: flex;
  align-items: center;
}
.cid-v9Cn0HhKEJ .image-wrapper,
.cid-v9Cn0HhKEJ img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.cid-v9Cn0HhKEJ .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #232226;
}
.cid-v9Cn0HhKEJ .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v9Cn0HhKEJ .mbr-section-btn .btn-secondary-outline:hover,
.cid-v9Cn0HhKEJ .mbr-section-btn .btn-secondary-outline .active,
.cid-v9Cn0HhKEJ .mbr-section-btn .btn-secondary-outline:focus {
  color: #f24d94 !important;
}
@media (max-width: 991px) {
  .cid-v9Cn0HhKEJ .block-content {
    flex-direction: column;
  }
  .cid-v9Cn0HhKEJ .text-wrapper {
    order: 2;
    width: 100%;
    padding: 40px;
    height: auto;
  }
  .cid-v9Cn0HhKEJ .empty_content {
    display: none;
  }
  .cid-v9Cn0HhKEJ .main_title {
    padding: 40px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-v9Cn0HhKEJ .text-wrapper,
  .cid-v9Cn0HhKEJ .main_title {
    padding: 30px 1rem;
  }
}
.cid-v9Cn0HhKEJ .mbr-section-title {
  color: #232226;
}
.cid-v9Cn0HhKEJ .card_subtitle {
  color: #232226;
}
.cid-v9Cn0HhKEJ .mbr-text,
.cid-v9Cn0HhKEJ .mbr-section-btn {
  color: #232226;
}
.cid-v9Cn0HGvIk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v9Cn0HGvIk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Cn0HGvIk .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-v9Cn0HGvIk .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v9Cn0HGvIk .container {
    padding: 0 12px;
  }
}
.cid-v9Cn0HGvIk .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v9Cn0HGvIk .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-v9Cn0HGvIk .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-v9Cn0HGvIk .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ffd6ee;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-v9Cn0HGvIk .mbr-section-title {
  color: #222222;
}
.cid-v9Cn0I0W1r {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v9Cn0I0W1r .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Cn0I0W1r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Cn0I0W1r .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-v9Cn0I0W1r .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-v9Cn0I0W1r .container {
    padding: 0 24px;
  }
}
.cid-v9Cn0I0W1r .row {
  justify-content: center;
}
.cid-v9Cn0I0W1r .content-wrapper {
  border-radius: 40px;
  background-color: #ffd6ee;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-v9Cn0I0W1r .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-v9Cn0I0W1r .content-wrapper {
    padding: 32px;
  }
}
.cid-v9Cn0I0W1r .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v9Cn0I0W1r .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-v9Cn0I0W1r .mbr-section-title {
  color: #000000;
}
.cid-v9Cn0I0W1r .mbr-text {
  color: #000000;
}
.cid-v9Cn0IjXKI {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-v9Cn0IjXKI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Cn0IjXKI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Cn0IjXKI .content-wrapper .mbr-label {
  margin-bottom: 12px;
}
.cid-v9Cn0IjXKI .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v9Cn0IjXKI .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-v9Cn0IjXKI .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v9Cn0IjXKI .mbr-label {
  color: #000000;
}
.cid-v9Cn0IjXKI .mbr-text {
  color: #ffffff;
}
.cid-v9Cn0IjXKI .mbr-text,
.cid-v9Cn0IjXKI .mbr-section-btn {
  color: #000000;
}
.cid-v9Cn0IGMrA {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v9Cn0IGMrA .card_block {
  border-radius: 10px;
  padding: 40px;
  background-color: #ffd6ee;
}
.cid-v9Cn0IGMrA .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #232226;
}
.cid-v9Cn0IGMrA .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v9Cn0IGMrA .mbr-section-btn .btn-secondary-outline:hover,
.cid-v9Cn0IGMrA .mbr-section-btn .btn-secondary-outline .active,
.cid-v9Cn0IGMrA .mbr-section-btn .btn-secondary-outline:focus {
  color: #f24d94 !important;
}
.cid-v9Cn0IGMrA .content_block:hover .mbr-section-subtitle a {
  color: #4200ff !important;
}
@media (max-width: 767px) {
  .cid-v9Cn0IGMrA .card_block {
    margin-bottom: 1.5rem;
    padding: 20px;
  }
}
.cid-v9Cn0IGMrA .mbr-text,
.cid-v9Cn0IGMrA .mbr-section-btn {
  color: #232226;
}
.cid-v9Cn0IGMrA .card_text {
  color: #232226;
}
.cid-v9Cn0J2X58 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v9Cn0J2X58 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Cn0J2X58 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Cn0J2X58 .content-wrapper {
  padding: 80px 90px;
  background-color: #ffd6ee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v9Cn0J2X58 .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-v9Cn0J2X58 .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v9Cn0J2X58 .content-wrapper .title-wrapper {
    margin-bottom: 24px;
    width: 100%;
  }
}
.cid-v9Cn0J2X58 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v9Cn0J2X58 .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-v9Cn0J2X58 .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 38px;
}
@media (max-width: 992px) {
  .cid-v9Cn0J2X58 .content-wrapper .title-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-v9Cn0J2X58 .content-wrapper .image-wrapper {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-v9Cn0J2X58 .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-v9Cn0J2X58 .content-wrapper .image-wrapper img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v9Cn0J2X58 .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-v9Cn0J2X58 .mbr-section-title {
  color: #050f0f;
}
.cid-v9Cn0J2X58 .mbr-text {
  color: #050f0f;
}
.cid-v9Cn0JPSqc {
  padding-top: 0rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v9Cn0JPSqc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Cn0JPSqc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Cn0JPSqc .row {
  justify-content: center;
}
.cid-v9Cn0JPSqc .content-wrapper .title-wrapper {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-v9Cn0JPSqc .content-wrapper .title-wrapper {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .cid-v9Cn0JPSqc .content-wrapper .title-wrapper {
    padding-bottom: 60px;
  }
}
.cid-v9Cn0JPSqc .content-wrapper .title-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 32px;
  width: 100%;
  background-color: #ffd6ee;
}
@media (max-width: 992px) {
  .cid-v9Cn0JPSqc .content-wrapper .title-wrapper::before {
    height: 24px;
  }
}
.cid-v9Cn0JPSqc .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v9Cn0JPSqc .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-v9Cn0JPSqc .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v9Cn0JPSqc .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-v9Cn0JPSqc .mbr-section-title {
  color: #ffffff;
}
.cid-v9Cn0JPSqc .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-v9Cn0JPSqc .mbr-text,
.cid-v9Cn0JPSqc .text-wrapper {
  color: #232323;
  text-align: center;
}
.cid-v9Cn0JPSqc .mbr-section-title,
.cid-v9Cn0JPSqc .mbr-section-btn {
  text-align: center;
}
.cid-v9Cn0KAXxG {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v9Cn0KAXxG .card_block {
  border-radius: 10px;
  padding: 40px;
  background-color: #ffd6ee;
}
.cid-v9Cn0KAXxG .mbr-section-subtitle {
  margin-bottom: 12px;
  color: #232226;
}
.cid-v9Cn0KAXxG .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-v9Cn0KAXxG .mbr-section-btn .btn-secondary-outline:hover,
.cid-v9Cn0KAXxG .mbr-section-btn .btn-secondary-outline .active,
.cid-v9Cn0KAXxG .mbr-section-btn .btn-secondary-outline:focus {
  color: #f24d94 !important;
}
.cid-v9Cn0KAXxG .content_block:hover .mbr-section-subtitle a {
  color: #4200ff !important;
}
@media (max-width: 767px) {
  .cid-v9Cn0KAXxG .card_block {
    margin-bottom: 1.5rem;
    padding: 20px;
  }
}
.cid-v9Cn0KAXxG .mbr-text,
.cid-v9Cn0KAXxG .mbr-section-btn {
  color: #232226;
}
.cid-v9Cn0KAXxG .card_text {
  color: #232226;
}
.cid-v9Cn0KRbXZ {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-v9Cn0KRbXZ H1 {
  color: #232323;
}
.cid-v9Cn0KRbXZ .mbr-text,
.cid-v9Cn0KRbXZ .mbr-section-btn {
  color: #232323;
}
.cid-v9Cn0LaJBP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v9Cn0LaJBP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Cn0LaJBP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Cn0LaJBP .row {
  margin: 0 !important;
}
.cid-v9Cn0LaJBP .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-v9Cn0LaJBP .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-v9Cn0LaJBP .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-v9Cn0LaJBP .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
}
.cid-v9Cn0LaJBP .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-v9Cn0LaJBP .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-v9Cn0LaJBP .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v9Cn0LaJBP .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-v9Cn0LaJBP .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-v9Cn0LaJBP .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-v9Cn0LaJBP .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-v9Cn0LaJBP .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #f99bc4;
  margin-left: 0.5rem;
}
.cid-v9Cn0LaJBP .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #f99bc4;
  font-weight: 900;
}
.cid-v9Cn0LaJBP .panel-group {
  border: none;
}
.cid-v9Cn0LaJBP .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-v9Cn0LaJBP .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v9Cn0LaJBP .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-v9Cn0LaJBP .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-v9Cn0LaJBP .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-v9Cn0LaJBP .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-v9Cn0LaJBP .panel-title-edit {
  color: #131313;
}
.cid-v9Cn0LaJBP .panel-body {
  padding: 0 0 20px;
}
.cid-v9Cn0LaJBP .panel-text {
  color: #131313;
  margin: 0;
}
.cid-v9Cn0Lv9oV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffd6ee;
}
.cid-v9Cn0Lv9oV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Cn0Lv9oV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Cn0Lv9oV .container-fluid {
  padding: 0 70px;
}
@media (max-width: 1440px) {
  .cid-v9Cn0Lv9oV .container-fluid {
    padding: 0 48px;
  }
}
@media (max-width: 992px) {
  .cid-v9Cn0Lv9oV .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-v9Cn0Lv9oV .container {
    padding: 0 20px;
  }
}
.cid-v9Cn0Lv9oV .row {
  justify-content: center;
}
.cid-v9Cn0Lv9oV .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #000000;
  margin-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-v9Cn0Lv9oV .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-v9Cn0Lv9oV .text-wrapper {
  margin-bottom: 136px;
}
@media (max-width: 992px) {
  .cid-v9Cn0Lv9oV .text-wrapper {
    margin-bottom: 30px;
  }
}
.cid-v9Cn0Lv9oV .text-wrapper .text-wrap .mbr-text {
  width: 50%;
  display: inline-flex;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .cid-v9Cn0Lv9oV .text-wrapper .text-wrap .mbr-text {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-v9Cn0Lv9oV .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-v9Cn0Lv9oV .nav-wrapper {
  margin-bottom: 136px;
}
@media (max-width: 992px) {
  .cid-v9Cn0Lv9oV .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-v9Cn0Lv9oV .nav-wrapper .mbr-list-title {
  margin-bottom: 24px;
}
.cid-v9Cn0Lv9oV .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v9Cn0Lv9oV .nav-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.cid-v9Cn0Lv9oV .nav-wrapper .list .item-wrap:hover,
.cid-v9Cn0Lv9oV .nav-wrapper .list .item-wrap:focus {
  color: #000000;
}
.cid-v9Cn0Lv9oV .mbr-copy {
  margin-bottom: 0;
  color: #000000;
}
.cid-v9Cn0Lv9oV .mbr-text {
  color: #000000;
}
.cid-v9Cn0Lv9oV .mbr-list-title {
  color: #000000;
}
.cid-v9Cn0Lv9oV .list {
  color: #9a9a9a;
}
.cid-v9Cn0Lv9oV .list,
.cid-v9Cn0Lv9oV .item-wrap,
.cid-v9Cn0Lv9oV .contacts-wrapper {
  color: #000000;
}
