.btn {
  border-width: 2px;
}
body {
  font-family: 'Bodoni Moda', serif;
}
.display-1 {
  font-family: 'Pacifico', handwriting;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'baloo2-bold';
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'poppins.extralight-italic';
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-7 {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.5rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 3.125rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 2rem;
  border-radius: 6px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ee8eb8 !important;
}
.bg-success {
  background-color: #ff9cb0 !important;
}
.bg-info {
  background-color: #d8a7b1 !important;
}
.bg-warning {
  background-color: #f8f5f0 !important;
}
.bg-danger {
  background-color: #fdfde1 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ee8eb8 !important;
  border-color: #ee8eb8 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #e34389 !important;
  border-color: #e34389 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #e34389 !important;
  border-color: #e34389 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #d8a7b1 !important;
  border-color: #d8a7b1 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #bd6b7c !important;
  border-color: #bd6b7c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #bd6b7c !important;
  border-color: #bd6b7c !important;
}
.btn-info,
.btn-info:active {
  background-color: #d8a7b1 !important;
  border-color: #d8a7b1 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #bd6b7c !important;
  border-color: #bd6b7c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #bd6b7c !important;
  border-color: #bd6b7c !important;
}
.btn-success,
.btn-success:active {
  background-color: #ff9cb0 !important;
  border-color: #ff9cb0 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #ff456b !important;
  border-color: #ff456b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #ff456b !important;
  border-color: #ff456b !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f8f5f0 !important;
  border-color: #f8f5f0 !important;
  color: #9f7f4a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #64502f !important;
  background-color: #dcceb5 !important;
  border-color: #dcceb5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #9f7f4a !important;
  background-color: #dcceb5 !important;
  border-color: #dcceb5 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #fdfde1 !important;
  border-color: #fdfde1 !important;
  color: #d1d10e !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #808009 !important;
  background-color: #f8f890 !important;
  border-color: #f8f890 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #d1d10e !important;
  background-color: #f8f890 !important;
  border-color: #f8f890 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #ee8eb8;
  color: #ee8eb8;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #e34389 !important;
  background-color: transparent!important;
  border-color: #e34389 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ee8eb8 !important;
  border-color: #ee8eb8 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #d8a7b1;
  color: #d8a7b1;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #bd6b7c !important;
  background-color: transparent!important;
  border-color: #bd6b7c !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #d8a7b1 !important;
  border-color: #d8a7b1 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #d8a7b1;
  color: #d8a7b1;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #bd6b7c !important;
  background-color: transparent!important;
  border-color: #bd6b7c !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #d8a7b1 !important;
  border-color: #d8a7b1 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #ff9cb0;
  color: #ff9cb0;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ff456b !important;
  background-color: transparent!important;
  border-color: #ff456b !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9cb0 !important;
  border-color: #ff9cb0 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #f8f5f0;
  color: #f8f5f0;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #dcceb5 !important;
  background-color: transparent!important;
  border-color: #dcceb5 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #9f7f4a !important;
  background-color: #f8f5f0 !important;
  border-color: #f8f5f0 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #fdfde1;
  color: #fdfde1;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #f8f890 !important;
  background-color: transparent!important;
  border-color: #f8f890 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #d1d10e !important;
  background-color: #fdfde1 !important;
  border-color: #fdfde1 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ee8eb8 !important;
}
.text-secondary {
  color: #d8a7b1 !important;
}
.text-success {
  color: #ff9cb0 !important;
}
.text-info {
  color: #d8a7b1 !important;
}
.text-warning {
  color: #f8f5f0 !important;
}
.text-danger {
  color: #fdfde1 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #e13580 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #b96072 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #ff365f !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #b96072 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #d8c7aa !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #f7f781 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
.nav-tabs .nav-link.active {
  color: #ee8eb8;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #d8a7b1;
}
.alert-warning {
  background-color: #f8f5f0;
}
.alert-danger {
  background-color: #fdfde1;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ee8eb8;
  border-color: #ee8eb8;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ee8eb8;
}
.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: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'poppins.extralight-italic';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ee8eb8 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'poppins.extralight-italic';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #ee8eb8;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ee8eb8;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ee8eb8;
}
.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: #ee8eb8;
  border-bottom-color: #ee8eb8;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ee8eb8 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #d8a7b1 !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='%23ee8eb8' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uOqahTf3Yr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
@media (max-width: 992px) {
  .cid-uOqahTf3Yr .container,
  .cid-uOqahTf3Yr .container-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: auto;
  }
  .cid-uOqahTf3Yr .container .navbar-collapse,
  .cid-uOqahTf3Yr .container-fluid .navbar-collapse {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uOqahTf3Yr {
    flex-wrap: wrap;
  }
  .cid-uOqahTf3Yr .navbar > .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  .cid-uOqahTf3Yr .opened .container {
    flex-wrap: wrap;
  }
}
.cid-uOqahTf3Yr .opened .container .navbar-collapse {
  width: 100%;
}
.cid-uOqahTf3Yr .btn {
  padding: 0.8rem 2rem;
}
.cid-uOqahTf3Yr .nav-link {
  position: relative;
  font-weight: 900;
}
.cid-uOqahTf3Yr .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  height: 3px;
  width: 0%;
  transition: all 0.3s;
  background: #d8a7b1;
}
.cid-uOqahTf3Yr .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-uOqahTf3Yr nav.navbar {
  position: fixed;
}
.cid-uOqahTf3Yr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOqahTf3Yr .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOqahTf3Yr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOqahTf3Yr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOqahTf3Yr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOqahTf3Yr .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uOqahTf3Yr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOqahTf3Yr .iconfont-wrapper {
  color: #8a35c5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOqahTf3Yr .dropdown-menu,
.cid-uOqahTf3Yr .navbar.opened {
  background: #ffffff !important;
}
.cid-uOqahTf3Yr .nav-item:focus,
.cid-uOqahTf3Yr .nav-link:focus {
  outline: none;
}
.cid-uOqahTf3Yr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOqahTf3Yr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOqahTf3Yr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOqahTf3Yr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOqahTf3Yr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOqahTf3Yr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOqahTf3Yr .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}
.cid-uOqahTf3Yr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uOqahTf3Yr .navbar.opened {
  transition: all 0.3s;
}
.cid-uOqahTf3Yr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOqahTf3Yr .navbar .navbar-logo img {
  width: auto;
}
.cid-uOqahTf3Yr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-uOqahTf3Yr .navbar.collapsed {
  justify-content: center;
}
.cid-uOqahTf3Yr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOqahTf3Yr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOqahTf3Yr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uOqahTf3Yr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOqahTf3Yr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOqahTf3Yr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uOqahTf3Yr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOqahTf3Yr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOqahTf3Yr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOqahTf3Yr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOqahTf3Yr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOqahTf3Yr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOqahTf3Yr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOqahTf3Yr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uOqahTf3Yr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOqahTf3Yr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOqahTf3Yr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOqahTf3Yr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOqahTf3Yr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOqahTf3Yr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOqahTf3Yr .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOqahTf3Yr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOqahTf3Yr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOqahTf3Yr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOqahTf3Yr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOqahTf3Yr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOqahTf3Yr .dropdown-item.active,
.cid-uOqahTf3Yr .dropdown-item:active {
  background-color: transparent;
}
.cid-uOqahTf3Yr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOqahTf3Yr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOqahTf3Yr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOqahTf3Yr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uOqahTf3Yr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOqahTf3Yr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOqahTf3Yr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOqahTf3Yr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOqahTf3Yr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOqahTf3Yr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #272523;
}
.cid-uOqahTf3Yr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOqahTf3Yr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOqahTf3Yr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOqahTf3Yr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOqahTf3Yr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOqahTf3Yr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOqahTf3Yr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOqahTf3Yr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOqahTf3Yr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOqahTf3Yr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOqahTf3Yr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOqahTf3Yr .navbar {
    height: 70px;
  }
  .cid-uOqahTf3Yr .navbar.opened {
    height: auto;
  }
  .cid-uOqahTf3Yr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uY1Di03nli {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/62e9d1f488e397ef1809bca1a6fbf9c6-564x691.jpg");
}
.cid-uY1Di03nli .mbr-iconfont {
  color: #d8a7b1 !important;
  font-size: 3.5rem !important;
}
.cid-uY1Di03nli .row {
  justify-content: center;
  padding-bottom: 5rem;
}
.cid-uY1Di03nli .link {
  margin: 0;
}
.cid-uY1Di03nli .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-uY1Di03nli .link a:after {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-uY1Di03nli h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-uY1Di03nli h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uY1Di03nli h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uY1Di03nli .btn {
  margin: 0.2rem !important;
}
.cid-uY1Di03nli .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY1Di03nli .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpFIpCdmh {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f8f5f0;
}
.cid-uOpFIpCdmh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpFIpCdmh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpFIpCdmh .row {
  justify-content: center;
}
.cid-uOpFIpCdmh .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  margin-bottom: 16px;
  background-image: linear-gradient(90deg, #ff5376, #d8a7b1 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uOpFIpCdmh .title-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uOpFIpCdmh .title-wrapper .title-wrapper {
    margin-bottom: 22px;
  }
}
.cid-uOpFIpCdmh .title-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uOpFIpCdmh .title-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
  background-image: linear-gradient(90deg, #ff5376, #d8a7b1 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uOpFIpCdmh .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uOpFIpCdmh .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uOpFIpCdmh .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uOpFIpCdmh .mbr-label,
.cid-uOpFIpCdmh .label-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uOpFIpCdmh .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uOpFIpCdmh .mbr-section-subtitle {
  color: #181818;
  text-align: center;
}
.cid-uOpFIpCdmh .mbr-text,
.cid-uOpFIpCdmh .text-wrapper {
  color: #181818;
  text-align: center;
}
.cid-uOpFIpCdmh .mbr-section-title,
.cid-uOpFIpCdmh .mbr-section-btn {
  text-align: center;
}
.cid-uY1P3funs5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f8f5f0;
}
.cid-uY1P3funs5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY1P3funs5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY1P3funs5 .row {
  justify-content: center;
}
.cid-uY1P3funs5 .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uY1P3funs5 .content-wrapper {
    margin-bottom: 10px;
  }
}
.cid-uY1P3funs5 .content-wrapper .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uY1P3funs5 .content-wrapper .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uY1P3funs5 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uY1P3funs5 .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uY1P3funs5 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uY1P3funs5 .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 30px;
    width: 100%;
  }
}
.cid-uY1P3funs5 .image-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uY1P3funs5 .image-wrapper {
    display: block;
  }
}
.cid-uY1P3funs5 .image-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 110%;
  border-radius: 100%;
  background-image: radial-gradient(#ff5376, transparent);
  filter: blur(100px);
}
.cid-uY1P3funs5 .image-wrapper .image-wrap {
  position: relative;
  z-index: 1;
}
.cid-uY1P3funs5 .image-wrapper .image-wrap img {
  width: 400px;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-uY1P3funs5 .image-wrapper .image-wrap img {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uY1P3funs5 .image-wrapper .image-wrap img {
    height: 350px;
    width: 100%;
  }
}
.cid-uY1P3funs5 .mbr-section-title {
  color: #cbff5b;
}
.cid-uY1P3funs5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uY1P3funs5 .mbr-text {
  color: #ffffff;
}
.cid-uY1P3funs5 .mbr-text,
.cid-uY1P3funs5 .mbr-section-btn,
.cid-uY1P3funs5 .text-wrapper {
  color: #181818;
}
.cid-uOpKehQ0tU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f8f5f0;
}
.cid-uOpKehQ0tU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpKehQ0tU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpKehQ0tU .row {
  justify-content: center;
}
.cid-uOpKehQ0tU .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  margin-bottom: 16px;
  background-image: linear-gradient(90deg, #ff5376, #d8a7b1 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uOpKehQ0tU .title-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uOpKehQ0tU .title-wrapper .title-wrapper {
    margin-bottom: 22px;
  }
}
.cid-uOpKehQ0tU .title-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uOpKehQ0tU .title-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
  background-image: linear-gradient(90deg, #ff5376, #d8a7b1 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uOpKehQ0tU .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uOpKehQ0tU .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uOpKehQ0tU .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uOpKehQ0tU .mbr-label,
.cid-uOpKehQ0tU .label-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uOpKehQ0tU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uOpKehQ0tU .mbr-section-subtitle {
  color: #181818;
  text-align: center;
}
.cid-uOpKehQ0tU .mbr-text,
.cid-uOpKehQ0tU .text-wrapper {
  color: #181818;
  text-align: center;
}
.cid-uOpKehQ0tU .mbr-section-title,
.cid-uOpKehQ0tU .mbr-section-btn {
  text-align: center;
}
.cid-uOpM3MN1Ac {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f8f5f0;
  z-index: 1;
}
.cid-uOpM3MN1Ac .card-box {
  padding: 0rem;
  height: 110px;
}
.cid-uOpM3MN1Ac .card {
  max-width: 100%;
}
.cid-uOpM3MN1Ac .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 110px;
}
.cid-uOpM3MN1Ac .wrapper {
  width: 100%;
  display: flex;
  padding: 0 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uOpM3MN1Ac .row {
  background: #f8f5f0;
  position: relative;
  z-index: 0;
  padding: 4rem 0;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .cid-uOpM3MN1Ac .row {
    margin: 0rem;
  }
}
.cid-uOpM3MN1Ac .card-wrapper {
  display: flex;
  flex-direction: column;
}
.cid-uOpM3MN1Ac .card-wrapper:before {
  content: '';
  width: 2rem;
  height: 2px;
  background: #000000;
  position: absolute;
  top: 50%;
  right: 0px;
  z-index: -1;
}
.cid-uOpM3MN1Ac .card-wrapper:after {
  content: '';
  width: 2rem;
  height: 2px;
  background: #000000;
  position: absolute;
  top: 50%;
  left: 0px;
  z-index: -1;
}
.cid-uOpM3MN1Ac .container-fluid {
  overflow: hidden;
}
.cid-uOpM3MN1Ac .order {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-uOpM3MN1Ac .order {
    flex-direction: column;
  }
}
.cid-uOpM3MN1Ac .card-title {
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .cid-uOpM3MN1Ac .col-lg-x {
    -ms-flex: 0 0 33.3%;
    flex: 0 0 33.3%;
    max-width: 33.3%;
  }
}
@media (min-width: 1600px) {
  .cid-uOpM3MN1Ac .col-lg-x {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (max-width: 1600px) {
  .cid-uOpM3MN1Ac .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-uOpM3MN1Ac .number-wrapper {
  position: relative;
  margin: 3rem auto;
  width: fit-content;
}
.cid-uOpM3MN1Ac .number-wrapper:before {
  content: '';
  width: 9999px;
  height: 2px;
  background: #000000;
  position: absolute;
  top: 50%;
  right: 30px;
  z-index: -1;
}
.cid-uOpM3MN1Ac .number-wrapper:after {
  content: '';
  width: 9999px;
  height: 2px;
  background: #000000;
  position: absolute;
  top: 50%;
  left: 30px;
  z-index: -1;
}
.cid-uOpM3MN1Ac .number-wrapper .icon-bg {
  position: absolute;
  overflow: visible;
  top: 3px;
  right: -3px;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.3s;
  z-index: -1;
  height: 100%;
  border-radius: 4px;
}
.cid-uOpM3MN1Ac .mbr-iconfont {
  font-size: 6rem;
  height: 100px;
}
.cid-uOpM3MN1Ac .icon1 {
  color: #d8a7b1;
}
.cid-uOpM3MN1Ac .icon2 {
  color: #d8a7b1;
}
.cid-uOpM3MN1Ac .icon3 {
  color: #d8a7b1;
}
.cid-uOpM3MN1Ac .icon4 {
  color: #d8a7b1;
}
.cid-uOpM3MN1Ac .icon5 {
  color: #72dfe9;
}
.cid-uOpM3MN1Ac .number1 {
  background: #d8a7b1;
}
.cid-uOpM3MN1Ac .number2 {
  background: #d8a7b1;
}
.cid-uOpM3MN1Ac .number3 {
  background: #d8a7b1;
}
.cid-uOpM3MN1Ac .number4 {
  background: #d8a7b1;
}
.cid-uOpM3MN1Ac .number5 {
  background: #72dfe9;
}
.cid-uOpM3MN1Ac .number {
  color: #000000;
  font-size: 0.8rem;
  font-weight: 600;
}
.cid-uOpM3MN1Ac .card-text {
  color: #616161;
}
.cid-uOpM3MN1Ac .iconfont-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 2px #000000 inset;
  border-radius: 4px;
  min-width: 20px;
  width: 20px;
  align-items: center;
  display: flex;
  height: 20px;
  justify-content: center;
  transition: all 0.3s;
}
.cid-uOpM3MN1Ac .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpM3MN1Ac .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY1EFNYCf3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f8f5f0;
}
.cid-uY1EFNYCf3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY1EFNYCf3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY1EFNYCf3 .row {
  justify-content: center;
}
.cid-uY1EFNYCf3 .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  margin-bottom: 16px;
  background-image: linear-gradient(90deg, #ff5376, #d8a7b1 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uY1EFNYCf3 .title-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uY1EFNYCf3 .title-wrapper .title-wrapper {
    margin-bottom: 22px;
  }
}
.cid-uY1EFNYCf3 .title-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uY1EFNYCf3 .title-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
  background-image: linear-gradient(90deg, #ff5376, #d8a7b1 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uY1EFNYCf3 .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uY1EFNYCf3 .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uY1EFNYCf3 .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uY1EFNYCf3 .mbr-label,
.cid-uY1EFNYCf3 .label-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uY1EFNYCf3 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uY1EFNYCf3 .mbr-section-subtitle {
  color: #181818;
  text-align: center;
}
.cid-uY1EFNYCf3 .mbr-text,
.cid-uY1EFNYCf3 .text-wrapper {
  color: #181818;
  text-align: center;
}
.cid-uY1EFNYCf3 .mbr-section-title,
.cid-uY1EFNYCf3 .mbr-section-btn {
  text-align: center;
}
.cid-uY1DPUd7qr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f5f0;
}
.cid-uY1DPUd7qr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY1DPUd7qr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY1DPUd7qr .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-uY1DPUd7qr .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uY1DPUd7qr .container {
    padding: 0 26px;
  }
}
.cid-uY1DPUd7qr .row {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uY1DPUd7qr .row {
    margin: 0 -12px;
  }
}
.cid-uY1DPUd7qr .card {
  position: relative;
  padding: 0 50px 0 0;
  justify-content: center;
  border-radius: 0;
}
.cid-uY1DPUd7qr .card:first-child {
  border-right: 1px solid #ffb3b3;
}
@media (max-width: 992px) {
  .cid-uY1DPUd7qr .card:first-child {
    border: none;
  }
}
.cid-uY1DPUd7qr .card:first-child::before {
  content: '';
  position: absolute;
  right: -8px;
  width: 15px;
  height: 15px;
  background-color: #ffb3b3;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .cid-uY1DPUd7qr .card:first-child::before {
    display: none;
  }
}
.cid-uY1DPUd7qr .card:last-child {
  padding: 0 0 0 50px;
}
@media (max-width: 992px) {
  .cid-uY1DPUd7qr .card:last-child {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-uY1DPUd7qr .card {
    padding: 0 12px;
  }
}
.cid-uY1DPUd7qr .image-wrapper {
  padding: 40px 0;
}
@media (max-width: 992px) {
  .cid-uY1DPUd7qr .image-wrapper {
    padding: 0 0 40px 0;
  }
}
.cid-uY1DPUd7qr .image-wrapper img {
  height: 420px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uY1DPUd7qr .image-wrapper img {
    height: 300px;
  }
}
.cid-uY1DPUd7qr .title-wrapper .title-wrap {
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-uY1DPUd7qr .title-wrapper .title-wrap {
    padding: 0;
  }
}
.cid-uY1DPUd7qr .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 18px;
}
.cid-uY1DPUd7qr .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uY1DPUd7qr .mbr-section-title {
  color: #d8a7b1;
  text-align: center;
}
.cid-uY1DPUd7qr .mbr-text {
  color: #181818;
}
.cid-uY1EQbCoHd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f8f5f0;
}
.cid-uY1EQbCoHd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY1EQbCoHd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY1EQbCoHd .row {
  justify-content: center;
}
.cid-uY1EQbCoHd .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  margin-bottom: 16px;
  background-image: linear-gradient(90deg, #ff5376, #d8a7b1 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uY1EQbCoHd .title-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uY1EQbCoHd .title-wrapper .title-wrapper {
    margin-bottom: 22px;
  }
}
.cid-uY1EQbCoHd .title-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uY1EQbCoHd .title-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
  background-image: linear-gradient(90deg, #ff5376, #d8a7b1 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uY1EQbCoHd .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uY1EQbCoHd .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uY1EQbCoHd .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uY1EQbCoHd .mbr-label,
.cid-uY1EQbCoHd .label-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uY1EQbCoHd .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uY1EQbCoHd .mbr-section-subtitle {
  color: #181818;
  text-align: center;
}
.cid-uY1EQbCoHd .mbr-text,
.cid-uY1EQbCoHd .text-wrapper {
  color: #181818;
  text-align: center;
}
.cid-uY1EQbCoHd .mbr-section-title,
.cid-uY1EQbCoHd .mbr-section-btn {
  text-align: center;
}
.cid-uY1EB8sUYj {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1358.jpg");
}
.cid-uY1EB8sUYj .carousel-control {
  background: #000;
}
.cid-uY1EB8sUYj .mbr-section-subtitle {
  color: #cccccc;
}
.cid-uY1EB8sUYj .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uY1EB8sUYj .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-uY1EB8sUYj .carousel-item .wrap-img {
  text-align: center;
}
.cid-uY1EB8sUYj .carousel-item .wrap-img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-uY1EB8sUYj .carousel-controls {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uY1EB8sUYj .carousel-controls .carousel-control {
  background: #000;
  border-radius: 50%;
  position: static;
  width: 40px;
  height: 40px;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-uY1EB8sUYj .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-uY1EB8sUYj .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-uY1EB8sUYj .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-uY1EB8sUYj .cloneditem-1,
.cid-uY1EB8sUYj .cloneditem-2,
.cid-uY1EB8sUYj .cloneditem-3,
.cid-uY1EB8sUYj .cloneditem-4,
.cid-uY1EB8sUYj .cloneditem-5 {
  display: none;
}
.cid-uY1EB8sUYj .col-lg-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uY1EB8sUYj .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-uY1EB8sUYj .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-uY1EB8sUYj .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-uY1EB8sUYj .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-uY1EB8sUYj .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-uY1EB8sUYj .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-uY1EB8sUYj .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-uY1EB8sUYj .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-uY1EB8sUYj .carousel-inner.slides2 .cloneditem-1,
  .cid-uY1EB8sUYj .carousel-inner.slides2 .cloneditem-2,
  .cid-uY1EB8sUYj .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-uY1EB8sUYj .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-uY1EB8sUYj .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-uY1EB8sUYj .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-uY1EB8sUYj .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-uY1EB8sUYj .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-uY1EB8sUYj .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-uY1EB8sUYj .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-uY1EB8sUYj .carousel-inner.slides3 .cloneditem-1,
  .cid-uY1EB8sUYj .carousel-inner.slides3 .cloneditem-2,
  .cid-uY1EB8sUYj .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-uY1EB8sUYj .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-uY1EB8sUYj .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-uY1EB8sUYj .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-uY1EB8sUYj .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-uY1EB8sUYj .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-uY1EB8sUYj .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-uY1EB8sUYj .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-uY1EB8sUYj .carousel-inner.slides4 .cloneditem-1,
  .cid-uY1EB8sUYj .carousel-inner.slides4 .cloneditem-2,
  .cid-uY1EB8sUYj .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-uY1EB8sUYj .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-uY1EB8sUYj .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-uY1EB8sUYj .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-uY1EB8sUYj .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-uY1EB8sUYj .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-uY1EB8sUYj .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-uY1EB8sUYj .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-uY1EB8sUYj .carousel-inner.slides5 .cloneditem-1,
  .cid-uY1EB8sUYj .carousel-inner.slides5 .cloneditem-2,
  .cid-uY1EB8sUYj .carousel-inner.slides5 .cloneditem-3,
  .cid-uY1EB8sUYj .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-uY1EB8sUYj .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-uY1EB8sUYj .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-uY1EB8sUYj .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-uY1EB8sUYj .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-uY1EB8sUYj .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-uY1EB8sUYj .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-uY1EB8sUYj .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-uY1EB8sUYj .carousel-inner.slides6 .cloneditem-1,
  .cid-uY1EB8sUYj .carousel-inner.slides6 .cloneditem-2,
  .cid-uY1EB8sUYj .carousel-inner.slides6 .cloneditem-3,
  .cid-uY1EB8sUYj .carousel-inner.slides6 .cloneditem-4,
  .cid-uY1EB8sUYj .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-uY1EB8sUYj H2 {
  color: #ffffff;
}
.cid-uY1OcuZopX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f5f0;
}
.cid-uY1OcuZopX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY1OcuZopX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY1OcuZopX .row {
  justify-content: center;
}
.cid-uY1OcuZopX .mbr-section-title {
  margin-bottom: 0;
  color: #8e73fe;
}
.cid-uY1OcuZopX .card-wrapper {
  position: relative;
  padding: 64px;
  overflow: hidden;
  margin-top: -1.6rem;
}
@media (max-width: 1440px) {
  .cid-uY1OcuZopX .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uY1OcuZopX .card-wrapper {
    padding: 24px;
    margin-top: 24px;
  }
}
.cid-uY1OcuZopX .card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  pointer-events: none;
}
.cid-uY1OcuZopX .card-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d8a7b1;
  opacity: .5;
  pointer-events: none;
}
.cid-uY1OcuZopX .card-wrapper .mbr-section-subtitle {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uY1OcuZopX .card-wrapper .mbr-section-subtitle {
    margin-bottom: 24px;
  }
}
.cid-uY1OcuZopX .card-wrapper .text-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uY1OcuZopX .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uY1OcuZopX .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uY1OcuZopX .card-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uY1OcuZopX .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uY1OcuZopX .mbr-section-subtitle {
  color: #2c2c26;
  text-align: center;
}
.cid-uY1OcuZopX .mbr-text,
.cid-uY1OcuZopX .text-wrapper {
  color: #181818;
  text-align: center;
}
.cid-uY1OcuZopX .mbr-section-title,
.cid-uY1OcuZopX .mbr-section-btn {
  text-align: center;
  color: #d8a7b1;
}
.cid-udDc3pdyYq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f8f5f0;
}
.cid-udDc3pdyYq .mbr-fallback-image.disabled {
  display: none;
}
.cid-udDc3pdyYq .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-udDc3pdyYq .container {
    padding: 0 30px;
  }
}
.cid-udDc3pdyYq .row {
  padding-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-udDc3pdyYq .row {
    padding-bottom: 50px;
  }
}
.cid-udDc3pdyYq .row .border-wrap {
  background-color: #d8a7b1;
  height: 2px;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-udDc3pdyYq .row .border-wrap {
    margin-bottom: 50px;
  }
}
.cid-udDc3pdyYq .card {
  justify-content: center;
}
.cid-udDc3pdyYq .title-wrapper {
  margin-bottom: 20px;
}
.cid-udDc3pdyYq .title-wrapper .title-wrap {
  display: inline-flex;
}
.cid-udDc3pdyYq .title-wrapper .title-wrap img {
  object-fit: cover;
  width: 45px;
  height: 45px;
  margin-right: 10px;
}
.cid-udDc3pdyYq .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-udDc3pdyYq .nav-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cid-udDc3pdyYq .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-udDc3pdyYq .nav-wrapper .list .item-wrap {
  position: relative;
  margin: 0 50px 10px 0;
  cursor: pointer;
}
.cid-udDc3pdyYq .nav-wrapper .list .item-wrap:hover::before,
.cid-udDc3pdyYq .nav-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-udDc3pdyYq .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #181818;
  transition: all .3s ease;
}
.cid-udDc3pdyYq .mbr-copy {
  margin-bottom: 0;
  color: #000000;
}
.cid-udDc3pdyYq .mbr-section-title {
  color: #144031;
}
.cid-udDc3pdyYq .list {
  color: #144031;
}
.cid-udDc3pdyYq .list,
.cid-udDc3pdyYq .item-wrap {
  color: #ff9cb0;
}
.cid-uOqahTf3Yr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
@media (max-width: 992px) {
  .cid-uOqahTf3Yr .container,
  .cid-uOqahTf3Yr .container-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: auto;
  }
  .cid-uOqahTf3Yr .container .navbar-collapse,
  .cid-uOqahTf3Yr .container-fluid .navbar-collapse {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uOqahTf3Yr {
    flex-wrap: wrap;
  }
  .cid-uOqahTf3Yr .navbar > .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  .cid-uOqahTf3Yr .opened .container {
    flex-wrap: wrap;
  }
}
.cid-uOqahTf3Yr .opened .container .navbar-collapse {
  width: 100%;
}
.cid-uOqahTf3Yr .btn {
  padding: 0.8rem 2rem;
}
.cid-uOqahTf3Yr .nav-link {
  position: relative;
  font-weight: 900;
}
.cid-uOqahTf3Yr .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  height: 3px;
  width: 0%;
  transition: all 0.3s;
  background: #d8a7b1;
}
.cid-uOqahTf3Yr .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-uOqahTf3Yr nav.navbar {
  position: fixed;
}
.cid-uOqahTf3Yr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOqahTf3Yr .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOqahTf3Yr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOqahTf3Yr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOqahTf3Yr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOqahTf3Yr .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uOqahTf3Yr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOqahTf3Yr .iconfont-wrapper {
  color: #8a35c5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOqahTf3Yr .dropdown-menu,
.cid-uOqahTf3Yr .navbar.opened {
  background: #ffffff !important;
}
.cid-uOqahTf3Yr .nav-item:focus,
.cid-uOqahTf3Yr .nav-link:focus {
  outline: none;
}
.cid-uOqahTf3Yr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOqahTf3Yr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOqahTf3Yr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOqahTf3Yr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOqahTf3Yr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOqahTf3Yr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOqahTf3Yr .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}
.cid-uOqahTf3Yr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uOqahTf3Yr .navbar.opened {
  transition: all 0.3s;
}
.cid-uOqahTf3Yr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOqahTf3Yr .navbar .navbar-logo img {
  width: auto;
}
.cid-uOqahTf3Yr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-uOqahTf3Yr .navbar.collapsed {
  justify-content: center;
}
.cid-uOqahTf3Yr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOqahTf3Yr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOqahTf3Yr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uOqahTf3Yr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOqahTf3Yr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOqahTf3Yr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uOqahTf3Yr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOqahTf3Yr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOqahTf3Yr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOqahTf3Yr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOqahTf3Yr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOqahTf3Yr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOqahTf3Yr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOqahTf3Yr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uOqahTf3Yr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOqahTf3Yr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOqahTf3Yr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOqahTf3Yr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOqahTf3Yr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOqahTf3Yr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOqahTf3Yr .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOqahTf3Yr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOqahTf3Yr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOqahTf3Yr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOqahTf3Yr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOqahTf3Yr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOqahTf3Yr .dropdown-item.active,
.cid-uOqahTf3Yr .dropdown-item:active {
  background-color: transparent;
}
.cid-uOqahTf3Yr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOqahTf3Yr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOqahTf3Yr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOqahTf3Yr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uOqahTf3Yr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOqahTf3Yr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOqahTf3Yr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOqahTf3Yr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOqahTf3Yr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOqahTf3Yr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #272523;
}
.cid-uOqahTf3Yr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOqahTf3Yr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOqahTf3Yr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOqahTf3Yr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOqahTf3Yr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOqahTf3Yr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOqahTf3Yr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOqahTf3Yr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOqahTf3Yr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOqahTf3Yr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOqahTf3Yr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOqahTf3Yr .navbar {
    height: 70px;
  }
  .cid-uOqahTf3Yr .navbar.opened {
    height: auto;
  }
  .cid-uOqahTf3Yr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOpXVxAikr .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uOpXVxAikr .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uOpXVxAikr .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uOpXVxAikr .mbr-section-title {
  color: #ffffff;
}
.cid-uOpXVxAikr .mbr-text,
.cid-uOpXVxAikr .mbr-section-btn {
  color: #ffffff;
}
.cid-uOq2S6fnic {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f8f5f0;
}
.cid-uOq2S6fnic .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOq2S6fnic .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOq2S6fnic .row {
  justify-content: center;
}
.cid-uOq2S6fnic .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  margin-bottom: 16px;
  background-image: linear-gradient(90deg, #ff5376, #d8a7b1 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uOq2S6fnic .title-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uOq2S6fnic .title-wrapper .title-wrapper {
    margin-bottom: 22px;
  }
}
.cid-uOq2S6fnic .title-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uOq2S6fnic .title-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
  background-image: linear-gradient(90deg, #ff5376, #d8a7b1 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uOq2S6fnic .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uOq2S6fnic .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uOq2S6fnic .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uOq2S6fnic .mbr-label,
.cid-uOq2S6fnic .label-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uOq2S6fnic .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uOq2S6fnic .mbr-section-subtitle {
  color: #181818;
  text-align: center;
}
.cid-uOq2S6fnic .mbr-text,
.cid-uOq2S6fnic .text-wrapper {
  color: #181818;
  text-align: center;
}
.cid-uOq2S6fnic .mbr-section-title,
.cid-uOq2S6fnic .mbr-section-btn {
  text-align: center;
}
.cid-uOq38eBNGB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f8f5f0;
}
.cid-uOq38eBNGB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOq38eBNGB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOq38eBNGB .content-wrapper .mbr-name {
  margin-bottom: 32px;
}
.cid-uOq38eBNGB .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uOq38eBNGB .mbr-name {
  color: #858585;
}
.cid-uOq38eBNGB .mbr-text {
  color: #191c25;
  text-align: center;
}
.cid-uOq38eBNGB .mbr-section-btn {
  text-align: center;
}
.cid-uOq38eBNGB .mbr-name,
.cid-uOq38eBNGB .mbr-section-btn {
  text-align: center;
}
.cid-uY1ME4L3C0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f5f0;
}
.cid-uY1ME4L3C0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY1ME4L3C0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY1ME4L3C0 .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uY1ME4L3C0 .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uY1ME4L3C0 .title-wrapper .mbr-label {
  margin-bottom: 24px;
  text-transform: uppercase;
}
.cid-uY1ME4L3C0 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uY1ME4L3C0 .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uY1ME4L3C0 .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uY1ME4L3C0 .content-wrapper {
  padding: 12px;
  border: 1px solid #945c67;
  background-color: #f8f5f0;
  box-shadow: 0 .25rem .375rem #00000014;
}
@media (max-width: 992px) {
  .cid-uY1ME4L3C0 .content-wrapper {
    padding: 6px;
  }
}
.cid-uY1ME4L3C0 .content-wrapper .form-wrap {
  position: relative;
  background-color: #f8f5f0;
  border: 1px solid #945c67;
  overflow: hidden;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-uY1ME4L3C0 .content-wrapper .form-wrap {
    padding: 16px;
  }
}
.cid-uY1ME4L3C0 .content-wrapper .form-wrap .gradient-wrap {
  background-color: #d8a7b1;
  filter: blur(4rem);
  border-radius: 50vw;
  width: 12rem;
  height: 12rem;
  position: absolute;
  top: -6rem;
  right: -6rem;
}
.cid-uY1ME4L3C0 .content-wrapper .form-wrap .dragArea.row {
  position: relative;
  z-index: 1;
  margin: 0 -9.6px;
}
.cid-uY1ME4L3C0 .content-wrapper .form-wrap .dragArea.row .form-group {
  margin-bottom: 0 !important;
}
.cid-uY1ME4L3C0 .content-wrapper .form-wrap .dragArea.row .form-group .form-control-label {
  margin-bottom: 8px;
}
.cid-uY1ME4L3C0 .content-wrapper .form-wrap .dragArea.row .form-group .form-control {
  padding: 6px 24px;
  background-color: #f8f5f0;
  border: 6px solid #ffffff !important;
  box-shadow: 0 0 0 1px #945c67;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uY1ME4L3C0 .content-wrapper .form-wrap .dragArea.row .form-group .form-control {
    margin-bottom: 16px;
  }
}
.cid-uY1ME4L3C0 .content-wrapper .form-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #181818;
  text-transform: uppercase;
}
.cid-uY1ME4L3C0 .content-wrapper .form-wrap .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uY1ME4L3C0 .content-wrapper .form-wrap .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-uY1ME4L3C0 .content-wrapper .form-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: #945c67;
  border-color: #945c67;
}
.cid-uY1ME4L3C0 .content-wrapper .form-wrap .dragArea.row .mbr-section-btn {
  width: 100%;
  padding-right: 0;
}
.cid-uY1ME4L3C0 .content-wrapper .form-wrap .dragArea.row .mbr-section-btn .btn {
  margin-bottom: 0;
  margin-right: 0;
}
.cid-uY1ME4L3C0 .mbr-label {
  color: #49496d;
  text-align: center;
}
.cid-uY1ME4L3C0 .mbr-section-title {
  color: #181824;
  text-align: center;
}
.cid-uY1ME4L3C0 .mbr-text,
.cid-uY1ME4L3C0 .text-wrapper {
  color: #54547e;
  text-align: center;
}
.cid-uY1ME4L3C0 label {
  text-transform: uppercase;
  color: #49496d;
}
.cid-uY1ME4L3C0 .mbr-section-title,
.cid-uY1ME4L3C0 .mbr-section-btn {
  text-align: center;
}
.cid-uY1Ntt6YxW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f5f0;
}
.cid-uY1Ntt6YxW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY1Ntt6YxW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY1Ntt6YxW .content-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uY1Ntt6YxW .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uY1Ntt6YxW .content-wrapper .mbr-label {
  margin-bottom: 32px;
}
.cid-uY1Ntt6YxW .content-wrapper .title-wrapper {
  margin-bottom: 16px;
}
.cid-uY1Ntt6YxW .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uY1Ntt6YxW .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uY1Ntt6YxW .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uY1Ntt6YxW .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uY1Ntt6YxW .google-map iframe {
  height: 600px;
  filter: hue-rotate(45deg);
}
@media (max-width: 992px) {
  .cid-uY1Ntt6YxW .google-map iframe {
    height: 350px;
  }
}
.cid-uY1Ntt6YxW .mbr-label {
  color: #a6adbf;
  text-align: center;
}
.cid-uY1Ntt6YxW .mbr-section-title {
  color: #111111;
  text-align: center;
}
.cid-uY1Ntt6YxW .mbr-section-subtitle {
  color: #ff6d99;
  text-align: center;
}
.cid-uY1Ntt6YxW .mbr-text,
.cid-uY1Ntt6YxW .text-wrapper {
  color: #666666;
  text-align: center;
}
.cid-udDc3pdyYq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f8f5f0;
}
.cid-udDc3pdyYq .mbr-fallback-image.disabled {
  display: none;
}
.cid-udDc3pdyYq .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-udDc3pdyYq .container {
    padding: 0 30px;
  }
}
.cid-udDc3pdyYq .row {
  padding-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-udDc3pdyYq .row {
    padding-bottom: 50px;
  }
}
.cid-udDc3pdyYq .row .border-wrap {
  background-color: #d8a7b1;
  height: 2px;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-udDc3pdyYq .row .border-wrap {
    margin-bottom: 50px;
  }
}
.cid-udDc3pdyYq .card {
  justify-content: center;
}
.cid-udDc3pdyYq .title-wrapper {
  margin-bottom: 20px;
}
.cid-udDc3pdyYq .title-wrapper .title-wrap {
  display: inline-flex;
}
.cid-udDc3pdyYq .title-wrapper .title-wrap img {
  object-fit: cover;
  width: 45px;
  height: 45px;
  margin-right: 10px;
}
.cid-udDc3pdyYq .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-udDc3pdyYq .nav-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cid-udDc3pdyYq .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-udDc3pdyYq .nav-wrapper .list .item-wrap {
  position: relative;
  margin: 0 50px 10px 0;
  cursor: pointer;
}
.cid-udDc3pdyYq .nav-wrapper .list .item-wrap:hover::before,
.cid-udDc3pdyYq .nav-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-udDc3pdyYq .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #181818;
  transition: all .3s ease;
}
.cid-udDc3pdyYq .mbr-copy {
  margin-bottom: 0;
  color: #000000;
}
.cid-udDc3pdyYq .mbr-section-title {
  color: #144031;
}
.cid-udDc3pdyYq .list {
  color: #144031;
}
.cid-udDc3pdyYq .list,
.cid-udDc3pdyYq .item-wrap {
  color: #ff9cb0;
}
.cid-uOqahTf3Yr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
@media (max-width: 992px) {
  .cid-uOqahTf3Yr .container,
  .cid-uOqahTf3Yr .container-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: auto;
  }
  .cid-uOqahTf3Yr .container .navbar-collapse,
  .cid-uOqahTf3Yr .container-fluid .navbar-collapse {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uOqahTf3Yr {
    flex-wrap: wrap;
  }
  .cid-uOqahTf3Yr .navbar > .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  .cid-uOqahTf3Yr .opened .container {
    flex-wrap: wrap;
  }
}
.cid-uOqahTf3Yr .opened .container .navbar-collapse {
  width: 100%;
}
.cid-uOqahTf3Yr .btn {
  padding: 0.8rem 2rem;
}
.cid-uOqahTf3Yr .nav-link {
  position: relative;
  font-weight: 900;
}
.cid-uOqahTf3Yr .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  height: 3px;
  width: 0%;
  transition: all 0.3s;
  background: #d8a7b1;
}
.cid-uOqahTf3Yr .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-uOqahTf3Yr nav.navbar {
  position: fixed;
}
.cid-uOqahTf3Yr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOqahTf3Yr .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOqahTf3Yr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOqahTf3Yr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOqahTf3Yr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOqahTf3Yr .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uOqahTf3Yr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOqahTf3Yr .iconfont-wrapper {
  color: #8a35c5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOqahTf3Yr .dropdown-menu,
.cid-uOqahTf3Yr .navbar.opened {
  background: #ffffff !important;
}
.cid-uOqahTf3Yr .nav-item:focus,
.cid-uOqahTf3Yr .nav-link:focus {
  outline: none;
}
.cid-uOqahTf3Yr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOqahTf3Yr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOqahTf3Yr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOqahTf3Yr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOqahTf3Yr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOqahTf3Yr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOqahTf3Yr .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}
.cid-uOqahTf3Yr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uOqahTf3Yr .navbar.opened {
  transition: all 0.3s;
}
.cid-uOqahTf3Yr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOqahTf3Yr .navbar .navbar-logo img {
  width: auto;
}
.cid-uOqahTf3Yr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-uOqahTf3Yr .navbar.collapsed {
  justify-content: center;
}
.cid-uOqahTf3Yr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOqahTf3Yr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOqahTf3Yr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uOqahTf3Yr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOqahTf3Yr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOqahTf3Yr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uOqahTf3Yr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOqahTf3Yr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOqahTf3Yr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOqahTf3Yr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOqahTf3Yr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOqahTf3Yr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOqahTf3Yr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOqahTf3Yr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uOqahTf3Yr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOqahTf3Yr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOqahTf3Yr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOqahTf3Yr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOqahTf3Yr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOqahTf3Yr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOqahTf3Yr .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOqahTf3Yr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOqahTf3Yr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOqahTf3Yr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOqahTf3Yr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOqahTf3Yr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOqahTf3Yr .dropdown-item.active,
.cid-uOqahTf3Yr .dropdown-item:active {
  background-color: transparent;
}
.cid-uOqahTf3Yr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOqahTf3Yr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOqahTf3Yr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOqahTf3Yr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uOqahTf3Yr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOqahTf3Yr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOqahTf3Yr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOqahTf3Yr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOqahTf3Yr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOqahTf3Yr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #272523;
}
.cid-uOqahTf3Yr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOqahTf3Yr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOqahTf3Yr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOqahTf3Yr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOqahTf3Yr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOqahTf3Yr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOqahTf3Yr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOqahTf3Yr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOqahTf3Yr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOqahTf3Yr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOqahTf3Yr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOqahTf3Yr .navbar {
    height: 70px;
  }
  .cid-uOqahTf3Yr .navbar.opened {
    height: auto;
  }
  .cid-uOqahTf3Yr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYsRMWZi08 {
  overflow: hidden !important;
  background-image: url("../../../assets/images/d254610a1e03f3b21035312f61fad685.jpg-896x1344.jpeg");
}
.cid-sYsRMWZi08 .container-fluid {
  padding: 0 5rem;
}
.cid-sYsRMWZi08 .animated-element {
  color: #ab6b78;
}
.cid-sYsRMWZi08 .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-sYsRMWZi08 .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sYsRMWZi08 .container-fluid {
    padding: 0 1rem;
  }
  .cid-sYsRMWZi08 .mbr-figure {
    margin-top: 1rem;
  }
}
.cid-sYsRMWZi08 .mbr-section-subtitle,
.cid-sYsRMWZi08 .mbr-section-btn {
  text-align: left;
}
.cid-sYsRMWZi08 .mbr-section-title {
  text-align: left;
}
.cid-udD8UfQJOq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f8f5f0;
}
.cid-udD8UfQJOq .section-head {
  margin-bottom: 2rem;
}
.cid-udD8UfQJOq .mbr-section-title {
  text-align: right;
  margin-bottom: 1.5rem;
}
.cid-udD8UfQJOq .mbr-section-subtitle {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-udD8UfQJOq .row {
    text-align: center;
  }
}
.cid-udD8UfQJOq .wave-container {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: -1px;
  overflow: hidden;
}
.cid-udD8UfQJOq .wave-container .wave {
  width: 5500px;
  position: relative;
  left: -3300px;
}
.cid-udD8UfQJOq .wave-container .wave svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: wavy 35s infinite linear;
  backface-visibility: hidden;
}
.cid-udD8UfQJOq .wave-container .wave svg path {
  fill: #f8f5f0;
}
@keyframes wavy {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
    animation-timing-function: linear;
  }
  100% {
    opacity: 1;
    transform: translateX(3230px) translateY(0px) rotate(0deg) scale(1, 1);
  }
}
.cid-sYsX0hXKHA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f8f5f0;
}
.cid-sYsX0hXKHA .row {
  align-items: center;
  justify-content: space-between;
}
.cid-sYsX0hXKHA .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #050403;
}
.cid-sYsX0hXKHA .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-sYsX0hXKHA .mbr-text {
  color: #8c8c95;
  margin-bottom: 36px;
}
.cid-sYsX0hXKHA .right-side {
  max-width: 554px;
}
.cid-sYsX0hXKHA .rs {
  margin-right: 60px;
}
.cid-sYsX0hXKHA .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-sYsX0hXKHA .margin {
  margin-right: 14px;
}
.cid-sYsX0hXKHA .gray {
  padding: 45px 0;
  background-color: #f8f5f0;
}
.cid-sYsX0hXKHA img {
  position: relative;
  right: 40px;
}
@media (max-width: 767px) {
  .cid-sYsX0hXKHA .gray {
    padding: 0px 0 5px;
  }
  .cid-sYsX0hXKHA img {
    right: initial;
    width: 90%;
    margin: auto;
    top: -35px;
  }
  .cid-sYsX0hXKHA .col-md-5 {
    padding-top: 90px;
  }
}
@media (max-width: 430px) {
  .cid-sYsX0hXKHA .b {
    margin-bottom: 10px;
  }
}
.cid-sYsX0hXKHA .btn {
  margin-top: 20px;
}
.cid-sYsX0hXKHA a.btn > span {
  margin-left: 0.5rem;
}
.cid-sYsX0hXKHA .mbr-text,
.cid-sYsX0hXKHA .button-align {
  color: #050403;
  text-align: center;
}
.cid-uY1Iffh3Rh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f8f5f0;
}
.cid-uY1Iffh3Rh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY1Iffh3Rh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY1Iffh3Rh .row {
  justify-content: center;
}
.cid-uY1Iffh3Rh .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  margin-bottom: 16px;
  background-image: linear-gradient(90deg, #ff5376, #d8a7b1 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uY1Iffh3Rh .title-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uY1Iffh3Rh .title-wrapper .title-wrapper {
    margin-bottom: 22px;
  }
}
.cid-uY1Iffh3Rh .title-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uY1Iffh3Rh .title-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
  background-image: linear-gradient(90deg, #ff5376, #d8a7b1 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uY1Iffh3Rh .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uY1Iffh3Rh .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uY1Iffh3Rh .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uY1Iffh3Rh .mbr-label,
.cid-uY1Iffh3Rh .label-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uY1Iffh3Rh .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uY1Iffh3Rh .mbr-section-subtitle {
  color: #181818;
  text-align: center;
}
.cid-uY1Iffh3Rh .mbr-text,
.cid-uY1Iffh3Rh .text-wrapper {
  color: #181818;
  text-align: center;
}
.cid-uY1Iffh3Rh .mbr-section-title,
.cid-uY1Iffh3Rh .mbr-section-btn {
  text-align: center;
}
.cid-uOpViiiis5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f5f0;
}
.cid-uOpViiiis5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpViiiis5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOpViiiis5 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uOpViiiis5 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uOpViiiis5 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uOpViiiis5 .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uOpViiiis5 .container {
    padding: 0 16px;
  }
}
.cid-uOpViiiis5 .row {
  justify-content: center;
}
.cid-uOpViiiis5 .title-wrapper {
  margin-bottom: 50px;
}
.cid-uOpViiiis5 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-uOpViiiis5 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uOpViiiis5 .cards-wrapper .item {
  padding: 50px 40px;
  background-color: #d8a7b1;
  border-radius: 1rem !important;
  margin-top: -7.5rem;
  width: 46%;
}
.cid-uOpViiiis5 .cards-wrapper .item:first-child {
  margin-top: 0;
}
.cid-uOpViiiis5 .cards-wrapper .item:nth-child(2n) {
  margin-left: auto;
}
@media (max-width: 992px) {
  .cid-uOpViiiis5 .cards-wrapper .item:nth-child(2n) {
    margin-left: 0;
  }
}
@media (max-width: 1440px) {
  .cid-uOpViiiis5 .cards-wrapper .item {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .cid-uOpViiiis5 .cards-wrapper .item {
    margin-top: 0;
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-uOpViiiis5 .cards-wrapper .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 50px;
}
.cid-uOpViiiis5 .cards-wrapper .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  color: #000000;
  display: inline-flex;
}
.cid-uOpViiiis5 .cards-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 16px;
}
.cid-uOpViiiis5 .cards-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 16px;
}
.cid-uOpViiiis5 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uOpViiiis5 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uOpViiiis5 .card-title {
  color: #000000;
}
.cid-uOpViiiis5 .card-text {
  color: #000000;
}
.cid-uOpViiiis5 .card-title,
.cid-uOpViiiis5 .icon-wrapper,
.cid-uOpViiiis5 .link-wrapper {
  text-align: center;
}
.cid-uY1IvBKlkf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f8f5f0;
}
.cid-uY1IvBKlkf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY1IvBKlkf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY1IvBKlkf .row {
  justify-content: center;
}
.cid-uY1IvBKlkf .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  margin-bottom: 16px;
  background-image: linear-gradient(90deg, #ff5376, #d8a7b1 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uY1IvBKlkf .title-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uY1IvBKlkf .title-wrapper .title-wrapper {
    margin-bottom: 22px;
  }
}
.cid-uY1IvBKlkf .title-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uY1IvBKlkf .title-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
  background-image: linear-gradient(90deg, #ff5376, #d8a7b1 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uY1IvBKlkf .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uY1IvBKlkf .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uY1IvBKlkf .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uY1IvBKlkf .mbr-label,
.cid-uY1IvBKlkf .label-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uY1IvBKlkf .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uY1IvBKlkf .mbr-section-subtitle {
  color: #181818;
  text-align: center;
}
.cid-uY1IvBKlkf .mbr-text,
.cid-uY1IvBKlkf .text-wrapper {
  color: #181818;
  text-align: center;
}
.cid-uY1IvBKlkf .mbr-section-title,
.cid-uY1IvBKlkf .mbr-section-btn {
  text-align: center;
}
.cid-tX1KKcPbfx {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f8f5f0;
}
.cid-tX1KKcPbfx h3 {
  text-align: center;
  letter-spacing: 0;
}
.cid-tX1KKcPbfx .wrap {
  width: 130px;
  height: 130px;
  margin: 0 auto;
}
.cid-tX1KKcPbfx .pie_progress__number {
  font-weight: 600;
  text-align: center !important;
  color: #181818;
}
.cid-tX1KKcPbfx .mbr-section-subtitle {
  color: #999999;
}
.cid-tX1KKcPbfx .card-title {
  margin-bottom: 0;
}
.cid-tX1KKcPbfx .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-tX1KKcPbfx .svg-gradient {
  position: absolute;
}
.cid-tX1KKcPbfx svg {
  overflow: visible;
}
.cid-tX1KKcPbfx ellipse {
  stroke: rgba(206, 206, 206, 0.4);
  stroke-width: 14px;
}
.cid-tX1KKcPbfx path {
  stroke-width: 14px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tX1KKcPbfx .card {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
.cid-tX1KKcPbfx .mbr-section-title {
  color: #090f10;
}
.cid-tX1KKcPbfx H4 {
  color: #000000;
}
.cid-tX1KKcPbfx .card-text {
  color: #000000;
}
.cid-udDc3pdyYq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f8f5f0;
}
.cid-udDc3pdyYq .mbr-fallback-image.disabled {
  display: none;
}
.cid-udDc3pdyYq .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-udDc3pdyYq .container {
    padding: 0 30px;
  }
}
.cid-udDc3pdyYq .row {
  padding-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-udDc3pdyYq .row {
    padding-bottom: 50px;
  }
}
.cid-udDc3pdyYq .row .border-wrap {
  background-color: #d8a7b1;
  height: 2px;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-udDc3pdyYq .row .border-wrap {
    margin-bottom: 50px;
  }
}
.cid-udDc3pdyYq .card {
  justify-content: center;
}
.cid-udDc3pdyYq .title-wrapper {
  margin-bottom: 20px;
}
.cid-udDc3pdyYq .title-wrapper .title-wrap {
  display: inline-flex;
}
.cid-udDc3pdyYq .title-wrapper .title-wrap img {
  object-fit: cover;
  width: 45px;
  height: 45px;
  margin-right: 10px;
}
.cid-udDc3pdyYq .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-udDc3pdyYq .nav-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cid-udDc3pdyYq .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-udDc3pdyYq .nav-wrapper .list .item-wrap {
  position: relative;
  margin: 0 50px 10px 0;
  cursor: pointer;
}
.cid-udDc3pdyYq .nav-wrapper .list .item-wrap:hover::before,
.cid-udDc3pdyYq .nav-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-udDc3pdyYq .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #181818;
  transition: all .3s ease;
}
.cid-udDc3pdyYq .mbr-copy {
  margin-bottom: 0;
  color: #000000;
}
.cid-udDc3pdyYq .mbr-section-title {
  color: #144031;
}
.cid-udDc3pdyYq .list {
  color: #144031;
}
.cid-udDc3pdyYq .list,
.cid-udDc3pdyYq .item-wrap {
  color: #ff9cb0;
}
.cid-uOqahTf3Yr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
@media (max-width: 992px) {
  .cid-uOqahTf3Yr .container,
  .cid-uOqahTf3Yr .container-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: auto;
  }
  .cid-uOqahTf3Yr .container .navbar-collapse,
  .cid-uOqahTf3Yr .container-fluid .navbar-collapse {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uOqahTf3Yr {
    flex-wrap: wrap;
  }
  .cid-uOqahTf3Yr .navbar > .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  .cid-uOqahTf3Yr .opened .container {
    flex-wrap: wrap;
  }
}
.cid-uOqahTf3Yr .opened .container .navbar-collapse {
  width: 100%;
}
.cid-uOqahTf3Yr .btn {
  padding: 0.8rem 2rem;
}
.cid-uOqahTf3Yr .nav-link {
  position: relative;
  font-weight: 900;
}
.cid-uOqahTf3Yr .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  height: 3px;
  width: 0%;
  transition: all 0.3s;
  background: #d8a7b1;
}
.cid-uOqahTf3Yr .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-uOqahTf3Yr nav.navbar {
  position: fixed;
}
.cid-uOqahTf3Yr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOqahTf3Yr .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOqahTf3Yr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOqahTf3Yr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOqahTf3Yr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOqahTf3Yr .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-uOqahTf3Yr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOqahTf3Yr .iconfont-wrapper {
  color: #8a35c5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOqahTf3Yr .dropdown-menu,
.cid-uOqahTf3Yr .navbar.opened {
  background: #ffffff !important;
}
.cid-uOqahTf3Yr .nav-item:focus,
.cid-uOqahTf3Yr .nav-link:focus {
  outline: none;
}
.cid-uOqahTf3Yr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOqahTf3Yr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOqahTf3Yr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOqahTf3Yr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOqahTf3Yr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOqahTf3Yr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOqahTf3Yr .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}
.cid-uOqahTf3Yr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-uOqahTf3Yr .navbar.opened {
  transition: all 0.3s;
}
.cid-uOqahTf3Yr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOqahTf3Yr .navbar .navbar-logo img {
  width: auto;
}
.cid-uOqahTf3Yr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-uOqahTf3Yr .navbar.collapsed {
  justify-content: center;
}
.cid-uOqahTf3Yr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOqahTf3Yr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOqahTf3Yr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uOqahTf3Yr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOqahTf3Yr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOqahTf3Yr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uOqahTf3Yr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOqahTf3Yr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOqahTf3Yr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOqahTf3Yr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOqahTf3Yr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOqahTf3Yr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOqahTf3Yr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOqahTf3Yr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uOqahTf3Yr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOqahTf3Yr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOqahTf3Yr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOqahTf3Yr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOqahTf3Yr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOqahTf3Yr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOqahTf3Yr .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOqahTf3Yr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOqahTf3Yr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOqahTf3Yr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOqahTf3Yr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOqahTf3Yr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOqahTf3Yr .dropdown-item.active,
.cid-uOqahTf3Yr .dropdown-item:active {
  background-color: transparent;
}
.cid-uOqahTf3Yr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOqahTf3Yr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOqahTf3Yr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOqahTf3Yr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uOqahTf3Yr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOqahTf3Yr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOqahTf3Yr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOqahTf3Yr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOqahTf3Yr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOqahTf3Yr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #272523;
}
.cid-uOqahTf3Yr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOqahTf3Yr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOqahTf3Yr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOqahTf3Yr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOqahTf3Yr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOqahTf3Yr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOqahTf3Yr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOqahTf3Yr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOqahTf3Yr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOqahTf3Yr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOqahTf3Yr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOqahTf3Yr .navbar {
    height: 70px;
  }
  .cid-uOqahTf3Yr .navbar.opened {
    height: auto;
  }
  .cid-uOqahTf3Yr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOq4f7hmCV {
  display: flex;
}
.cid-uOq4f7hmCV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOq4f7hmCV .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uOq4f7hmCV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/1ff84e974ae10b7658330061c5a7664e.jpg-1080x1350.jpg");
}
@media (min-width: 768px) {
  .cid-uOq4f7hmCV {
    align-items: flex-end;
  }
  .cid-uOq4f7hmCV .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uOq4f7hmCV .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uOq4f7hmCV {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uOq4f7hmCV .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uOq4f7hmCV .content-wrap {
    width: 100%;
  }
}
.cid-uOq4f7hmCV .mbr-section-subtitle,
.cid-uOq4f7hmCV .line {
  color: #ffffff;
}
.cid-uOq4f7hmCV .mbr-text,
.cid-uOq4f7hmCV .mbr-section-btn {
  text-align: right;
}
.cid-uOq4wKlmQX {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f8f5f0;
}
.cid-uOq4wKlmQX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOq4wKlmQX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOq4wKlmQX .row {
  justify-content: center;
}
.cid-uOq4wKlmQX .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  margin-bottom: 16px;
  background-image: linear-gradient(90deg, #ff5376, #d8a7b1 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uOq4wKlmQX .title-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uOq4wKlmQX .title-wrapper .title-wrapper {
    margin-bottom: 22px;
  }
}
.cid-uOq4wKlmQX .title-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uOq4wKlmQX .title-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
  background-image: linear-gradient(90deg, #ff5376, #d8a7b1 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uOq4wKlmQX .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uOq4wKlmQX .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uOq4wKlmQX .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uOq4wKlmQX .mbr-label,
.cid-uOq4wKlmQX .label-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uOq4wKlmQX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uOq4wKlmQX .mbr-section-subtitle {
  color: #181818;
  text-align: center;
}
.cid-uOq4wKlmQX .mbr-text,
.cid-uOq4wKlmQX .text-wrapper {
  color: #181818;
  text-align: center;
}
.cid-uOq4wKlmQX .mbr-section-title,
.cid-uOq4wKlmQX .mbr-section-btn {
  text-align: center;
}
.cid-uY1FKnXjXK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f8f5f0;
}
.cid-uY1FKnXjXK .item-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
}
.cid-uY1FKnXjXK .item-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}
.cid-uY1FKnXjXK .item-img {
  min-height: 300px;
  object-fit: cover;
  background: linear-gradient(to bottom, #ff9cb0, #d8a7b1);
  transition: all 0.3s;
  position: relative;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uY1FKnXjXK .item-img {
    height: 350px;
  }
}
.cid-uY1FKnXjXK .item-img .item-content p {
  opacity: 0;
}
@media (max-width: 992px) {
  .cid-uY1FKnXjXK .item-img .item-content {
    padding: 1rem;
  }
  .cid-uY1FKnXjXK .item-img .item-content p {
    opacity: 1;
  }
  .cid-uY1FKnXjXK .item-img .item-content .item-title {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
    white-space: nowrap;
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-uY1FKnXjXK .item-img .item-content {
    padding: 1rem;
  }
}
.cid-uY1FKnXjXK .item-img:hover,
.cid-uY1FKnXjXK .item-img:focus-within {
  background: linear-gradient(to top, #ee8eb8, #d8a7b1);
}
.cid-uY1FKnXjXK .item-img:hover:before,
.cid-uY1FKnXjXK .item-img:focus-within:before {
  opacity: 0.8;
}
.cid-uY1FKnXjXK .item-img:hover p,
.cid-uY1FKnXjXK .item-img:focus-within p {
  opacity: 1;
}
.cid-uY1FKnXjXK .item-img:hover .item-title,
.cid-uY1FKnXjXK .item-img:focus-within .item-title {
  position: relative;
  transform: none;
  left: auto;
  top: auto;
  padding-top: 10px;
}
.cid-uY1FKnXjXK .item:focus,
.cid-uY1FKnXjXK span:focus {
  outline: none;
}
.cid-uY1FKnXjXK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uY1FKnXjXK .item {
    margin-bottom: 1rem;
  }
}
.cid-uY1FKnXjXK .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uY1FKnXjXK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uY1FKnXjXK .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uY1FKnXjXK .mbr-text,
.cid-uY1FKnXjXK .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uY1FKnXjXK .item-subtitle {
  color: #000000;
}
.cid-uY1FKnXjXK .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uY1FQLdrng {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f8f5f0;
}
.cid-uY1FQLdrng .item-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
}
.cid-uY1FQLdrng .item-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}
.cid-uY1FQLdrng .item-img {
  min-height: 300px;
  object-fit: cover;
  background: linear-gradient(to bottom, #ff9cb0, #d8a7b1);
  transition: all 0.3s;
  position: relative;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uY1FQLdrng .item-img {
    height: 350px;
  }
}
.cid-uY1FQLdrng .item-img .item-content p {
  opacity: 0;
}
@media (max-width: 992px) {
  .cid-uY1FQLdrng .item-img .item-content {
    padding: 1rem;
  }
  .cid-uY1FQLdrng .item-img .item-content p {
    opacity: 1;
  }
  .cid-uY1FQLdrng .item-img .item-content .item-title {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
    white-space: nowrap;
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-uY1FQLdrng .item-img .item-content {
    padding: 1rem;
  }
}
.cid-uY1FQLdrng .item-img:hover,
.cid-uY1FQLdrng .item-img:focus-within {
  background: linear-gradient(to top, #ee8eb8, #d8a7b1);
}
.cid-uY1FQLdrng .item-img:hover:before,
.cid-uY1FQLdrng .item-img:focus-within:before {
  opacity: 0.8;
}
.cid-uY1FQLdrng .item-img:hover p,
.cid-uY1FQLdrng .item-img:focus-within p {
  opacity: 1;
}
.cid-uY1FQLdrng .item-img:hover .item-title,
.cid-uY1FQLdrng .item-img:focus-within .item-title {
  position: relative;
  transform: none;
  left: auto;
  top: auto;
  padding-top: 10px;
}
.cid-uY1FQLdrng .item:focus,
.cid-uY1FQLdrng span:focus {
  outline: none;
}
.cid-uY1FQLdrng .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uY1FQLdrng .item {
    margin-bottom: 1rem;
  }
}
.cid-uY1FQLdrng .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uY1FQLdrng .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uY1FQLdrng .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uY1FQLdrng .mbr-text,
.cid-uY1FQLdrng .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uY1FQLdrng .item-subtitle {
  color: #000000;
}
.cid-uY1FQLdrng .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uZTRID9CfU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f8f5f0;
}
.cid-uZTRID9CfU .item-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
}
.cid-uZTRID9CfU .item-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}
.cid-uZTRID9CfU .item-img {
  min-height: 300px;
  object-fit: cover;
  background: linear-gradient(to bottom, #ff9cb0, #d8a7b1);
  transition: all 0.3s;
  position: relative;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uZTRID9CfU .item-img {
    height: 350px;
  }
}
.cid-uZTRID9CfU .item-img .item-content p {
  opacity: 0;
}
@media (max-width: 992px) {
  .cid-uZTRID9CfU .item-img .item-content {
    padding: 1rem;
  }
  .cid-uZTRID9CfU .item-img .item-content p {
    opacity: 1;
  }
  .cid-uZTRID9CfU .item-img .item-content .item-title {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
    white-space: nowrap;
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-uZTRID9CfU .item-img .item-content {
    padding: 1rem;
  }
}
.cid-uZTRID9CfU .item-img:hover,
.cid-uZTRID9CfU .item-img:focus-within {
  background: linear-gradient(to top, #ee8eb8, #d8a7b1);
}
.cid-uZTRID9CfU .item-img:hover:before,
.cid-uZTRID9CfU .item-img:focus-within:before {
  opacity: 0.8;
}
.cid-uZTRID9CfU .item-img:hover p,
.cid-uZTRID9CfU .item-img:focus-within p {
  opacity: 1;
}
.cid-uZTRID9CfU .item-img:hover .item-title,
.cid-uZTRID9CfU .item-img:focus-within .item-title {
  position: relative;
  transform: none;
  left: auto;
  top: auto;
  padding-top: 10px;
}
.cid-uZTRID9CfU .item:focus,
.cid-uZTRID9CfU span:focus {
  outline: none;
}
.cid-uZTRID9CfU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uZTRID9CfU .item {
    margin-bottom: 1rem;
  }
}
.cid-uZTRID9CfU .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uZTRID9CfU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZTRID9CfU .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uZTRID9CfU .mbr-text,
.cid-uZTRID9CfU .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uZTRID9CfU .item-subtitle {
  color: #000000;
}
.cid-uZTRID9CfU .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uZTRKq1KCc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f8f5f0;
}
.cid-uZTRKq1KCc .item-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
}
.cid-uZTRKq1KCc .item-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}
.cid-uZTRKq1KCc .item-img {
  min-height: 300px;
  object-fit: cover;
  background: linear-gradient(to bottom, #ff9cb0, #d8a7b1);
  transition: all 0.3s;
  position: relative;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uZTRKq1KCc .item-img {
    height: 350px;
  }
}
.cid-uZTRKq1KCc .item-img .item-content p {
  opacity: 0;
}
@media (max-width: 992px) {
  .cid-uZTRKq1KCc .item-img .item-content {
    padding: 1rem;
  }
  .cid-uZTRKq1KCc .item-img .item-content p {
    opacity: 1;
  }
  .cid-uZTRKq1KCc .item-img .item-content .item-title {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
    white-space: nowrap;
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-uZTRKq1KCc .item-img .item-content {
    padding: 1rem;
  }
}
.cid-uZTRKq1KCc .item-img:hover,
.cid-uZTRKq1KCc .item-img:focus-within {
  background: linear-gradient(to top, #ee8eb8, #d8a7b1);
}
.cid-uZTRKq1KCc .item-img:hover:before,
.cid-uZTRKq1KCc .item-img:focus-within:before {
  opacity: 0.8;
}
.cid-uZTRKq1KCc .item-img:hover p,
.cid-uZTRKq1KCc .item-img:focus-within p {
  opacity: 1;
}
.cid-uZTRKq1KCc .item-img:hover .item-title,
.cid-uZTRKq1KCc .item-img:focus-within .item-title {
  position: relative;
  transform: none;
  left: auto;
  top: auto;
  padding-top: 10px;
}
.cid-uZTRKq1KCc .item:focus,
.cid-uZTRKq1KCc span:focus {
  outline: none;
}
.cid-uZTRKq1KCc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uZTRKq1KCc .item {
    margin-bottom: 1rem;
  }
}
.cid-uZTRKq1KCc .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uZTRKq1KCc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZTRKq1KCc .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uZTRKq1KCc .mbr-text,
.cid-uZTRKq1KCc .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uZTRKq1KCc .item-subtitle {
  color: #000000;
}
.cid-uZTRKq1KCc .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uZTRKWBu9n {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f8f5f0;
}
.cid-uZTRKWBu9n .item-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
}
.cid-uZTRKWBu9n .item-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}
.cid-uZTRKWBu9n .item-img {
  min-height: 300px;
  object-fit: cover;
  background: linear-gradient(to bottom, #ff9cb0, #d8a7b1);
  transition: all 0.3s;
  position: relative;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uZTRKWBu9n .item-img {
    height: 350px;
  }
}
.cid-uZTRKWBu9n .item-img .item-content p {
  opacity: 0;
}
@media (max-width: 992px) {
  .cid-uZTRKWBu9n .item-img .item-content {
    padding: 1rem;
  }
  .cid-uZTRKWBu9n .item-img .item-content p {
    opacity: 1;
  }
  .cid-uZTRKWBu9n .item-img .item-content .item-title {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
    white-space: nowrap;
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-uZTRKWBu9n .item-img .item-content {
    padding: 1rem;
  }
}
.cid-uZTRKWBu9n .item-img:hover,
.cid-uZTRKWBu9n .item-img:focus-within {
  background: linear-gradient(to top, #ee8eb8, #d8a7b1);
}
.cid-uZTRKWBu9n .item-img:hover:before,
.cid-uZTRKWBu9n .item-img:focus-within:before {
  opacity: 0.8;
}
.cid-uZTRKWBu9n .item-img:hover p,
.cid-uZTRKWBu9n .item-img:focus-within p {
  opacity: 1;
}
.cid-uZTRKWBu9n .item-img:hover .item-title,
.cid-uZTRKWBu9n .item-img:focus-within .item-title {
  position: relative;
  transform: none;
  left: auto;
  top: auto;
  padding-top: 10px;
}
.cid-uZTRKWBu9n .item:focus,
.cid-uZTRKWBu9n span:focus {
  outline: none;
}
.cid-uZTRKWBu9n .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uZTRKWBu9n .item {
    margin-bottom: 1rem;
  }
}
.cid-uZTRKWBu9n .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uZTRKWBu9n .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZTRKWBu9n .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uZTRKWBu9n .mbr-text,
.cid-uZTRKWBu9n .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uZTRKWBu9n .item-subtitle {
  color: #000000;
}
.cid-uZTRKWBu9n .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uZTRLpGR58 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f8f5f0;
}
.cid-uZTRLpGR58 .item-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
}
.cid-uZTRLpGR58 .item-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}
.cid-uZTRLpGR58 .item-img {
  min-height: 300px;
  object-fit: cover;
  background: linear-gradient(to bottom, #ff9cb0, #d8a7b1);
  transition: all 0.3s;
  position: relative;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uZTRLpGR58 .item-img {
    height: 350px;
  }
}
.cid-uZTRLpGR58 .item-img .item-content p {
  opacity: 0;
}
@media (max-width: 992px) {
  .cid-uZTRLpGR58 .item-img .item-content {
    padding: 1rem;
  }
  .cid-uZTRLpGR58 .item-img .item-content p {
    opacity: 1;
  }
  .cid-uZTRLpGR58 .item-img .item-content .item-title {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
    white-space: nowrap;
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-uZTRLpGR58 .item-img .item-content {
    padding: 1rem;
  }
}
.cid-uZTRLpGR58 .item-img:hover,
.cid-uZTRLpGR58 .item-img:focus-within {
  background: linear-gradient(to top, #ee8eb8, #d8a7b1);
}
.cid-uZTRLpGR58 .item-img:hover:before,
.cid-uZTRLpGR58 .item-img:focus-within:before {
  opacity: 0.8;
}
.cid-uZTRLpGR58 .item-img:hover p,
.cid-uZTRLpGR58 .item-img:focus-within p {
  opacity: 1;
}
.cid-uZTRLpGR58 .item-img:hover .item-title,
.cid-uZTRLpGR58 .item-img:focus-within .item-title {
  position: relative;
  transform: none;
  left: auto;
  top: auto;
  padding-top: 10px;
}
.cid-uZTRLpGR58 .item:focus,
.cid-uZTRLpGR58 span:focus {
  outline: none;
}
.cid-uZTRLpGR58 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uZTRLpGR58 .item {
    margin-bottom: 1rem;
  }
}
.cid-uZTRLpGR58 .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uZTRLpGR58 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZTRLpGR58 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uZTRLpGR58 .mbr-text,
.cid-uZTRLpGR58 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uZTRLpGR58 .item-subtitle {
  color: #000000;
}
.cid-uZTRLpGR58 .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-udDc3pdyYq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f8f5f0;
}
.cid-udDc3pdyYq .mbr-fallback-image.disabled {
  display: none;
}
.cid-udDc3pdyYq .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-udDc3pdyYq .container {
    padding: 0 30px;
  }
}
.cid-udDc3pdyYq .row {
  padding-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-udDc3pdyYq .row {
    padding-bottom: 50px;
  }
}
.cid-udDc3pdyYq .row .border-wrap {
  background-color: #d8a7b1;
  height: 2px;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-udDc3pdyYq .row .border-wrap {
    margin-bottom: 50px;
  }
}
.cid-udDc3pdyYq .card {
  justify-content: center;
}
.cid-udDc3pdyYq .title-wrapper {
  margin-bottom: 20px;
}
.cid-udDc3pdyYq .title-wrapper .title-wrap {
  display: inline-flex;
}
.cid-udDc3pdyYq .title-wrapper .title-wrap img {
  object-fit: cover;
  width: 45px;
  height: 45px;
  margin-right: 10px;
}
.cid-udDc3pdyYq .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-udDc3pdyYq .nav-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cid-udDc3pdyYq .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-udDc3pdyYq .nav-wrapper .list .item-wrap {
  position: relative;
  margin: 0 50px 10px 0;
  cursor: pointer;
}
.cid-udDc3pdyYq .nav-wrapper .list .item-wrap:hover::before,
.cid-udDc3pdyYq .nav-wrapper .list .item-wrap:focus::before {
  width: 100%;
}
.cid-udDc3pdyYq .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #181818;
  transition: all .3s ease;
}
.cid-udDc3pdyYq .mbr-copy {
  margin-bottom: 0;
  color: #000000;
}
.cid-udDc3pdyYq .mbr-section-title {
  color: #144031;
}
.cid-udDc3pdyYq .list {
  color: #144031;
}
.cid-udDc3pdyYq .list,
.cid-udDc3pdyYq .item-wrap {
  color: #ff9cb0;
}
