body {
  font-family: League Spartan;
}
.display-1 {
  font-family: 'Urbanist', sans-serif;
  font-size: 5.25rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.5625rem;
}
.display-2 {
  font-family: 'Urbanist', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-4 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Urbanist', sans-serif;
  font-size: 2.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 3rem;
}
.display-7 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.875rem;
}
/* ---- 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: 4.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.675rem;
    font-size: calc( 2.4875rem + (5.25 - 2.4875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (2.4875rem + (5.25 - 2.4875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #81358a !important;
}
.bg-success {
  background-color: #e61b72 !important;
}
.bg-info {
  background-color: #fed243 !important;
}
.bg-warning {
  background-color: #6ac88a !important;
}
.bg-danger {
  background-color: #ff7f11 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #81358a !important;
  border-color: #81358a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary .mobi-mbri:after {
  content: '';
  display: none;
  width: 105%;
  height: 100%;
  position: absolute;
  top: 100%;
  background-color: #81358a;
}
.btn-primary:hover .mobi-mbri:after,
.btn-primary:focus .mobi-mbri:after,
.btn-primary.focus .mobi-mbri:after,
.btn-primary.active .mobi-mbri:after {
  display: block;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #461d4b !important;
  border-color: #461d4b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ec8fb6 !important;
  border-color: #ec8fb6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary .mobi-mbri:after {
  content: '';
  display: none;
  width: 105%;
  height: 100%;
  position: absolute;
  top: 100%;
  background-color: #ec8fb6;
}
.btn-secondary:hover .mobi-mbri:after,
.btn-secondary:focus .mobi-mbri:after,
.btn-secondary.focus .mobi-mbri:after,
.btn-secondary.active .mobi-mbri:after {
  display: block;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #df4586 !important;
  border-color: #df4586 !important;
}
.btn-info,
.btn-info:active {
  background-color: #fed243 !important;
  border-color: #fed243 !important;
  color: #423200 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info .mobi-mbri:after {
  content: '';
  display: none;
  width: 105%;
  height: 100%;
  position: absolute;
  top: 100%;
  background-color: #fed243;
}
.btn-info:hover .mobi-mbri:after,
.btn-info:focus .mobi-mbri:after,
.btn-info.focus .mobi-mbri:after,
.btn-info.active .mobi-mbri:after {
  display: block;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #423200 !important;
  background-color: #e9b301 !important;
  border-color: #e9b301 !important;
}
.btn-success,
.btn-success:active {
  background-color: #e61b72 !important;
  border-color: #e61b72 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success .mobi-mbri:after {
  content: '';
  display: none;
  width: 105%;
  height: 100%;
  position: absolute;
  top: 100%;
  background-color: #e61b72;
}
.btn-success:hover .mobi-mbri:after,
.btn-success:focus .mobi-mbri:after,
.btn-success.focus .mobi-mbri:after,
.btn-success.active .mobi-mbri:after {
  display: block;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #99114b !important;
  border-color: #99114b !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #6ac88a !important;
  border-color: #6ac88a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning .mobi-mbri:after {
  content: '';
  display: none;
  width: 105%;
  height: 100%;
  position: absolute;
  top: 100%;
  background-color: #6ac88a;
}
.btn-warning:hover .mobi-mbri:after,
.btn-warning:focus .mobi-mbri:after,
.btn-warning.focus .mobi-mbri:after,
.btn-warning.active .mobi-mbri:after {
  display: block;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #3ba05e !important;
  border-color: #3ba05e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff7f11 !important;
  border-color: #ff7f11 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger .mobi-mbri:after {
  content: '';
  display: none;
  width: 105%;
  height: 100%;
  position: absolute;
  top: 100%;
  background-color: #ff7f11;
}
.btn-danger:hover .mobi-mbri:after,
.btn-danger:focus .mobi-mbri:after,
.btn-danger.focus .mobi-mbri:after,
.btn-danger.active .mobi-mbri:after {
  display: block;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b95600 !important;
  border-color: #b95600 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fef9ee !important;
  border-color: #fef9ee !important;
  color: #e09e0d !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white .mobi-mbri:after {
  content: '';
  display: none;
  width: 105%;
  height: 100%;
  position: absolute;
  top: 100%;
  background-color: #fef9ee;
}
.btn-white:hover .mobi-mbri:after,
.btn-white:focus .mobi-mbri:after,
.btn-white.focus .mobi-mbri:after,
.btn-white.active .mobi-mbri:after {
  display: block;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #e09e0d !important;
  background-color: #f9dc9c !important;
  border-color: #f9dc9c !important;
}
.btn-black,
.btn-black:active {
  background-color: #1f1d1a !important;
  border-color: #1f1d1a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black .mobi-mbri:after {
  content: '';
  display: none;
  width: 105%;
  height: 100%;
  position: absolute;
  top: 100%;
  background-color: #1f1d1a;
}
.btn-black:hover .mobi-mbri:after,
.btn-black:focus .mobi-mbri:after,
.btn-black.focus .mobi-mbri:after,
.btn-black.active .mobi-mbri:after {
  display: block;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline {
  background-color: #fef9ee !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  border-color: transparent;
  color: #81358a;
}
.btn-primary-outline .mobi-mbri:after {
  content: '';
  display: none;
  width: 105%;
  height: 100%;
  position: absolute;
  top: 100%;
  background-color: #fef9ee;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #81358a !important;
}
.btn-primary-outline:hover .mobi-mbri:after,
.btn-primary-outline:focus .mobi-mbri:after,
.btn-primary-outline.focus .mobi-mbri:after,
.btn-primary-outline.active .mobi-mbri:after {
  display: block;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #81358a !important;
  border-color: #81358a !important;
}
.btn-secondary-outline {
  background-color: #fef9ee !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  border-color: transparent;
  color: #ec8fb6;
}
.btn-secondary-outline .mobi-mbri:after {
  content: '';
  display: none;
  width: 105%;
  height: 100%;
  position: absolute;
  top: 100%;
  background-color: #fef9ee;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ec8fb6 !important;
}
.btn-secondary-outline:hover .mobi-mbri:after,
.btn-secondary-outline:focus .mobi-mbri:after,
.btn-secondary-outline.focus .mobi-mbri:after,
.btn-secondary-outline.active .mobi-mbri:after {
  display: block;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ec8fb6 !important;
  border-color: #ec8fb6 !important;
}
.btn-info-outline {
  background-color: #fef9ee !important;
}
.btn-info-outline,
.btn-info-outline:active {
  border-color: transparent;
  color: #fed243;
}
.btn-info-outline .mobi-mbri:after {
  content: '';
  display: none;
  width: 105%;
  height: 100%;
  position: absolute;
  top: 100%;
  background-color: #fef9ee;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #fed243 !important;
}
.btn-info-outline:hover .mobi-mbri:after,
.btn-info-outline:focus .mobi-mbri:after,
.btn-info-outline.focus .mobi-mbri:after,
.btn-info-outline.active .mobi-mbri:after {
  display: block;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #423200 !important;
  background-color: #fed243 !important;
  border-color: #fed243 !important;
}
.btn-success-outline {
  background-color: #fef9ee !important;
}
.btn-success-outline,
.btn-success-outline:active {
  border-color: transparent;
  color: #e61b72;
}
.btn-success-outline .mobi-mbri:after {
  content: '';
  display: none;
  width: 105%;
  height: 100%;
  position: absolute;
  top: 100%;
  background-color: #fef9ee;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #e61b72 !important;
}
.btn-success-outline:hover .mobi-mbri:after,
.btn-success-outline:focus .mobi-mbri:after,
.btn-success-outline.focus .mobi-mbri:after,
.btn-success-outline.active .mobi-mbri:after {
  display: block;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #e61b72 !important;
  border-color: #e61b72 !important;
}
.btn-warning-outline {
  background-color: #fef9ee !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  border-color: transparent;
  color: #6ac88a;
}
.btn-warning-outline .mobi-mbri:after {
  content: '';
  display: none;
  width: 105%;
  height: 100%;
  position: absolute;
  top: 100%;
  background-color: #fef9ee;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #6ac88a !important;
}
.btn-warning-outline:hover .mobi-mbri:after,
.btn-warning-outline:focus .mobi-mbri:after,
.btn-warning-outline.focus .mobi-mbri:after,
.btn-warning-outline.active .mobi-mbri:after {
  display: block;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #6ac88a !important;
  border-color: #6ac88a !important;
}
.btn-danger-outline {
  background-color: #fef9ee !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  border-color: transparent;
  color: #ff7f11;
}
.btn-danger-outline .mobi-mbri:after {
  content: '';
  display: none;
  width: 105%;
  height: 100%;
  position: absolute;
  top: 100%;
  background-color: #fef9ee;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff7f11 !important;
}
.btn-danger-outline:hover .mobi-mbri:after,
.btn-danger-outline:focus .mobi-mbri:after,
.btn-danger-outline.focus .mobi-mbri:after,
.btn-danger-outline.active .mobi-mbri:after {
  display: block;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff7f11 !important;
  border-color: #ff7f11 !important;
}
.btn-black-outline {
  background-color: #fef9ee !important;
}
.btn-black-outline,
.btn-black-outline:active {
  border-color: transparent;
  color: #1f1d1a;
}
.btn-black-outline .mobi-mbri:after {
  content: '';
  display: none;
  width: 105%;
  height: 100%;
  position: absolute;
  top: 100%;
  background-color: #fef9ee;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #1f1d1a !important;
}
.btn-black-outline:hover .mobi-mbri:after,
.btn-black-outline:focus .mobi-mbri:after,
.btn-black-outline.focus .mobi-mbri:after,
.btn-black-outline.active .mobi-mbri:after {
  display: block;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #1f1d1a !important;
  border-color: #1f1d1a !important;
}
.btn-white-outline {
  background-color: #fef9ee !important;
}
.btn-white-outline,
.btn-white-outline:active {
  border-color: transparent;
  color: #fef9ee;
}
.btn-white-outline .mobi-mbri:after {
  content: '';
  display: none;
  width: 105%;
  height: 100%;
  position: absolute;
  top: 100%;
  background-color: #fef9ee;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #fef9ee !important;
}
.btn-white-outline:hover .mobi-mbri:after,
.btn-white-outline:focus .mobi-mbri:after,
.btn-white-outline.focus .mobi-mbri:after,
.btn-white-outline.active .mobi-mbri:after {
  display: block;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #e09e0d !important;
  background-color: #fef9ee !important;
  border-color: #fef9ee !important;
}
.text-primary {
  color: #81358a !important;
}
.text-secondary {
  color: #ec8fb6 !important;
}
.text-success {
  color: #e61b72 !important;
}
.text-info {
  color: #fed243 !important;
}
.text-warning {
  color: #6ac88a !important;
}
.text-danger {
  color: #ff7f11 !important;
}
.text-white {
  color: #FEF9EE !important;
}
.text-black {
  color: #1F1D1A !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #81358a;
}
.nav-tabs .nav-link:not(.active) {
  color: #1F1D1A;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #fed243;
}
.alert-warning {
  background-color: #6ac88a;
}
.alert-danger {
  background-color: #ff7f11;
}
.mbr-gallery-filter li.active .btn {
  background-color: #81358a;
  border-color: #81358a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #81358a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c175ca;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fad3e4;
}
.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: #c7ead3;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffeddd;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #81358a !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #81358a;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #81358a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #81358a;
}
.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: #81358a;
  border-bottom-color: #81358a;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #81358a !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: #ec8fb6 !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='%2381358a' %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-duration: .2s;
}
a:hover {
  background-image: none !important;
  text-decoration-line: underline;
}
.container {
  max-width: 1322px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 991px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 639px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.container-fluid {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 639px) {
  .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.row {
  margin-left: -40px;
  margin-right: -40px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .row {
    margin-left: -32px;
    margin-right: -32px;
  }
  .row > [class*="col"] {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 991px) {
  .row {
    margin-left: -24px;
    margin-right: -24px;
  }
  .row > [class*="col"] {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 639px) {
  .row {
    margin-left: -16px;
    margin-right: -16px;
  }
  .row > [class*="col"] {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.row {
  justify-content: center;
}
.mbr-section-btn .btn {
  min-width: 100px;
  min-height: 40px;
  padding: 9px 24px;
  line-height: 1.55;
  font-weight: 500;
  transition-duration: .2s;
  border-radius: 9999px;
  text-underline-offset: 4px;
  box-shadow: none !important;
  border: none !important;
  overflow: hidden;
}
.mbr-section-btn .btn .mobi-mbri {
  position: relative;
}
.mbr-section-btn .btn:hover {
  text-decoration-line: underline;
}
.mbr-section-btn .btn-white-outline {
  background-color: transparent !important;
}
.mbr-section-btn .btn-white-outline:hover {
  text-decoration-line: none !important;
}
.mbr-section-btn .btn-white-outline .mobi-mbri:after {
  display: none !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    width: 100%;
  }
  .mbr-section-btn .btn {
    width: 100%;
    min-width: auto !important;
  }
}
section {
  overflow: hidden;
}
b {
  font-weight: 600 !important;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-t9FzZai8ud {
  overflow: visible;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 112px;
}
@media (max-width: 767px) {
  .cid-t9FzZai8ud {
    min-height: 77px;
  }
}
.cid-t9FzZai8ud nav.navbar {
  position: fixed;
}
.cid-t9FzZai8ud .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-t9FzZai8ud .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t9FzZai8ud .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t9FzZai8ud .dropdown-item:hover,
.cid-t9FzZai8ud .dropdown-item:focus {
  background: #81358a !important;
  color: inherit !important;
}
.cid-t9FzZai8ud .dropdown-item:hover span {
  color: white;
}
.cid-t9FzZai8ud .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t9FzZai8ud .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t9FzZai8ud .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t9FzZai8ud .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t9FzZai8ud .nav-link {
  position: relative;
}
.cid-t9FzZai8ud .container {
  display: flex;
  gap: 1.5rem;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t9FzZai8ud .container {
    flex-wrap: nowrap;
  }
}
.cid-t9FzZai8ud .iconfont-wrapper {
  color: #1f1d1a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t9FzZai8ud .iconfont-wrapper:hover {
  text-decoration-line: none !important;
}
.cid-t9FzZai8ud .dropdown-menu,
.cid-t9FzZai8ud .navbar.opened {
  background: #d9b8e6 !important;
}
.cid-t9FzZai8ud .nav-item:focus,
.cid-t9FzZai8ud .nav-link:focus {
  outline: none;
}
.cid-t9FzZai8ud .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t9FzZai8ud .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t9FzZai8ud .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t9FzZai8ud .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t9FzZai8ud .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t9FzZai8ud .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t9FzZai8ud .navbar {
  min-height: 112px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: #d9b8e6;
  border-radius: 0 !important;
  padding: 16px 0 !important;
}
@media (max-width: 767px) {
  .cid-t9FzZai8ud .navbar {
    min-height: 77px;
    padding: 8px 0 !important;
  }
}
.cid-t9FzZai8ud .navbar.opened {
  transition: all 0.3s;
}
.cid-t9FzZai8ud .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t9FzZai8ud .navbar .navbar-logo img {
  width: auto;
}
.cid-t9FzZai8ud .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t9FzZai8ud .navbar.collapsed {
  justify-content: center;
}
.cid-t9FzZai8ud .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t9FzZai8ud .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t9FzZai8ud .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t9FzZai8ud .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t9FzZai8ud .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t9FzZai8ud .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-t9FzZai8ud .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t9FzZai8ud .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t9FzZai8ud .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t9FzZai8ud .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t9FzZai8ud .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t9FzZai8ud .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t9FzZai8ud .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t9FzZai8ud .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-t9FzZai8ud .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t9FzZai8ud .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t9FzZai8ud .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t9FzZai8ud .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t9FzZai8ud .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t9FzZai8ud .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t9FzZai8ud .navbar.navbar-short {
  min-height: 112px;
}
@media (max-width: 767px) {
  .cid-t9FzZai8ud .navbar.navbar-short {
    min-height: 77px;
  }
}
.cid-t9FzZai8ud .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t9FzZai8ud .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t9FzZai8ud .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  margin: 0;
}
.cid-t9FzZai8ud .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t9FzZai8ud .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t9FzZai8ud .dropdown-item.active,
.cid-t9FzZai8ud .dropdown-item:active {
  background-color: transparent;
}
.cid-t9FzZai8ud .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t9FzZai8ud .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t9FzZai8ud .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t9FzZai8ud .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9b8e6;
}
.cid-t9FzZai8ud .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t9FzZai8ud .navbar .navbar-collapse .dropdown .dropdown-menu {
  background: #ffffff !important;
}
.cid-t9FzZai8ud .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t9FzZai8ud .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t9FzZai8ud ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t9FzZai8ud .navbar-buttons {
  text-align: center;
}
.cid-t9FzZai8ud button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin-left: 0.5rem;
  margin-right: 12px;
}
.cid-t9FzZai8ud button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t9FzZai8ud button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t9FzZai8ud button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t9FzZai8ud button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t9FzZai8ud button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t9FzZai8ud button.navbar-toggler .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000000;
  transition: all 0.2s;
}
.cid-t9FzZai8ud .navbar-toggler-close {
  position: absolute !important;
  right: 12px;
  top: 10px;
  margin-right: 0 !important;
}
.cid-t9FzZai8ud .navbar-toggler-close .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t9FzZai8ud .navbar-toggler-close .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t9FzZai8ud .navbar-toggler-close .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t9FzZai8ud .navbar-toggler-close .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t9FzZai8ud .navbar-toggler-close .hamburger-bg {
  opacity: 0;
  background-color: #374151 !important;
  transition: .3s;
  border-radius: 0 !important;
}
.cid-t9FzZai8ud .navbar-toggler-close .hamburger-bg:hover {
  opacity: 0.1 !important;
}
.cid-t9FzZai8ud .navbar-toggler-close:hover .hamburger-bg {
  opacity: 0.1 !important;
}
.cid-t9FzZai8ud button.navbar-toggler-close {
  margin-right: 0;
}
.cid-t9FzZai8ud .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t9FzZai8ud a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t9FzZai8ud .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-t9FzZai8ud .navbar {
    height: 70px;
  }
  .cid-t9FzZai8ud .navbar.opened {
    height: auto;
  }
  .cid-t9FzZai8ud .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t9FzZai8ud .navbar-brand-main {
  max-width: 30%;
}
.cid-t9FzZai8ud .navbar-nav-main {
  margin: 0;
  flex-grow: 1;
  justify-content: flex-end;
}
.cid-t9FzZai8ud .navbar-nav-main .nav-item {
  margin: 0 !important;
}
.cid-t9FzZai8ud .navbar-nav-main .nav-item .nav-link {
  padding: 15px !important;
  margin: 0 !important;
}
.cid-t9FzZai8ud .navbar-nav-main .nav-item .nav-link:hover {
  text-decoration: underline;
}
.cid-t9FzZai8ud .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-t9FzZai8ud .navbar-buttons-main {
  margin-left: 6.4rem;
  max-width: 30%;
}
@media (max-width: 991px) {
  .cid-t9FzZai8ud .navbar-buttons-main {
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-t9FzZai8ud .navbar-buttons-main {
    display: none;
  }
}
.cid-t9FzZai8ud .navbar-toggler-open {
  position: relative;
  z-index: 10 !important;
}
.cid-t9FzZai8ud .navbar-toggler {
  position: relative;
  z-index: 12;
}
.cid-t9FzZai8ud .navbar-collapse {
  display: none !important;
  z-index: 11 !important;
}
@media (max-width: 991px) {
  .cid-t9FzZai8ud .container,
  .cid-t9FzZai8ud .container-fluid {
    justify-content: flex-end;
  }
  .cid-t9FzZai8ud .navbar-brand-main {
    max-width: 50%;
    margin-right: auto;
  }
  .cid-t9FzZai8ud .navbar-nav-main {
    display: none !important;
  }
  .cid-t9FzZai8ud .sidbar-nav {
    width: 100%;
    align-items: center;
  }
  .cid-t9FzZai8ud .sidbar-nav .nav-item {
    margin: 0  !important;
    padding: 1rem !important;
    width: 100%;
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-t9FzZai8ud .sidbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-t9FzZai8ud .sidbar-nav .nav-item .nav-link:hover {
    color: inherit !important;
  }
  .cid-t9FzZai8ud .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-t9FzZai8ud .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: stretch !important;
    position: fixed;
    background-color: #ffffff;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-t9FzZai8ud .navbar-collapse .mbr-section-btn {
    margin-top: 18px;
    padding: 0 16px;
    width: 100%;
  }
  .cid-t9FzZai8ud .navbar-collapse .mbr-section-btn .btn {
    width: 100%;
  }
  .cid-t9FzZai8ud .navbar-collapse .dropdown-item {
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-t9FzZai8ud .navbar-collapse .dropdown-item:hover,
  .cid-t9FzZai8ud .navbar-collapse .dropdown-item:focus {
    background: #ffffff !important;
    color: inherit !important;
  }
  .cid-t9FzZai8ud .navbar-collapse.show {
    padding: 28px 0;
    position: fixed;
    background-color: #ffffff;
    width: 500px;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-t9FzZai8ud .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-t9FzZai8ud .navbar-collapse.show {
    width: 100% !important;
  }
}
.cid-uRMmRXQvwu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #81358a;
  overflow: hidden;
}
.cid-uRMmRXQvwu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRMmRXQvwu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRMmRXQvwu .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uRMmRXQvwu .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uRMmRXQvwu .container {
    padding: 0 30px;
  }
}
.cid-uRMmRXQvwu .card {
  justify-content: center;
}
.cid-uRMmRXQvwu .content-wrapper {
  padding: 0 240px;
}
@media (max-width: 1440px) {
  .cid-uRMmRXQvwu .content-wrapper {
    padding: 0 120px;
  }
}
@media (max-width: 992px) {
  .cid-uRMmRXQvwu .content-wrapper {
    padding: 0;
  }
}
.cid-uRMmRXQvwu .content-wrapper .icon-wrapper {
  margin-bottom: 24px;
}
.cid-uRMmRXQvwu .content-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 54px;
  color: #dddddd;
}
.cid-uRMmRXQvwu .content-wrapper .mbr-text {
  position: relative;
  padding-bottom: 60px;
  border-bottom: 1px solid #254b45;
  margin-bottom: 50px;
}
.cid-uRMmRXQvwu .content-wrapper .mbr-text::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20px;
  height: 6px;
  background-color: #254b45;
}
@media (max-width: 992px) {
  .cid-uRMmRXQvwu .content-wrapper .mbr-text {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}
.cid-uRMmRXQvwu .content-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uRMmRXQvwu .content-wrapper .person-wrapper .person-wrap {
    display: block;
  }
}
.cid-uRMmRXQvwu .content-wrapper .person-wrapper .person-wrap img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-uRMmRXQvwu .content-wrapper .person-wrapper .person-wrap img {
    margin: 0 0 20px 0;
  }
}
.cid-uRMmRXQvwu .content-wrapper .person-wrapper .person-wrap .name-wrapper .mbr-name {
  margin-bottom: 2px;
}
.cid-uRMmRXQvwu .content-wrapper .person-wrapper .person-wrap .name-wrapper .mbr-role {
  margin-bottom: 0;
  font-weight: 300;
}
.cid-uRMmRXQvwu .mbr-text {
  color: #254b45;
}
.cid-uRMmRXQvwu .mbr-name {
  color: #254b45;
}
.cid-uRMmRXQvwu .mbr-role {
  color: #254b45;
}
.cid-uRMmRXQvwu .mbr-name,
.cid-uRMmRXQvwu .person-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uRMmRXQvwu .mbr-role,
.cid-uRMmRXQvwu .person-wrapper {
  color: #ffffff;
}
.cid-v18Gm3YIfQ {
  align-items: flex-end;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  justify-content: flex-end;
  background-image: url("../../../assets/images/tienda-aperidul-4.jpg-1772x1181.jpg");
}
.cid-v18Gm3YIfQ::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  backdrop-filter: blur(20px);
  mask-image: linear-gradient(0deg, #000000 45%, transparent 55%);
  -webkit-mask-image: linear-gradient(0deg, #000000 45%, transparent 55%);
  pointer-events: none;
}
.cid-v18Gm3YIfQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v18Gm3YIfQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v18Gm3YIfQ .card {
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-v18Gm3YIfQ .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v18Gm3YIfQ .title-wrapper .mbr-label {
  margin-bottom: 32px;
}
.cid-v18Gm3YIfQ .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v18Gm3YIfQ .text-wrapper {
  padding-left: 260px;
}
@media (max-width: 1440px) {
  .cid-v18Gm3YIfQ .text-wrapper {
    padding-left: 80px;
  }
}
@media (max-width: 992px) {
  .cid-v18Gm3YIfQ .text-wrapper {
    padding-left: 0;
  }
}
.cid-v18Gm3YIfQ .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v18Gm3YIfQ .text-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-v18Gm3YIfQ .text-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
  box-shadow: none !important;
}
.cid-v18Gm3YIfQ .mbr-label {
  color: #ffffff;
}
.cid-v18Gm3YIfQ .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-v18Gm3YIfQ .mbr-text {
  color: #ffffff;
}
.cid-uPdCFh6G3J {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPdCFh6G3J img {
  border-radius: 0px;
}
.cid-uPdCFh6G3J .row {
  justify-content: center;
}
.cid-uPdCFh6G3J .mbr-section-title {
  margin-top: 24px;
  text-align: center;
  color: #8c8c95;
}
.cid-uPdCFh6G3J .container {
  max-width: 1132px;
}
.cid-uPdGhqSVqD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPdGhqSVqD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPdGhqSVqD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPdGhqSVqD .row {
  justify-content: space-between;
}
.cid-uPdGhqSVqD .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #e4ed64;
}
@media (max-width: 992px) {
  .cid-uPdGhqSVqD .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uPdGhqSVqD .content-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-uPdGhqSVqD .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uPdGhqSVqD .content-wrapper .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-uPdGhqSVqD .content-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uPdGhqSVqD .mbr-label {
  color: #000000;
}
.cid-uPdGhqSVqD .mbr-section-title {
  color: #e61b72;
}
.cid-uPdGhqSVqD .mbr-desc {
  color: #81358a;
}
.cid-uPdGhqSVqD .mbr-text {
  color: #8a8a8a;
}
.cid-uPdGhqSVqD .mbr-text,
.cid-uPdGhqSVqD .mbr-section-btn {
  color: #3f1026;
}
.cid-t9FCV4jwfB {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-t9FCV4jwfB .row {
  justify-content: center;
}
.cid-t9FCV4jwfB .col-title {
  margin-bottom: 2.5rem;
}
.cid-t9FCV4jwfB .mbr-section-title {
  color: #81358a;
  text-align: center;
}
.cid-t9FCV4jwfB .mbr-section-subtitle {
  color: #1f1d1a;
  margin-top: 1rem;
  text-align: center;
}
.cid-t9FCV4jwfB .cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 991px) {
  .cid-t9FCV4jwfB .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .cid-t9FCV4jwfB .cards-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-t9FCV4jwfB .card {
  display: flex;
  width: 100%;
  border-radius: 0.75rem;
  min-height: 465px;
}
@media (max-width: 639px) {
  .cid-t9FCV4jwfB .card {
    min-height: 345px;
  }
}
.cid-t9FCV4jwfB .card:hover .card-img-bg img {
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-t9FCV4jwfB .card:hover .card-title {
  text-decoration: underline;
}
.cid-t9FCV4jwfB .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  position: relative;
}
.cid-t9FCV4jwfB .card-img-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0.75rem;
  overflow: hidden;
}
.cid-t9FCV4jwfB .card-img-bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: 100%;
  transition: .3s;
}
.cid-t9FCV4jwfB .card-box {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  padding: 96px 16px 24px;
  position: relative;
  z-index: 5;
}
.cid-t9FCV4jwfB .card-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: linear-gradient(to bottom, transparent, #000000);
  mix-blend-mode: multiply;
  transform: matrix(1, 0, 0, 1, 0, 1);
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}
.cid-t9FCV4jwfB .card-title {
  width: 100%;
  margin-bottom: 0;
  color: #F6B7D2;
  position: relative;
  z-index: 11;
}
.cid-t9FCV4jwfB .card-text {
  width: 100%;
  color: #FCF0D5;
  margin-bottom: 0;
  position: relative;
  z-index: 11;
}
.cid-t9FCV4jwfB .card-title-1 {
  color: #fed243;
}
.cid-uP7wIqdMyH {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uP7wIqdMyH .row {
  justify-content: center;
}
.cid-uP7wIqdMyH .col-title {
  margin-bottom: 2.5rem;
}
.cid-uP7wIqdMyH .mbr-section-title {
  color: #F6B7D2;
}
.cid-uP7wIqdMyH .mbr-section-subtitle {
  color: #FEF9EE;
  margin-top: 1rem;
}
.cid-uP7wIqdMyH .cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 991px) {
  .cid-uP7wIqdMyH .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .cid-uP7wIqdMyH .cards-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-uP7wIqdMyH .card {
  display: flex;
  width: 100%;
  border-radius: 0.75rem;
  min-height: 465px;
}
@media (max-width: 639px) {
  .cid-uP7wIqdMyH .card {
    min-height: 345px;
  }
}
.cid-uP7wIqdMyH .card:hover .card-img-bg img {
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uP7wIqdMyH .card:hover .card-title {
  text-decoration: underline;
}
.cid-uP7wIqdMyH .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  position: relative;
}
.cid-uP7wIqdMyH .card-img-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0.75rem;
  overflow: hidden;
}
.cid-uP7wIqdMyH .card-img-bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: 100%;
  transition: .3s;
}
.cid-uP7wIqdMyH .card-box {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  padding: 96px 16px 24px;
  position: relative;
  z-index: 5;
}
.cid-uP7wIqdMyH .card-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: linear-gradient(to bottom, transparent, #000000);
  mix-blend-mode: multiply;
  transform: matrix(1, 0, 0, 1, 0, 1);
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}
.cid-uP7wIqdMyH .card-title {
  width: 100%;
  margin-bottom: 0;
  color: #F6B7D2;
  position: relative;
  z-index: 11;
}
.cid-uP7wIqdMyH .card-text {
  width: 100%;
  color: #FCF0D5;
  margin-bottom: 0;
  position: relative;
  z-index: 11;
}
.cid-uP7wIqdMyH .card-title-1 {
  color: #fed243;
}
.cid-uP7wJ3bwY4 {
  padding-top: 5rem;
  padding-bottom: 9rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uP7wJ3bwY4 .row {
  justify-content: center;
}
.cid-uP7wJ3bwY4 .col-title {
  margin-bottom: 2.5rem;
}
.cid-uP7wJ3bwY4 .mbr-section-title {
  color: #F6B7D2;
}
.cid-uP7wJ3bwY4 .mbr-section-subtitle {
  color: #FEF9EE;
  margin-top: 1rem;
}
.cid-uP7wJ3bwY4 .cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 991px) {
  .cid-uP7wJ3bwY4 .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .cid-uP7wJ3bwY4 .cards-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-uP7wJ3bwY4 .card {
  display: flex;
  width: 100%;
  border-radius: 0.75rem;
  min-height: 465px;
}
@media (max-width: 639px) {
  .cid-uP7wJ3bwY4 .card {
    min-height: 345px;
  }
}
.cid-uP7wJ3bwY4 .card:hover .card-img-bg img {
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uP7wJ3bwY4 .card:hover .card-title {
  text-decoration: underline;
}
.cid-uP7wJ3bwY4 .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  position: relative;
}
.cid-uP7wJ3bwY4 .card-img-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0.75rem;
  overflow: hidden;
}
.cid-uP7wJ3bwY4 .card-img-bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: 100%;
  transition: .3s;
}
.cid-uP7wJ3bwY4 .card-box {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  padding: 96px 16px 24px;
  position: relative;
  z-index: 5;
}
.cid-uP7wJ3bwY4 .card-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: linear-gradient(to bottom, transparent, #000000);
  mix-blend-mode: multiply;
  transform: matrix(1, 0, 0, 1, 0, 1);
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}
.cid-uP7wJ3bwY4 .card-title {
  width: 100%;
  margin-bottom: 0;
  color: #F6B7D2;
  position: relative;
  z-index: 11;
}
.cid-uP7wJ3bwY4 .card-text {
  width: 100%;
  color: #FCF0D5;
  margin-bottom: 0;
  position: relative;
  z-index: 11;
}
.cid-uP7wJ3bwY4 .card-title-1 {
  color: #fed243;
}
.cid-uPdM6iY8EE {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPdM6iY8EE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPdM6iY8EE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPdM6iY8EE .col-12 {
  position: relative;
}
.cid-uPdM6iY8EE img {
  max-width: 200px;
  display: block;
  margin-left: 2rem;
  margin-bottom: 1rem;
  margin-right: auto;
}
.cid-uPdM6iY8EE .image-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uPdM6iY8EE .image-wrapper {
    padding: 1rem;
  }
}
.cid-uPdM6iY8EE .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uPdM6iY8EE .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPdM6iY8EE .row {
  align-items: center;
}
.cid-uPdM6iY8EE .mbr-section-title {
  color: #000000;
}
.cid-uP7KQfIZGP {
  background-image: url("../../../assets/images/aperidul-chuches-golosinas-snacks-aperitivos-3.jpg-2000x1335.jpg");
  display: flex;
  align-items: center;
}
.cid-uP7KQfIZGP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP7KQfIZGP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP7KQfIZGP .row {
  justify-content: flex-start;
}
.cid-uP7KQfIZGP .mbr-section-title {
  color: #e61b72;
}
.cid-uP7KQfIZGP .mbr-section-subtitle {
  color: #81358a;
}
.cid-uP7KQfIZGP .mbr-text {
  color: #FEF9EE;
}
.cid-uPf5KEGcOJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPf5KEGcOJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPf5KEGcOJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPf5KEGcOJ .col-12 {
  position: relative;
}
.cid-uPf5KEGcOJ img {
  max-width: 250px;
  display: block;
  margin-right: 1rem;
  margin-bottom: 1rem;
  margin-left: auto;
}
.cid-uPf5KEGcOJ .image-wrapper {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-uPf5KEGcOJ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uPf5KEGcOJ .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uPf5KEGcOJ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPf5KEGcOJ .row {
  align-items: center;
}
.cid-uPf5KEGcOJ .mbr-section-title {
  color: #000000;
}
.cid-uRHHu6WG6v {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uRHHu6WG6v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRHHu6WG6v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRHHu6WG6v .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uRHHu6WG6v .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uRHHu6WG6v .container {
    padding: 0 30px;
  }
}
.cid-uRHHu6WG6v .content-wrapper {
  display: flex;
  position: relative;
  padding-bottom: 180px;
  border-bottom: 1px solid #e61b72;
}
@media (max-width: 992px) {
  .cid-uRHHu6WG6v .content-wrapper {
    display: block;
  }
}
.cid-uRHHu6WG6v .content-wrapper .card {
  justify-content: center;
}
.cid-uRHHu6WG6v .content-wrapper .content-wrap {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
}
@media (max-width: 992px) {
  .cid-uRHHu6WG6v .content-wrapper .content-wrap {
    width: 100%;
    padding: 40px 0 60px;
  }
}
.cid-uRHHu6WG6v .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 35px;
}
.cid-uRHHu6WG6v .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 40px;
}
.cid-uRHHu6WG6v .content-wrapper .image-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 50%;
  min-height: 630px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uRHHu6WG6v .content-wrapper .image-wrapper {
    min-height: auto;
    height: 400px;
    width: 100%;
  }
}
.cid-uRHHu6WG6v .content-wrapper .image-wrapper::before {
  content: '';
  position: absolute;
  top: -3rem;
  right: 6rem;
  width: 82px;
  height: 82px;
  border-radius: 100%;
  background-color: #81358a;
  opacity: .9;
  z-index: 1;
}
.cid-uRHHu6WG6v .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uRHHu6WG6v .content-wrapper .image-wrapper .list {
  position: relative;
  display: inline-block;
  max-width: 310px;
  flex-direction: column;
  width: fit-content;
  padding: 50px 30px;
  list-style-type: none;
  background-color: #eaffe2;
  border-radius: 2rem 0 2rem 0;
  margin: 50px 50px -100px 0;
}
@media (max-width: 992px) {
  .cid-uRHHu6WG6v .content-wrapper .image-wrapper .list {
    padding: 40px 20px;
    max-width: 100%;
    width: 100%;
    margin: 50px 0 -100px 0;
  }
}
.cid-uRHHu6WG6v .content-wrapper .image-wrapper .list .item-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  padding-left: 30px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uRHHu6WG6v .content-wrapper .image-wrapper .list .item-wrap {
    display: block;
  }
}
.cid-uRHHu6WG6v .content-wrapper .image-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uRHHu6WG6v .content-wrapper .image-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #22654e;
}
@media (max-width: 992px) {
  .cid-uRHHu6WG6v .content-wrapper .image-wrapper .list .item-wrap::before {
    top: 10px;
  }
}
.cid-uRHHu6WG6v .mbr-section-title {
  color: #144031;
}
.cid-uRHHu6WG6v .mbr-text {
  color: #144031;
}
.cid-uRHHu6WG6v .list {
  color: #144031;
}
.cid-uRHHu6WG6v .mbr-section-title,
.cid-uRHHu6WG6v .mbr-section-btn {
  color: #81358a;
}
.cid-uPf5Wp6JJJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPf5Wp6JJJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPf5Wp6JJJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPf5Wp6JJJ .col-12 {
  position: relative;
}
.cid-uPf5Wp6JJJ img {
  max-width: 250px;
  display: block;
  margin-right: 1rem;
  margin-bottom: 1rem;
  margin-left: auto;
}
.cid-uPf5Wp6JJJ .image-wrapper {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-uPf5Wp6JJJ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uPf5Wp6JJJ .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uPf5Wp6JJJ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPf5Wp6JJJ .row {
  align-items: center;
}
.cid-uPf5Wp6JJJ .mbr-section-title {
  color: #000000;
}
.cid-uPdMflDqTk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPdMflDqTk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPdMflDqTk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPdMflDqTk .col-12 {
  position: relative;
}
.cid-uPdMflDqTk img {
  max-width: 200px;
  display: block;
  margin-left: 2rem;
  margin-bottom: 1rem;
  margin-right: auto;
}
.cid-uPdMflDqTk .image-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uPdMflDqTk .image-wrapper {
    padding: 1rem;
  }
}
.cid-uPdMflDqTk .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uPdMflDqTk .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPdMflDqTk .row {
  align-items: center;
}
.cid-uPdMflDqTk .mbr-section-title {
  color: #000000;
}
.cid-uPdDSOSSiP {
  padding-top: 12rem;
  position: relative;
  align-items: flex-end;
  padding-bottom: 16px;
  background-color: #ffffff;
}
.cid-uPdDSOSSiP .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
}
@media (max-width: 1440px) {
  .cid-uPdDSOSSiP .image-wrap {
    padding: 16px;
  }
}
.cid-uPdDSOSSiP .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uPdDSOSSiP .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  pointer-events: none;
}
@media (max-width: 1440px) {
  .cid-uPdDSOSSiP .image-overlay {
    padding: 16px;
  }
}
.cid-uPdDSOSSiP .image-overlay .image-over {
  background-color: #151e11;
  z-index: 2;
  opacity: 0.5;
  width: 100%;
  height: 100%;
}
.cid-uPdDSOSSiP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPdDSOSSiP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPdDSOSSiP .row {
  justify-content: center;
}
.cid-uPdDSOSSiP .card-wrapper {
  padding: 90px 30px 90px;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uPdDSOSSiP .card-wrapper {
    padding: 30px 16px;
    margin-top: 300px;
  }
}
.cid-uPdDSOSSiP .card-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
}
.cid-uPdDSOSSiP .card-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-uPdDSOSSiP .card-wrapper .label-wrapper .label-wrap .mbr-iconfont {
  font-size: 18px;
  margin-right: 12px;
  color: #e61b72;
}
.cid-uPdDSOSSiP .card-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uPdDSOSSiP .card-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uPdDSOSSiP .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uPdDSOSSiP .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uPdDSOSSiP .mbr-label,
.cid-uPdDSOSSiP .label-wrapper {
  color: #81358a;
  text-align: center;
}
.cid-uPdDSOSSiP .mbr-section-title {
  color: #fff7ee;
}
.cid-uPdDSOSSiP .mbr-text,
.cid-uPdDSOSSiP .text-wrapper {
  color: #81358a;
  text-align: center;
}
.cid-uPdDSOSSiP .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uPdDSOSSiP .mbr-section-title,
.cid-uPdDSOSSiP .mbr-section-btn {
  text-align: center;
  color: #e61b72;
}
.cid-uPdMttYc0n {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPdMttYc0n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPdMttYc0n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPdMttYc0n .col-12 {
  position: relative;
}
.cid-uPdMttYc0n img {
  max-width: 200px;
  display: block;
  margin-left: 2rem;
  margin-bottom: 1rem;
  margin-right: auto;
}
.cid-uPdMttYc0n .image-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uPdMttYc0n .image-wrapper {
    padding: 1rem;
  }
}
.cid-uPdMttYc0n .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uPdMttYc0n .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPdMttYc0n .row {
  align-items: center;
}
.cid-uPdMttYc0n .mbr-section-title {
  color: #000000;
}
.cid-uPdRtOdqwt {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uPdRtOdqwt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPdRtOdqwt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPdRtOdqwt input:hover {
  border-color: white !important;
}
.cid-uPdRtOdqwt .col-auto {
  width: 100%;
  text-align: right !important;
}
@media (max-width: 992px) {
  .cid-uPdRtOdqwt .mb {
    margin-bottom: 2rem;
  }
}
.cid-uPdRtOdqwt img {
  object-fit: cover;
}
.cid-uPdRtOdqwt .btn,
.cid-uPdRtOdqwt .btn:hover,
.cid-uPdRtOdqwt .btn:focus,
.cid-uPdRtOdqwt .btn:active {
  background: transparent !important;
  border: none !important;
  color: white;
  font-weight: 400;
  padding: 0;
  margin: 0;
}
.cid-uPdRtOdqwt .item-wrapper {
  width: 100%;
}
.cid-uPdRtOdqwt .icon-wrap {
  display: inline-flex;
  margin-top: 2rem;
}
.cid-uPdRtOdqwt .card-box {
  padding: 3rem 2rem;
  width: 100%;
  display: inline-flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-uPdRtOdqwt .card-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uPdRtOdqwt .card-box {
    padding: 1rem;
  }
}
.cid-uPdRtOdqwt .mobi-mbri {
  color: black;
  background: #000000;
  font-size: 1.2rem !important;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding-top: 1px;
  margin-left: 1rem;
}
.cid-uPdRtOdqwt .card-wrapper {
  display: flex;
}
.cid-uPdRtOdqwt .wrap {
  background: #81358a;
}
.cid-uPdRtOdqwt .card-title {
  color: #ffffff;
  text-align: left;
}
.cid-uPdRtOdqwt .mbr-text,
.cid-uPdRtOdqwt .card-box {
  text-align: center;
  color: #ffffff;
}
.cid-uPdRtOdqwt .mbr-link,
.cid-uPdRtOdqwt .link-wrapper {
  color: #000000;
  text-align: left;
}
.cid-uPdRtOdqwt .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-uPdRtOdqwt .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uPdSrnTdQb {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-uPdSrnTdQb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPdSrnTdQb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPdSrnTdQb .row {
  justify-content: flex-start;
}
.cid-uPdSrnTdQb .mbr-section-title {
  color: #81358a;
  margin-bottom: 0;
  text-align: center;
}
.cid-uPdSrnTdQb .mbr-text {
  color: #747474;
  margin-bottom: 0;
  margin-top: 40px;
  text-align: center;
}
.cid-uPdMDqm58J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPdMDqm58J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPdMDqm58J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPdMDqm58J .row {
  justify-content: space-between;
}
.cid-uPdMDqm58J .card-wrapper {
  margin-bottom: 70px;
}
.cid-uPdMDqm58J .card-wrapper .image-wrapper img {
  display: inline-flex;
  width: 106px;
  height: 106px;
  object-fit: contain;
  margin-bottom: 40px;
}
.cid-uPdMDqm58J .card-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-uPdMDqm58J .card-wrapper .mbr-text {
  margin-bottom: 0;
  line-height: 1.45em;
}
.cid-uPdMDqm58J .mbr-section-title {
  color: #E0BDB6;
}
.cid-uPdMDqm58J .mbr-text {
  color: #747474;
  text-align: left;
}
.cid-uPdMDqm58J .mbr-section-title,
.cid-uPdMDqm58J .image-wrapper {
  text-align: left;
  color: #81358a;
}
.cid-uPdTgLybWa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPdTgLybWa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPdTgLybWa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPdTgLybWa .row {
  margin: 0 -8px;
}
.cid-uPdTgLybWa .row .card {
  padding: 0 8px;
}
.cid-uPdTgLybWa .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .cid-uPdTgLybWa .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uPdTgLybWa .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.cid-uPdTgLybWa .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uPdTgLybWa .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uPdTgLybWa .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uPdTgLybWa .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uPdTgLybWa .image-wrapper {
  height: 100%;
}
.cid-uPdTgLybWa .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uPdTgLybWa .image-wrapper img {
    height: 300px;
  }
}
.cid-uPdTgLybWa .mbr-section-title {
  color: #2c2c26;
}
.cid-uPdTgLybWa .mbr-text,
.cid-uPdTgLybWa .text-wrapper {
  color: #63635d;
}
.cid-uPdTgLybWa .mbr-section-title,
.cid-uPdTgLybWa .mbr-section-btn {
  color: #81358a;
}
.cid-uSl5aG50sw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSl5aG50sw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSl5aG50sw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSl5aG50sw .col-12 {
  position: relative;
}
.cid-uSl5aG50sw img {
  max-width: 800px;
  margin: auto;
}
.cid-uSl5aG50sw .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uSl5aG50sw .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uSl5aG50sw .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSl5aG50sw .image-wrapper {
    padding: 1rem;
  }
}
.cid-uSl5aG50sw .mbr-section-title {
  color: #000000;
}
.cid-uPeMszu5Lq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPeMszu5Lq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPeMszu5Lq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPeMszu5Lq .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uPeMszu5Lq .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uPeMszu5Lq .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uPeMszu5Lq .container {
    padding: 0 16px;
  }
}
.cid-uPeMszu5Lq .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uPeMszu5Lq .title-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uPeMszu5Lq .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uPeMszu5Lq .image-wrapper img {
  height: 610px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uPeMszu5Lq .image-wrapper img {
    height: 350px;
  }
}
.cid-uPeMszu5Lq .content-wrapper {
  margin-left: 82px;
}
@media (max-width: 992px) {
  .cid-uPeMszu5Lq .content-wrapper {
    margin: 0;
  }
}
.cid-uPeMszu5Lq .desc-wrapper {
  margin-bottom: 24px;
}
.cid-uPeMszu5Lq .desc-wrapper .mbr-desc {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 16px;
}
.cid-uPeMszu5Lq .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-image: linear-gradient(to bottom, #81358a, #e61b72);
}
.cid-uPeMszu5Lq .dragArea.row .mbr-section-title {
  margin-bottom: 32px !important;
}
@media (max-width: 992px) {
  .cid-uPeMszu5Lq .dragArea.row .mbr-section-title {
    margin-bottom: 16px !important;
  }
}
.cid-uPeMszu5Lq .dragArea.row .mbr-text {
  margin-bottom: 32px !important;
}
@media (max-width: 992px) {
  .cid-uPeMszu5Lq .dragArea.row .mbr-text {
    margin-bottom: 16px !important;
  }
}
.cid-uPeMszu5Lq .dragArea.row .form-group {
  margin-bottom: 24px !important;
}
.cid-uPeMszu5Lq .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 16px;
}
.cid-uPeMszu5Lq .dragArea.row .form-group .form-control {
  padding: 16px 0;
  border: none !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: transparent;
  border-bottom: 1px solid #c1c1c1 !important;
}
.cid-uPeMszu5Lq .dragArea.row .form-group .form-control:hover,
.cid-uPeMszu5Lq .dragArea.row .form-group .form-control:focus {
  border: none !important;
  border-bottom: 1px solid #c1c1c1 !important;
}
.cid-uPeMszu5Lq .dragArea.row .form-group .form-control::placeholder {
  color: #81358a;
  opacity: .7;
}
.cid-uPeMszu5Lq .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uPeMszu5Lq .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-uPeMszu5Lq .dragArea.row .form-group .form-check .form-check-input {
  background-color: #fed243;
  border-color: #81358a;
  border-radius: 0;
}
.cid-uPeMszu5Lq .dragArea.row .form-group .form-check .form-check-input:focus {
  background-color: #81358a;
}
.cid-uPeMszu5Lq .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 16px;
}
.cid-uPeMszu5Lq .dragArea.row .mbr-section-btn .btn {
  width: 100%;
}
.cid-uPeMszu5Lq .mbr-section-title {
  color: #1c1c1c;
}
.cid-uPeMszu5Lq .mbr-desc {
  color: #1c1c1c;
}
.cid-uPeMszu5Lq .mbr-text {
  color: #1c1c1c;
}
.cid-uPeMszu5Lq P {
  color: #407cae;
}
.cid-uPeMszu5Lq H5 {
  color: #407cae;
}
.cid-uPdXX9qFwF {
  background-color: #ffffff;
}
.cid-uPdXX9qFwF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPdXX9qFwF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPdXX9qFwF .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uPdXX9qFwF .row {
  align-items: center;
}
.cid-uPdXX9qFwF .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uPdXX9qFwF .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uPdXX9qFwF .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uPdXX9qFwF .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uPdXX9qFwF .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uPdXX9qFwF .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPdXX9qFwF .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPdXX9qFwF .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uPdXX9qFwF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPdXX9qFwF .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uPdXX9qFwF .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uPdXX9qFwF .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uPdXX9qFwF .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uPdXX9qFwF .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uPdXX9qFwF .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uPdXX9qFwF .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPdXX9qFwF .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #81358a !important;
}
.cid-uPdXX9qFwF .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uPdXX9qFwF .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uPdXX9qFwF .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uPdXX9qFwF .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #81358a;
}
@media (max-width: 991px) {
  .cid-uPdXX9qFwF .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uPdXX9qFwF .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uPdXX9qFwF .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uPdXX9qFwF .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uPdXX9qFwF .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uPdXX9qFwF .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uPdXX9qFwF .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uPdXX9qFwF .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uPdXX9qFwF .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uPdXX9qFwF .contact-text {
  width: 100%;
  color: #e61b72;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uPdXX9qFwF .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uPdXX9qFwF .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uPdXX9qFwF .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uPdXX9qFwF .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uPdXX9qFwF .contact-container {
    width: 100%;
  }
}
.cid-uPdXX9qFwF .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #81358a;
}
.cid-uPdXX9qFwF .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uPdXX9qFwF .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uPdXX9qFwF .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uPdXX9qFwF .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uPdXX9qFwF .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #ffffff;
}
.cid-uPdXX9qFwF .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uPdXX9qFwF .copyright {
  color: #81358a;
  text-align: center;
}
.cid-uPdXX9qFwF .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uPdXX9qFwF .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #81358a 27%, #81358a 50%, #81358a 79%);
}
.cid-uPdXX9qFwF .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #e61b72 27%, #e61b72 50%, #e61b72 79%);
}
.cid-uPePsR4zve {
  overflow: visible;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 112px;
}
@media (max-width: 767px) {
  .cid-uPePsR4zve {
    min-height: 77px;
  }
}
.cid-uPePsR4zve nav.navbar {
  position: fixed;
}
.cid-uPePsR4zve .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-uPePsR4zve .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPePsR4zve .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPePsR4zve .dropdown-item:hover,
.cid-uPePsR4zve .dropdown-item:focus {
  background: #81358a !important;
  color: inherit !important;
}
.cid-uPePsR4zve .dropdown-item:hover span {
  color: white;
}
.cid-uPePsR4zve .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPePsR4zve .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPePsR4zve .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPePsR4zve .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPePsR4zve .nav-link {
  position: relative;
}
.cid-uPePsR4zve .container {
  display: flex;
  gap: 1.5rem;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uPePsR4zve .container {
    flex-wrap: nowrap;
  }
}
.cid-uPePsR4zve .iconfont-wrapper {
  color: #1f1d1a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPePsR4zve .iconfont-wrapper:hover {
  text-decoration-line: none !important;
}
.cid-uPePsR4zve .dropdown-menu,
.cid-uPePsR4zve .navbar.opened {
  background: #d9b8e6 !important;
}
.cid-uPePsR4zve .nav-item:focus,
.cid-uPePsR4zve .nav-link:focus {
  outline: none;
}
.cid-uPePsR4zve .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPePsR4zve .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPePsR4zve .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPePsR4zve .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPePsR4zve .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPePsR4zve .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPePsR4zve .navbar {
  min-height: 112px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: #d9b8e6;
  border-radius: 0 !important;
  padding: 16px 0 !important;
}
@media (max-width: 767px) {
  .cid-uPePsR4zve .navbar {
    min-height: 77px;
    padding: 8px 0 !important;
  }
}
.cid-uPePsR4zve .navbar.opened {
  transition: all 0.3s;
}
.cid-uPePsR4zve .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPePsR4zve .navbar .navbar-logo img {
  width: auto;
}
.cid-uPePsR4zve .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPePsR4zve .navbar.collapsed {
  justify-content: center;
}
.cid-uPePsR4zve .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPePsR4zve .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPePsR4zve .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uPePsR4zve .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPePsR4zve .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPePsR4zve .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-uPePsR4zve .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPePsR4zve .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPePsR4zve .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPePsR4zve .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPePsR4zve .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPePsR4zve .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPePsR4zve .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPePsR4zve .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-uPePsR4zve .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPePsR4zve .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPePsR4zve .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPePsR4zve .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uPePsR4zve .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPePsR4zve .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPePsR4zve .navbar.navbar-short {
  min-height: 112px;
}
@media (max-width: 767px) {
  .cid-uPePsR4zve .navbar.navbar-short {
    min-height: 77px;
  }
}
.cid-uPePsR4zve .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPePsR4zve .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uPePsR4zve .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  margin: 0;
}
.cid-uPePsR4zve .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPePsR4zve .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPePsR4zve .dropdown-item.active,
.cid-uPePsR4zve .dropdown-item:active {
  background-color: transparent;
}
.cid-uPePsR4zve .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPePsR4zve .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPePsR4zve .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPePsR4zve .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9b8e6;
}
.cid-uPePsR4zve .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPePsR4zve .navbar .navbar-collapse .dropdown .dropdown-menu {
  background: #ffffff !important;
}
.cid-uPePsR4zve .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPePsR4zve .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPePsR4zve ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPePsR4zve .navbar-buttons {
  text-align: center;
}
.cid-uPePsR4zve button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin-left: 0.5rem;
  margin-right: 12px;
}
.cid-uPePsR4zve button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uPePsR4zve button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPePsR4zve button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPePsR4zve button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPePsR4zve button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPePsR4zve button.navbar-toggler .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000000;
  transition: all 0.2s;
}
.cid-uPePsR4zve .navbar-toggler-close {
  position: absolute !important;
  right: 12px;
  top: 10px;
  margin-right: 0 !important;
}
.cid-uPePsR4zve .navbar-toggler-close .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPePsR4zve .navbar-toggler-close .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPePsR4zve .navbar-toggler-close .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPePsR4zve .navbar-toggler-close .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPePsR4zve .navbar-toggler-close .hamburger-bg {
  opacity: 0;
  background-color: #374151 !important;
  transition: .3s;
  border-radius: 0 !important;
}
.cid-uPePsR4zve .navbar-toggler-close .hamburger-bg:hover {
  opacity: 0.1 !important;
}
.cid-uPePsR4zve .navbar-toggler-close:hover .hamburger-bg {
  opacity: 0.1 !important;
}
.cid-uPePsR4zve button.navbar-toggler-close {
  margin-right: 0;
}
.cid-uPePsR4zve .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPePsR4zve a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPePsR4zve .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-uPePsR4zve .navbar {
    height: 70px;
  }
  .cid-uPePsR4zve .navbar.opened {
    height: auto;
  }
  .cid-uPePsR4zve .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPePsR4zve .navbar-brand-main {
  max-width: 30%;
}
.cid-uPePsR4zve .navbar-nav-main {
  margin: 0;
  flex-grow: 1;
  justify-content: flex-end;
}
.cid-uPePsR4zve .navbar-nav-main .nav-item {
  margin: 0 !important;
}
.cid-uPePsR4zve .navbar-nav-main .nav-item .nav-link {
  padding: 15px !important;
  margin: 0 !important;
}
.cid-uPePsR4zve .navbar-nav-main .nav-item .nav-link:hover {
  text-decoration: underline;
}
.cid-uPePsR4zve .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-uPePsR4zve .navbar-buttons-main {
  margin-left: 6.4rem;
  max-width: 30%;
}
@media (max-width: 991px) {
  .cid-uPePsR4zve .navbar-buttons-main {
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uPePsR4zve .navbar-buttons-main {
    display: none;
  }
}
.cid-uPePsR4zve .navbar-toggler-open {
  position: relative;
  z-index: 10 !important;
}
.cid-uPePsR4zve .navbar-toggler {
  position: relative;
  z-index: 12;
}
.cid-uPePsR4zve .navbar-collapse {
  display: none !important;
  z-index: 11 !important;
}
@media (max-width: 991px) {
  .cid-uPePsR4zve .container,
  .cid-uPePsR4zve .container-fluid {
    justify-content: flex-end;
  }
  .cid-uPePsR4zve .navbar-brand-main {
    max-width: 50%;
    margin-right: auto;
  }
  .cid-uPePsR4zve .navbar-nav-main {
    display: none !important;
  }
  .cid-uPePsR4zve .sidbar-nav {
    width: 100%;
    align-items: center;
  }
  .cid-uPePsR4zve .sidbar-nav .nav-item {
    margin: 0  !important;
    padding: 1rem !important;
    width: 100%;
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-uPePsR4zve .sidbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-uPePsR4zve .sidbar-nav .nav-item .nav-link:hover {
    color: inherit !important;
  }
  .cid-uPePsR4zve .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-uPePsR4zve .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: stretch !important;
    position: fixed;
    background-color: #ffffff;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-uPePsR4zve .navbar-collapse .mbr-section-btn {
    margin-top: 18px;
    padding: 0 16px;
    width: 100%;
  }
  .cid-uPePsR4zve .navbar-collapse .mbr-section-btn .btn {
    width: 100%;
  }
  .cid-uPePsR4zve .navbar-collapse .dropdown-item {
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-uPePsR4zve .navbar-collapse .dropdown-item:hover,
  .cid-uPePsR4zve .navbar-collapse .dropdown-item:focus {
    background: #ffffff !important;
    color: inherit !important;
  }
  .cid-uPePsR4zve .navbar-collapse.show {
    padding: 28px 0;
    position: fixed;
    background-color: #ffffff;
    width: 500px;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-uPePsR4zve .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-uPePsR4zve .navbar-collapse.show {
    width: 100% !important;
  }
}
.cid-uPePsRyqDI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #81358a;
  overflow: hidden;
}
.cid-uPePsRyqDI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePsRyqDI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePsRyqDI .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uPePsRyqDI .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uPePsRyqDI .container {
    padding: 0 30px;
  }
}
.cid-uPePsRyqDI .card {
  justify-content: center;
}
.cid-uPePsRyqDI .content-wrapper {
  padding: 0 240px;
}
@media (max-width: 1440px) {
  .cid-uPePsRyqDI .content-wrapper {
    padding: 0 120px;
  }
}
@media (max-width: 992px) {
  .cid-uPePsRyqDI .content-wrapper {
    padding: 0;
  }
}
.cid-uPePsRyqDI .content-wrapper .icon-wrapper {
  margin-bottom: 24px;
}
.cid-uPePsRyqDI .content-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 54px;
  color: #dddddd;
}
.cid-uPePsRyqDI .content-wrapper .mbr-text {
  position: relative;
  padding-bottom: 60px;
  border-bottom: 1px solid #254b45;
  margin-bottom: 50px;
}
.cid-uPePsRyqDI .content-wrapper .mbr-text::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20px;
  height: 6px;
  background-color: #254b45;
}
@media (max-width: 992px) {
  .cid-uPePsRyqDI .content-wrapper .mbr-text {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}
.cid-uPePsRyqDI .content-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uPePsRyqDI .content-wrapper .person-wrapper .person-wrap {
    display: block;
  }
}
.cid-uPePsRyqDI .content-wrapper .person-wrapper .person-wrap img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-uPePsRyqDI .content-wrapper .person-wrapper .person-wrap img {
    margin: 0 0 20px 0;
  }
}
.cid-uPePsRyqDI .content-wrapper .person-wrapper .person-wrap .name-wrapper .mbr-name {
  margin-bottom: 2px;
}
.cid-uPePsRyqDI .content-wrapper .person-wrapper .person-wrap .name-wrapper .mbr-role {
  margin-bottom: 0;
  font-weight: 300;
}
.cid-uPePsRyqDI .mbr-text {
  color: #254b45;
}
.cid-uPePsRyqDI .mbr-name {
  color: #254b45;
}
.cid-uPePsRyqDI .mbr-role {
  color: #254b45;
}
.cid-uPePsRyqDI .mbr-name,
.cid-uPePsRyqDI .person-wrapper {
  color: #ffffff;
}
.cid-uPePsRyqDI .mbr-role,
.cid-uPePsRyqDI .person-wrapper {
  color: #ffffff;
}
.cid-uPePsRUlfC {
  background-image: url("../../../assets/images/tienda-aperidul-5.jpg-1772x1181.jpg");
  display: flex;
  align-items: center;
}
.cid-uPePsRUlfC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePsRUlfC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePsRUlfC .row {
  justify-content: flex-start;
}
.cid-uPePsRUlfC .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uPePsRUlfC .mbr-section-subtitle {
  color: #FEF9EE;
}
.cid-uPePsRUlfC .mbr-text {
  color: #FEF9EE;
}
.cid-uPePsRUlfC .mbr-text,
.cid-uPePsRUlfC .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uPePsRUlfC .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uPePsSfQyE {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPePsSfQyE img {
  border-radius: 0px;
}
.cid-uPePsSfQyE .row {
  justify-content: center;
}
.cid-uPePsSfQyE .mbr-section-title {
  margin-top: 24px;
  text-align: center;
  color: #8c8c95;
}
.cid-uPePsSfQyE .container {
  max-width: 1132px;
}
.cid-uQs2tQaUpA {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uQs2tQaUpA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQs2tQaUpA .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-uQs2tQaUpA .container {
    padding: 0 30px;
  }
}
.cid-uQs2tQaUpA .card {
  justify-content: center;
}
.cid-uQs2tQaUpA .content-wrapper {
  padding: 0 120px;
}
@media (max-width: 1440px) {
  .cid-uQs2tQaUpA .content-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-uQs2tQaUpA .content-wrapper {
    padding: 0;
  }
}
.cid-uQs2tQaUpA .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uQs2tQaUpA .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uQs2tQaUpA .mbr-section-title {
  color: #bee0d6;
}
.cid-uQs2tQaUpA .mbr-section-title,
.cid-uQs2tQaUpA .mbr-section-btn {
  text-align: center;
  color: #81358a;
}
.cid-uQs49vQMVa {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/tienda-aperidul-6.jpg-1772x1183.jpg");
  display: flex;
  align-items: center;
}
.cid-uQs49vQMVa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQs49vQMVa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQs49vQMVa .row {
  justify-content: flex-start;
}
.cid-uQs49vQMVa .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
  text-align: left;
}
.cid-uQs49vQMVa .mbr-text {
  color: #ffffff;
  margin-bottom: 0;
  margin-top: 40px;
  text-align: left;
}
.cid-uQs3Vvjdnt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQs3Vvjdnt .main-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.cid-uQs3Vvjdnt .history-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  margin-top: 180px;
}
@media (max-width: 991px) {
  .cid-uQs3Vvjdnt .history-item {
    flex-wrap: wrap;
    margin-top: 110px;
  }
}
@media (max-width: 575px) {
  .cid-uQs3Vvjdnt .history-item {
    margin-top: 100px;
  }
}
.cid-uQs3Vvjdnt .history-item-first {
  margin-top: 0;
}
.cid-uQs3Vvjdnt .img-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-uQs3Vvjdnt .img-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
@media (max-width: 991px) {
  .cid-uQs3Vvjdnt .img-container {
    order: 1;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
  }
}
.cid-uQs3Vvjdnt .image-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uQs3Vvjdnt .image-wrapper {
    max-width: 550px;
  }
}
.cid-uQs3Vvjdnt .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uQs3Vvjdnt .text-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-uQs3Vvjdnt .text-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-uQs3Vvjdnt .text-container {
    order: 2;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
    padding-top: 18px;
  }
}
@media (max-width: 1200px) {
  .cid-uQs3Vvjdnt .history-item-reverse .img-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .cid-uQs3Vvjdnt .history-item-reverse .text-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
.cid-uQs3Vvjdnt .text-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uQs3Vvjdnt .text-wrapper {
    max-width: 550px;
  }
}
.cid-uQs3Vvjdnt .card-title {
  width: 100%;
  color: #A2A4A7;
}
.cid-uQs3Vvjdnt .card-subtitle {
  width: 100%;
  color: #81358a;
  margin-top: 16px;
}
.cid-uQs3Vvjdnt .mbr-text {
  width: 100%;
  color: #45494E;
  margin-top: 36px;
}
.cid-uQs3Vvjdnt .mbr-section-btn {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .cid-uQs3Vvjdnt .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uQs3Vvjdnt .center-line {
  position: absolute;
  width: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  height: 100%;
  background-color: #45494e;
  opacity: 0.2;
}
@media (max-width: 991px) {
  .cid-uQs3Vvjdnt .center-line {
    left: 5px;
    transform: translateX(0);
  }
}
.cid-uQs3Vvjdnt .item-circle {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 11px;
  height: 11px;
  background-color: #ffffff;
  border-radius: 50%;
  border: 1px solid #45494e;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .cid-uQs3Vvjdnt .item-circle {
    left: 0;
    transform: translateX(0);
  }
}
.cid-uPePsUmY16 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPePsUmY16 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePsUmY16 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePsUmY16 .col-12 {
  position: relative;
}
.cid-uPePsUmY16 img {
  max-width: 200px;
  display: block;
  margin-left: 2rem;
  margin-bottom: 1rem;
  margin-right: auto;
}
.cid-uPePsUmY16 .image-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uPePsUmY16 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uPePsUmY16 .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uPePsUmY16 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPePsUmY16 .row {
  align-items: center;
}
.cid-uPePsUmY16 .mbr-section-title {
  color: #000000;
}
.cid-uQs4W3DA9t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQs4W3DA9t .main-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.cid-uQs4W3DA9t .history-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  margin-top: 180px;
}
@media (max-width: 991px) {
  .cid-uQs4W3DA9t .history-item {
    flex-wrap: wrap;
    margin-top: 110px;
  }
}
@media (max-width: 575px) {
  .cid-uQs4W3DA9t .history-item {
    margin-top: 100px;
  }
}
.cid-uQs4W3DA9t .history-item-first {
  margin-top: 0;
}
.cid-uQs4W3DA9t .img-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-uQs4W3DA9t .img-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
@media (max-width: 991px) {
  .cid-uQs4W3DA9t .img-container {
    order: 1;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
  }
}
.cid-uQs4W3DA9t .image-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uQs4W3DA9t .image-wrapper {
    max-width: 550px;
  }
}
.cid-uQs4W3DA9t .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uQs4W3DA9t .text-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-uQs4W3DA9t .text-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-uQs4W3DA9t .text-container {
    order: 2;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
    padding-top: 18px;
  }
}
@media (max-width: 1200px) {
  .cid-uQs4W3DA9t .history-item-reverse .img-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .cid-uQs4W3DA9t .history-item-reverse .text-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
.cid-uQs4W3DA9t .text-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uQs4W3DA9t .text-wrapper {
    max-width: 550px;
  }
}
.cid-uQs4W3DA9t .card-title {
  width: 100%;
  color: #A2A4A7;
}
.cid-uQs4W3DA9t .card-subtitle {
  width: 100%;
  color: #81358a;
  margin-top: 16px;
}
.cid-uQs4W3DA9t .mbr-text {
  width: 100%;
  color: #45494E;
  margin-top: 36px;
}
.cid-uQs4W3DA9t .mbr-section-btn {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .cid-uQs4W3DA9t .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uQs4W3DA9t .center-line {
  position: absolute;
  width: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  height: 100%;
  background-color: #45494e;
  opacity: 0.2;
}
@media (max-width: 991px) {
  .cid-uQs4W3DA9t .center-line {
    left: 5px;
    transform: translateX(0);
  }
}
.cid-uQs4W3DA9t .item-circle {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 11px;
  height: 11px;
  background-color: #ffffff;
  border-radius: 50%;
  border: 1px solid #45494e;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .cid-uQs4W3DA9t .item-circle {
    left: 0;
    transform: translateX(0);
  }
}
.cid-uPePsXmy9M {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPePsXmy9M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePsXmy9M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePsXmy9M .col-12 {
  position: relative;
}
.cid-uPePsXmy9M img {
  max-width: 200px;
  display: block;
  margin-left: 2rem;
  margin-bottom: 1rem;
  margin-right: auto;
}
.cid-uPePsXmy9M .image-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uPePsXmy9M .image-wrapper {
    padding: 1rem;
  }
}
.cid-uPePsXmy9M .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uPePsXmy9M .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPePsXmy9M .row {
  align-items: center;
}
.cid-uPePsXmy9M .mbr-section-title {
  color: #000000;
}
.cid-uPePsY9ZYg {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uPePsY9ZYg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePsY9ZYg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePsY9ZYg input:hover {
  border-color: white !important;
}
.cid-uPePsY9ZYg .col-auto {
  width: 100%;
  text-align: right !important;
}
@media (max-width: 992px) {
  .cid-uPePsY9ZYg .mb {
    margin-bottom: 2rem;
  }
}
.cid-uPePsY9ZYg img {
  object-fit: cover;
}
.cid-uPePsY9ZYg .btn,
.cid-uPePsY9ZYg .btn:hover,
.cid-uPePsY9ZYg .btn:focus,
.cid-uPePsY9ZYg .btn:active {
  background: transparent !important;
  border: none !important;
  color: white;
  font-weight: 400;
  padding: 0;
  margin: 0;
}
.cid-uPePsY9ZYg .item-wrapper {
  width: 100%;
}
.cid-uPePsY9ZYg .icon-wrap {
  display: inline-flex;
  margin-top: 2rem;
}
.cid-uPePsY9ZYg .card-box {
  padding: 3rem 2rem;
  width: 100%;
  display: inline-flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-uPePsY9ZYg .card-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uPePsY9ZYg .card-box {
    padding: 1rem;
  }
}
.cid-uPePsY9ZYg .mobi-mbri {
  color: black;
  background: #000000;
  font-size: 1.2rem !important;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding-top: 1px;
  margin-left: 1rem;
}
.cid-uPePsY9ZYg .card-wrapper {
  display: flex;
}
.cid-uPePsY9ZYg .wrap {
  background: #81358a;
}
.cid-uPePsY9ZYg .card-title {
  color: #ffffff;
  text-align: left;
}
.cid-uPePsY9ZYg .mbr-text,
.cid-uPePsY9ZYg .card-box {
  text-align: center;
  color: #ffffff;
}
.cid-uPePsY9ZYg .mbr-link,
.cid-uPePsY9ZYg .link-wrapper {
  color: #000000;
  text-align: left;
}
.cid-uPePsY9ZYg .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-uPePsY9ZYg .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uQtnc6XHuh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #81358a;
}
.cid-uQtnc6XHuh .item:focus,
.cid-uQtnc6XHuh span:focus {
  outline: none;
}
.cid-uQtnc6XHuh .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-uQtnc6XHuh .item {
  color: #fffcee;
  min-height: 90px;
}
@media (max-width: 768px) {
  .cid-uQtnc6XHuh .item {
    min-height: 45px;
  }
}
.cid-uPePsYPKuD {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/aperidul-chuches-golosinas-2.jpg-1095x730.jpg");
  display: flex;
  align-items: center;
}
.cid-uPePsYPKuD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePsYPKuD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePsYPKuD .row {
  justify-content: flex-start;
}
.cid-uPePsYPKuD .mbr-section-title {
  color: #81358a;
  margin-bottom: 0;
  text-align: center;
}
.cid-uPePsYPKuD .mbr-text {
  color: #81358a;
  margin-bottom: 0;
  margin-top: 40px;
  text-align: center;
}
.cid-uPePsZiGHF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPePsZiGHF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePsZiGHF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePsZiGHF .row {
  justify-content: space-between;
}
.cid-uPePsZiGHF .card-wrapper {
  margin-bottom: 70px;
}
.cid-uPePsZiGHF .card-wrapper .image-wrapper img {
  display: inline-flex;
  width: 106px;
  height: 106px;
  object-fit: contain;
  margin-bottom: 40px;
}
.cid-uPePsZiGHF .card-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-uPePsZiGHF .card-wrapper .mbr-text {
  margin-bottom: 0;
  line-height: 1.45em;
}
.cid-uPePsZiGHF .mbr-section-title {
  color: #E0BDB6;
}
.cid-uPePsZiGHF .mbr-text {
  color: #747474;
  text-align: left;
}
.cid-uPePsZiGHF .mbr-section-title,
.cid-uPePsZiGHF .image-wrapper {
  text-align: left;
  color: #81358a;
}
.cid-uSl5iCFgUO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSl5iCFgUO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSl5iCFgUO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSl5iCFgUO .col-12 {
  position: relative;
}
.cid-uSl5iCFgUO img {
  max-width: 800px;
  margin: auto;
}
.cid-uSl5iCFgUO .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uSl5iCFgUO .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uSl5iCFgUO .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSl5iCFgUO .image-wrapper {
    padding: 1rem;
  }
}
.cid-uSl5iCFgUO .mbr-section-title {
  color: #000000;
}
.cid-uPePsZTz1b {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPePsZTz1b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePsZTz1b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePsZTz1b .row {
  margin: 0 -8px;
}
.cid-uPePsZTz1b .row .card {
  padding: 0 8px;
}
.cid-uPePsZTz1b .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .cid-uPePsZTz1b .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uPePsZTz1b .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.cid-uPePsZTz1b .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uPePsZTz1b .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uPePsZTz1b .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uPePsZTz1b .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uPePsZTz1b .image-wrapper {
  height: 100%;
}
.cid-uPePsZTz1b .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uPePsZTz1b .image-wrapper img {
    height: 300px;
  }
}
.cid-uPePsZTz1b .mbr-section-title {
  color: #2c2c26;
}
.cid-uPePsZTz1b .mbr-text,
.cid-uPePsZTz1b .text-wrapper {
  color: #63635d;
}
.cid-uPePsZTz1b .mbr-section-title,
.cid-uPePsZTz1b .mbr-section-btn {
  color: #81358a;
}
.cid-uPePt0oksw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPePt0oksw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePt0oksw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePt0oksw .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uPePt0oksw .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uPePt0oksw .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uPePt0oksw .container {
    padding: 0 16px;
  }
}
.cid-uPePt0oksw .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uPePt0oksw .title-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uPePt0oksw .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uPePt0oksw .image-wrapper img {
  height: 610px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uPePt0oksw .image-wrapper img {
    height: 350px;
  }
}
.cid-uPePt0oksw .content-wrapper {
  margin-left: 82px;
}
@media (max-width: 992px) {
  .cid-uPePt0oksw .content-wrapper {
    margin: 0;
  }
}
.cid-uPePt0oksw .desc-wrapper {
  margin-bottom: 24px;
}
.cid-uPePt0oksw .desc-wrapper .mbr-desc {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 16px;
}
.cid-uPePt0oksw .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-image: linear-gradient(to bottom, #81358a, #e61b72);
}
.cid-uPePt0oksw .dragArea.row .mbr-section-title {
  margin-bottom: 32px !important;
}
@media (max-width: 992px) {
  .cid-uPePt0oksw .dragArea.row .mbr-section-title {
    margin-bottom: 16px !important;
  }
}
.cid-uPePt0oksw .dragArea.row .mbr-text {
  margin-bottom: 32px !important;
}
@media (max-width: 992px) {
  .cid-uPePt0oksw .dragArea.row .mbr-text {
    margin-bottom: 16px !important;
  }
}
.cid-uPePt0oksw .dragArea.row .form-group {
  margin-bottom: 24px !important;
}
.cid-uPePt0oksw .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 16px;
}
.cid-uPePt0oksw .dragArea.row .form-group .form-control {
  padding: 16px 0;
  border: none !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: transparent;
  border-bottom: 1px solid #c1c1c1 !important;
}
.cid-uPePt0oksw .dragArea.row .form-group .form-control:hover,
.cid-uPePt0oksw .dragArea.row .form-group .form-control:focus {
  border: none !important;
  border-bottom: 1px solid #c1c1c1 !important;
}
.cid-uPePt0oksw .dragArea.row .form-group .form-control::placeholder {
  color: #81358a;
  opacity: .7;
}
.cid-uPePt0oksw .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uPePt0oksw .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-uPePt0oksw .dragArea.row .form-group .form-check .form-check-input {
  background-color: #fed243;
  border-color: #81358a;
  border-radius: 0;
}
.cid-uPePt0oksw .dragArea.row .form-group .form-check .form-check-input:focus {
  background-color: #81358a;
}
.cid-uPePt0oksw .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 16px;
}
.cid-uPePt0oksw .dragArea.row .mbr-section-btn .btn {
  width: 100%;
}
.cid-uPePt0oksw .mbr-section-title {
  color: #1c1c1c;
}
.cid-uPePt0oksw .mbr-desc {
  color: #1c1c1c;
}
.cid-uPePt0oksw .mbr-text {
  color: #1c1c1c;
}
.cid-uPePt0oksw P {
  color: #407cae;
}
.cid-uPePt0oksw H5 {
  color: #407cae;
}
.cid-uPePt0ZT7C {
  background-color: #ffffff;
}
.cid-uPePt0ZT7C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePt0ZT7C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePt0ZT7C .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uPePt0ZT7C .row {
  align-items: center;
}
.cid-uPePt0ZT7C .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uPePt0ZT7C .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uPePt0ZT7C .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uPePt0ZT7C .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uPePt0ZT7C .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uPePt0ZT7C .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPePt0ZT7C .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPePt0ZT7C .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uPePt0ZT7C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPePt0ZT7C .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uPePt0ZT7C .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uPePt0ZT7C .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uPePt0ZT7C .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uPePt0ZT7C .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uPePt0ZT7C .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uPePt0ZT7C .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPePt0ZT7C .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #81358a !important;
}
.cid-uPePt0ZT7C .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uPePt0ZT7C .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uPePt0ZT7C .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uPePt0ZT7C .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #81358a;
}
@media (max-width: 991px) {
  .cid-uPePt0ZT7C .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uPePt0ZT7C .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uPePt0ZT7C .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uPePt0ZT7C .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uPePt0ZT7C .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uPePt0ZT7C .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uPePt0ZT7C .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uPePt0ZT7C .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uPePt0ZT7C .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uPePt0ZT7C .contact-text {
  width: 100%;
  color: #e61b72;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uPePt0ZT7C .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uPePt0ZT7C .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uPePt0ZT7C .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uPePt0ZT7C .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uPePt0ZT7C .contact-container {
    width: 100%;
  }
}
.cid-uPePt0ZT7C .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #81358a;
}
.cid-uPePt0ZT7C .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uPePt0ZT7C .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uPePt0ZT7C .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uPePt0ZT7C .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uPePt0ZT7C .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #ffffff;
}
.cid-uPePt0ZT7C .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uPePt0ZT7C .copyright {
  color: #81358a;
  text-align: center;
}
.cid-uPePt0ZT7C .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uPePt0ZT7C .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #81358a 27%, #81358a 50%, #81358a 79%);
}
.cid-uPePt0ZT7C .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #e61b72 27%, #e61b72 50%, #e61b72 79%);
}
.cid-uPePul6ZsY {
  overflow: visible;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 112px;
}
@media (max-width: 767px) {
  .cid-uPePul6ZsY {
    min-height: 77px;
  }
}
.cid-uPePul6ZsY nav.navbar {
  position: fixed;
}
.cid-uPePul6ZsY .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-uPePul6ZsY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPePul6ZsY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPePul6ZsY .dropdown-item:hover,
.cid-uPePul6ZsY .dropdown-item:focus {
  background: #81358a !important;
  color: inherit !important;
}
.cid-uPePul6ZsY .dropdown-item:hover span {
  color: white;
}
.cid-uPePul6ZsY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPePul6ZsY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPePul6ZsY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPePul6ZsY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPePul6ZsY .nav-link {
  position: relative;
}
.cid-uPePul6ZsY .container {
  display: flex;
  gap: 1.5rem;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uPePul6ZsY .container {
    flex-wrap: nowrap;
  }
}
.cid-uPePul6ZsY .iconfont-wrapper {
  color: #1f1d1a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPePul6ZsY .iconfont-wrapper:hover {
  text-decoration-line: none !important;
}
.cid-uPePul6ZsY .dropdown-menu,
.cid-uPePul6ZsY .navbar.opened {
  background: #d9b8e6 !important;
}
.cid-uPePul6ZsY .nav-item:focus,
.cid-uPePul6ZsY .nav-link:focus {
  outline: none;
}
.cid-uPePul6ZsY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPePul6ZsY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPePul6ZsY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPePul6ZsY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPePul6ZsY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPePul6ZsY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPePul6ZsY .navbar {
  min-height: 112px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: #d9b8e6;
  border-radius: 0 !important;
  padding: 16px 0 !important;
}
@media (max-width: 767px) {
  .cid-uPePul6ZsY .navbar {
    min-height: 77px;
    padding: 8px 0 !important;
  }
}
.cid-uPePul6ZsY .navbar.opened {
  transition: all 0.3s;
}
.cid-uPePul6ZsY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPePul6ZsY .navbar .navbar-logo img {
  width: auto;
}
.cid-uPePul6ZsY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPePul6ZsY .navbar.collapsed {
  justify-content: center;
}
.cid-uPePul6ZsY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPePul6ZsY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPePul6ZsY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uPePul6ZsY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPePul6ZsY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPePul6ZsY .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-uPePul6ZsY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPePul6ZsY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPePul6ZsY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPePul6ZsY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPePul6ZsY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPePul6ZsY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPePul6ZsY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPePul6ZsY .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-uPePul6ZsY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPePul6ZsY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPePul6ZsY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPePul6ZsY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uPePul6ZsY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPePul6ZsY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPePul6ZsY .navbar.navbar-short {
  min-height: 112px;
}
@media (max-width: 767px) {
  .cid-uPePul6ZsY .navbar.navbar-short {
    min-height: 77px;
  }
}
.cid-uPePul6ZsY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPePul6ZsY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uPePul6ZsY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  margin: 0;
}
.cid-uPePul6ZsY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPePul6ZsY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPePul6ZsY .dropdown-item.active,
.cid-uPePul6ZsY .dropdown-item:active {
  background-color: transparent;
}
.cid-uPePul6ZsY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPePul6ZsY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPePul6ZsY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPePul6ZsY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9b8e6;
}
.cid-uPePul6ZsY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPePul6ZsY .navbar .navbar-collapse .dropdown .dropdown-menu {
  background: #ffffff !important;
}
.cid-uPePul6ZsY .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPePul6ZsY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPePul6ZsY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPePul6ZsY .navbar-buttons {
  text-align: center;
}
.cid-uPePul6ZsY button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin-left: 0.5rem;
  margin-right: 12px;
}
.cid-uPePul6ZsY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uPePul6ZsY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPePul6ZsY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPePul6ZsY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPePul6ZsY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPePul6ZsY button.navbar-toggler .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000000;
  transition: all 0.2s;
}
.cid-uPePul6ZsY .navbar-toggler-close {
  position: absolute !important;
  right: 12px;
  top: 10px;
  margin-right: 0 !important;
}
.cid-uPePul6ZsY .navbar-toggler-close .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPePul6ZsY .navbar-toggler-close .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPePul6ZsY .navbar-toggler-close .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPePul6ZsY .navbar-toggler-close .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPePul6ZsY .navbar-toggler-close .hamburger-bg {
  opacity: 0;
  background-color: #374151 !important;
  transition: .3s;
  border-radius: 0 !important;
}
.cid-uPePul6ZsY .navbar-toggler-close .hamburger-bg:hover {
  opacity: 0.1 !important;
}
.cid-uPePul6ZsY .navbar-toggler-close:hover .hamburger-bg {
  opacity: 0.1 !important;
}
.cid-uPePul6ZsY button.navbar-toggler-close {
  margin-right: 0;
}
.cid-uPePul6ZsY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPePul6ZsY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPePul6ZsY .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-uPePul6ZsY .navbar {
    height: 70px;
  }
  .cid-uPePul6ZsY .navbar.opened {
    height: auto;
  }
  .cid-uPePul6ZsY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPePul6ZsY .navbar-brand-main {
  max-width: 30%;
}
.cid-uPePul6ZsY .navbar-nav-main {
  margin: 0;
  flex-grow: 1;
  justify-content: flex-end;
}
.cid-uPePul6ZsY .navbar-nav-main .nav-item {
  margin: 0 !important;
}
.cid-uPePul6ZsY .navbar-nav-main .nav-item .nav-link {
  padding: 15px !important;
  margin: 0 !important;
}
.cid-uPePul6ZsY .navbar-nav-main .nav-item .nav-link:hover {
  text-decoration: underline;
}
.cid-uPePul6ZsY .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-uPePul6ZsY .navbar-buttons-main {
  margin-left: 6.4rem;
  max-width: 30%;
}
@media (max-width: 991px) {
  .cid-uPePul6ZsY .navbar-buttons-main {
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uPePul6ZsY .navbar-buttons-main {
    display: none;
  }
}
.cid-uPePul6ZsY .navbar-toggler-open {
  position: relative;
  z-index: 10 !important;
}
.cid-uPePul6ZsY .navbar-toggler {
  position: relative;
  z-index: 12;
}
.cid-uPePul6ZsY .navbar-collapse {
  display: none !important;
  z-index: 11 !important;
}
@media (max-width: 991px) {
  .cid-uPePul6ZsY .container,
  .cid-uPePul6ZsY .container-fluid {
    justify-content: flex-end;
  }
  .cid-uPePul6ZsY .navbar-brand-main {
    max-width: 50%;
    margin-right: auto;
  }
  .cid-uPePul6ZsY .navbar-nav-main {
    display: none !important;
  }
  .cid-uPePul6ZsY .sidbar-nav {
    width: 100%;
    align-items: center;
  }
  .cid-uPePul6ZsY .sidbar-nav .nav-item {
    margin: 0  !important;
    padding: 1rem !important;
    width: 100%;
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-uPePul6ZsY .sidbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-uPePul6ZsY .sidbar-nav .nav-item .nav-link:hover {
    color: inherit !important;
  }
  .cid-uPePul6ZsY .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-uPePul6ZsY .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: stretch !important;
    position: fixed;
    background-color: #ffffff;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-uPePul6ZsY .navbar-collapse .mbr-section-btn {
    margin-top: 18px;
    padding: 0 16px;
    width: 100%;
  }
  .cid-uPePul6ZsY .navbar-collapse .mbr-section-btn .btn {
    width: 100%;
  }
  .cid-uPePul6ZsY .navbar-collapse .dropdown-item {
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-uPePul6ZsY .navbar-collapse .dropdown-item:hover,
  .cid-uPePul6ZsY .navbar-collapse .dropdown-item:focus {
    background: #ffffff !important;
    color: inherit !important;
  }
  .cid-uPePul6ZsY .navbar-collapse.show {
    padding: 28px 0;
    position: fixed;
    background-color: #ffffff;
    width: 500px;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-uPePul6ZsY .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-uPePul6ZsY .navbar-collapse.show {
    width: 100% !important;
  }
}
.cid-uPePulAfGS {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #81358a;
  overflow: hidden;
}
.cid-uPePulAfGS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePulAfGS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePulAfGS .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uPePulAfGS .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uPePulAfGS .container {
    padding: 0 30px;
  }
}
.cid-uPePulAfGS .card {
  justify-content: center;
}
.cid-uPePulAfGS .content-wrapper {
  padding: 0 240px;
}
@media (max-width: 1440px) {
  .cid-uPePulAfGS .content-wrapper {
    padding: 0 120px;
  }
}
@media (max-width: 992px) {
  .cid-uPePulAfGS .content-wrapper {
    padding: 0;
  }
}
.cid-uPePulAfGS .content-wrapper .icon-wrapper {
  margin-bottom: 24px;
}
.cid-uPePulAfGS .content-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 54px;
  color: #dddddd;
}
.cid-uPePulAfGS .content-wrapper .mbr-text {
  position: relative;
  padding-bottom: 60px;
  border-bottom: 1px solid #254b45;
  margin-bottom: 50px;
}
.cid-uPePulAfGS .content-wrapper .mbr-text::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20px;
  height: 6px;
  background-color: #254b45;
}
@media (max-width: 992px) {
  .cid-uPePulAfGS .content-wrapper .mbr-text {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}
.cid-uPePulAfGS .content-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uPePulAfGS .content-wrapper .person-wrapper .person-wrap {
    display: block;
  }
}
.cid-uPePulAfGS .content-wrapper .person-wrapper .person-wrap img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-uPePulAfGS .content-wrapper .person-wrapper .person-wrap img {
    margin: 0 0 20px 0;
  }
}
.cid-uPePulAfGS .content-wrapper .person-wrapper .person-wrap .name-wrapper .mbr-name {
  margin-bottom: 2px;
}
.cid-uPePulAfGS .content-wrapper .person-wrapper .person-wrap .name-wrapper .mbr-role {
  margin-bottom: 0;
  font-weight: 300;
}
.cid-uPePulAfGS .mbr-text {
  color: #254b45;
}
.cid-uPePulAfGS .mbr-name {
  color: #254b45;
}
.cid-uPePulAfGS .mbr-role {
  color: #254b45;
}
.cid-uPePulAfGS .mbr-name,
.cid-uPePulAfGS .person-wrapper {
  color: #ffffff;
}
.cid-uPePulAfGS .mbr-role,
.cid-uPePulAfGS .person-wrapper {
  color: #ffffff;
}
.cid-uPePulW4gW {
  background-image: url("../../../assets/images/aperidul-todos-los-productos-en-snacs-salados-y-dulces-4.jpg-1772x993.jpg");
  display: flex;
  align-items: center;
}
.cid-uPePulW4gW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePulW4gW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePulW4gW .row {
  justify-content: flex-start;
}
.cid-uPePulW4gW .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uPePulW4gW .mbr-section-subtitle {
  color: #FEF9EE;
}
.cid-uPePulW4gW .mbr-text {
  color: #FEF9EE;
}
.cid-uPePulW4gW .mbr-text,
.cid-uPePulW4gW .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uPePulW4gW .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uQtq39kGYk {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #81358a;
  overflow: hidden;
}
.cid-uQtq39kGYk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQtq39kGYk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQtq39kGYk .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uQtq39kGYk .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uQtq39kGYk .container {
    padding: 0 30px;
  }
}
.cid-uQtq39kGYk .card {
  justify-content: center;
}
.cid-uQtq39kGYk .content-wrapper {
  padding: 0 120px;
}
@media (max-width: 1440px) {
  .cid-uQtq39kGYk .content-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-uQtq39kGYk .content-wrapper {
    padding: 0;
  }
}
.cid-uQtq39kGYk .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uQtq39kGYk .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uQtq39kGYk .mbr-section-title {
  color: #bee0d6;
}
.cid-uQtq39kGYk .mbr-section-title,
.cid-uQtq39kGYk .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uPePumhTmn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPePumhTmn img {
  border-radius: 0px;
}
.cid-uPePumhTmn .row {
  justify-content: center;
}
.cid-uPePumhTmn .mbr-section-title {
  margin-top: 24px;
  text-align: center;
  color: #8c8c95;
}
.cid-uPePumhTmn .container {
  max-width: 1132px;
}
.cid-uPePumDhrQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPePumDhrQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePumDhrQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePumDhrQ .row {
  justify-content: space-between;
}
.cid-uPePumDhrQ .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #e4ed64;
}
@media (max-width: 992px) {
  .cid-uPePumDhrQ .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uPePumDhrQ .content-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-uPePumDhrQ .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uPePumDhrQ .content-wrapper .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-uPePumDhrQ .content-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uPePumDhrQ .mbr-label {
  color: #000000;
}
.cid-uPePumDhrQ .mbr-section-title {
  color: #81358a;
  text-align: right;
}
.cid-uPePumDhrQ .mbr-desc {
  color: #81358a;
}
.cid-uPePumDhrQ .mbr-text {
  color: #8a8a8a;
}
.cid-uPePumDhrQ .mbr-text,
.cid-uPePumDhrQ .mbr-section-btn {
  color: #3f1026;
}
.cid-uRMni1op1s {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #81358a;
  overflow: hidden;
}
.cid-uRMni1op1s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRMni1op1s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRMni1op1s .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uRMni1op1s .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uRMni1op1s .container {
    padding: 0 30px;
  }
}
.cid-uRMni1op1s .card {
  justify-content: center;
}
.cid-uRMni1op1s .content-wrapper {
  padding: 0 240px;
}
@media (max-width: 1440px) {
  .cid-uRMni1op1s .content-wrapper {
    padding: 0 120px;
  }
}
@media (max-width: 992px) {
  .cid-uRMni1op1s .content-wrapper {
    padding: 0;
  }
}
.cid-uRMni1op1s .content-wrapper .icon-wrapper {
  margin-bottom: 24px;
}
.cid-uRMni1op1s .content-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 54px;
  color: #dddddd;
}
.cid-uRMni1op1s .content-wrapper .mbr-text {
  position: relative;
  padding-bottom: 60px;
  border-bottom: 1px solid #254b45;
  margin-bottom: 50px;
}
.cid-uRMni1op1s .content-wrapper .mbr-text::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20px;
  height: 6px;
  background-color: #254b45;
}
@media (max-width: 992px) {
  .cid-uRMni1op1s .content-wrapper .mbr-text {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}
.cid-uRMni1op1s .content-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uRMni1op1s .content-wrapper .person-wrapper .person-wrap {
    display: block;
  }
}
.cid-uRMni1op1s .content-wrapper .person-wrapper .person-wrap img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-uRMni1op1s .content-wrapper .person-wrapper .person-wrap img {
    margin: 0 0 20px 0;
  }
}
.cid-uRMni1op1s .content-wrapper .person-wrapper .person-wrap .name-wrapper .mbr-name {
  margin-bottom: 2px;
}
.cid-uRMni1op1s .content-wrapper .person-wrapper .person-wrap .name-wrapper .mbr-role {
  margin-bottom: 0;
  font-weight: 300;
}
.cid-uRMni1op1s .mbr-text {
  color: #254b45;
}
.cid-uRMni1op1s .mbr-name {
  color: #254b45;
}
.cid-uRMni1op1s .mbr-role {
  color: #254b45;
}
.cid-uRMni1op1s .mbr-name,
.cid-uRMni1op1s .person-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uRMni1op1s .mbr-role,
.cid-uRMni1op1s .person-wrapper {
  color: #ffffff;
}
.cid-uQtCjOskOk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uQtCjOskOk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQtCjOskOk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQtCjOskOk .col-12 {
  position: relative;
}
.cid-uQtCjOskOk img {
  max-width: 200px;
  display: block;
  margin-left: 2rem;
  margin-bottom: 1rem;
  margin-right: auto;
}
.cid-uQtCjOskOk .image-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uQtCjOskOk .image-wrapper {
    padding: 1rem;
  }
}
.cid-uQtCjOskOk .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uQtCjOskOk .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uQtCjOskOk .row {
  align-items: center;
}
.cid-uQtCjOskOk .mbr-section-title {
  color: #000000;
}
.cid-uQtu2xnG2T {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uQtu2xnG2T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQtu2xnG2T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQtu2xnG2T .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uQtu2xnG2T .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uQtu2xnG2T .container {
    padding: 0 20px;
  }
}
.cid-uQtu2xnG2T .row {
  justify-content: space-between;
}
.cid-uQtu2xnG2T .card {
  justify-content: center;
}
.cid-uQtu2xnG2T .image-wrapper {
  padding-left: 100px;
}
@media (max-width: 1200px) {
  .cid-uQtu2xnG2T .image-wrapper {
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtu2xnG2T .image-wrapper {
    padding-left: 0;
    margin-bottom: 40px;
  }
}
.cid-uQtu2xnG2T .image-wrapper .image-wrap {
  padding: 0 116px;
}
@media (max-width: 1440px) {
  .cid-uQtu2xnG2T .image-wrapper .image-wrap {
    padding: 0 40px 0 0;
  }
}
@media (max-width: 992px) {
  .cid-uQtu2xnG2T .image-wrapper .image-wrap {
    padding: 0;
  }
}
.cid-uQtu2xnG2T .image-wrapper .image-wrap img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQtu2xnG2T .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-uQtu2xnG2T .content-wrapper {
  padding-right: 100px;
}
@media (max-width: 1200px) {
  .cid-uQtu2xnG2T .content-wrapper {
    padding-right: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtu2xnG2T .content-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uQtu2xnG2T .content-wrapper .mbr-desc {
  font-family: "Source Serif 4", sans-serif !important;
  margin-bottom: 40px;
}
.cid-uQtu2xnG2T .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQtu2xnG2T .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uQtu2xnG2T .mbr-desc {
  color: #733f6b;
}
.cid-uQtu2xnG2T .mbr-section-title {
  color: #1e1d1c;
}
.cid-uQtu2xnG2T .mbr-section-title,
.cid-uQtu2xnG2T .mbr-section-btn {
  color: #81358a;
}
.cid-uQtuSu1HP1 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uQtuSu1HP1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQtuSu1HP1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQtuSu1HP1 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uQtuSu1HP1 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uQtuSu1HP1 .container {
    padding: 0 20px;
  }
}
.cid-uQtuSu1HP1 .row {
  justify-content: space-between;
}
.cid-uQtuSu1HP1 .card {
  justify-content: center;
}
.cid-uQtuSu1HP1 .image-wrapper {
  padding-left: 100px;
  padding-left: 0;
  padding-right: 100px;
}
@media (max-width: 1200px) {
  .cid-uQtuSu1HP1 .image-wrapper {
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtuSu1HP1 .image-wrapper {
    padding-left: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 1200px) {
  .cid-uQtuSu1HP1 .image-wrapper {
    padding-right: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtuSu1HP1 .image-wrapper {
    padding-right: 0;
  }
}
.cid-uQtuSu1HP1 .image-wrapper .image-wrap {
  padding: 0 116px;
}
@media (max-width: 1440px) {
  .cid-uQtuSu1HP1 .image-wrapper .image-wrap {
    padding: 0 40px 0 0;
  }
}
@media (max-width: 992px) {
  .cid-uQtuSu1HP1 .image-wrapper .image-wrap {
    padding: 0;
  }
}
@media (max-width: 1440px) {
  .cid-uQtuSu1HP1 .image-wrapper .image-wrap {
    padding: 0 0 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uQtuSu1HP1 .image-wrapper .image-wrap {
    padding: 0;
  }
}
.cid-uQtuSu1HP1 .image-wrapper .image-wrap img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQtuSu1HP1 .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-uQtuSu1HP1 .content-wrapper {
  padding-right: 100px;
  padding-right: 0;
  padding-left: 100px;
}
@media (max-width: 1200px) {
  .cid-uQtuSu1HP1 .content-wrapper {
    padding-right: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtuSu1HP1 .content-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 1200px) {
  .cid-uQtuSu1HP1 .content-wrapper {
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtuSu1HP1 .content-wrapper {
    padding-left: 0;
  }
}
.cid-uQtuSu1HP1 .content-wrapper .mbr-desc {
  font-family: "Source Serif 4", sans-serif !important;
  margin-bottom: 40px;
}
.cid-uQtuSu1HP1 .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQtuSu1HP1 .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uQtuSu1HP1 .mbr-desc {
  color: #733f6b;
}
.cid-uQtuSu1HP1 .mbr-section-title {
  color: #1e1d1c;
}
.cid-uQtuSu1HP1 .mbr-section-title,
.cid-uQtuSu1HP1 .mbr-section-btn {
  color: #3d7f54;
}
.cid-uQtCkQbvzV {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uQtCkQbvzV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQtCkQbvzV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQtCkQbvzV .col-12 {
  position: relative;
}
.cid-uQtCkQbvzV img {
  max-width: 200px;
  display: block;
  margin-left: 2rem;
  margin-bottom: 1rem;
  margin-right: auto;
}
.cid-uQtCkQbvzV .image-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uQtCkQbvzV .image-wrapper {
    padding: 1rem;
  }
}
.cid-uQtCkQbvzV .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uQtCkQbvzV .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uQtCkQbvzV .row {
  align-items: center;
}
.cid-uQtCkQbvzV .mbr-section-title {
  color: #000000;
}
.cid-uQtvGJ599w {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uQtvGJ599w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQtvGJ599w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQtvGJ599w .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uQtvGJ599w .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uQtvGJ599w .container {
    padding: 0 20px;
  }
}
.cid-uQtvGJ599w .row {
  justify-content: space-between;
}
.cid-uQtvGJ599w .card {
  justify-content: center;
}
.cid-uQtvGJ599w .image-wrapper {
  padding-left: 100px;
}
@media (max-width: 1200px) {
  .cid-uQtvGJ599w .image-wrapper {
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtvGJ599w .image-wrapper {
    padding-left: 0;
    margin-bottom: 40px;
  }
}
.cid-uQtvGJ599w .image-wrapper .image-wrap {
  padding: 0 116px;
}
@media (max-width: 1440px) {
  .cid-uQtvGJ599w .image-wrapper .image-wrap {
    padding: 0 40px 0 0;
  }
}
@media (max-width: 992px) {
  .cid-uQtvGJ599w .image-wrapper .image-wrap {
    padding: 0;
  }
}
.cid-uQtvGJ599w .image-wrapper .image-wrap img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQtvGJ599w .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-uQtvGJ599w .content-wrapper {
  padding-right: 100px;
}
@media (max-width: 1200px) {
  .cid-uQtvGJ599w .content-wrapper {
    padding-right: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtvGJ599w .content-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uQtvGJ599w .content-wrapper .mbr-desc {
  font-family: "Source Serif 4", sans-serif !important;
  margin-bottom: 40px;
}
.cid-uQtvGJ599w .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQtvGJ599w .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uQtvGJ599w .mbr-desc {
  color: #733f6b;
}
.cid-uQtvGJ599w .mbr-section-title {
  color: #1e1d1c;
}
.cid-uQtvGJ599w .mbr-section-title,
.cid-uQtvGJ599w .mbr-section-btn {
  color: #ff7f11;
}
.cid-uQtyxmur99 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uQtyxmur99 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQtyxmur99 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQtyxmur99 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uQtyxmur99 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uQtyxmur99 .container {
    padding: 0 20px;
  }
}
.cid-uQtyxmur99 .row {
  justify-content: space-between;
}
.cid-uQtyxmur99 .card {
  justify-content: center;
}
.cid-uQtyxmur99 .image-wrapper {
  padding-left: 100px;
  padding-left: 0;
  padding-right: 100px;
}
@media (max-width: 1200px) {
  .cid-uQtyxmur99 .image-wrapper {
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtyxmur99 .image-wrapper {
    padding-left: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 1200px) {
  .cid-uQtyxmur99 .image-wrapper {
    padding-right: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtyxmur99 .image-wrapper {
    padding-right: 0;
  }
}
.cid-uQtyxmur99 .image-wrapper .image-wrap {
  padding: 0 116px;
}
@media (max-width: 1440px) {
  .cid-uQtyxmur99 .image-wrapper .image-wrap {
    padding: 0 40px 0 0;
  }
}
@media (max-width: 992px) {
  .cid-uQtyxmur99 .image-wrapper .image-wrap {
    padding: 0;
  }
}
@media (max-width: 1440px) {
  .cid-uQtyxmur99 .image-wrapper .image-wrap {
    padding: 0 0 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uQtyxmur99 .image-wrapper .image-wrap {
    padding: 0;
  }
}
.cid-uQtyxmur99 .image-wrapper .image-wrap img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQtyxmur99 .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-uQtyxmur99 .content-wrapper {
  padding-right: 100px;
  padding-right: 0;
  padding-left: 100px;
}
@media (max-width: 1200px) {
  .cid-uQtyxmur99 .content-wrapper {
    padding-right: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtyxmur99 .content-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 1200px) {
  .cid-uQtyxmur99 .content-wrapper {
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtyxmur99 .content-wrapper {
    padding-left: 0;
  }
}
.cid-uQtyxmur99 .content-wrapper .mbr-desc {
  font-family: "Source Serif 4", sans-serif !important;
  margin-bottom: 40px;
}
.cid-uQtyxmur99 .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQtyxmur99 .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uQtyxmur99 .mbr-desc {
  color: #733f6b;
}
.cid-uQtyxmur99 .mbr-section-title {
  color: #1e1d1c;
}
.cid-uQtyxmur99 .mbr-section-title,
.cid-uQtyxmur99 .mbr-section-btn {
  color: #44af69;
}
.cid-uQtCmMLare {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uQtCmMLare .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQtCmMLare .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQtCmMLare .col-12 {
  position: relative;
}
.cid-uQtCmMLare img {
  max-width: 200px;
  display: block;
  margin-left: 2rem;
  margin-bottom: 1rem;
  margin-right: auto;
}
.cid-uQtCmMLare .image-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uQtCmMLare .image-wrapper {
    padding: 1rem;
  }
}
.cid-uQtCmMLare .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uQtCmMLare .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uQtCmMLare .row {
  align-items: center;
}
.cid-uQtCmMLare .mbr-section-title {
  color: #000000;
}
.cid-uQtzdgyw3P {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uQtzdgyw3P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQtzdgyw3P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQtzdgyw3P .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uQtzdgyw3P .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uQtzdgyw3P .container {
    padding: 0 20px;
  }
}
.cid-uQtzdgyw3P .row {
  justify-content: space-between;
}
.cid-uQtzdgyw3P .card {
  justify-content: center;
}
.cid-uQtzdgyw3P .image-wrapper {
  padding-left: 100px;
}
@media (max-width: 1200px) {
  .cid-uQtzdgyw3P .image-wrapper {
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtzdgyw3P .image-wrapper {
    padding-left: 0;
    margin-bottom: 40px;
  }
}
.cid-uQtzdgyw3P .image-wrapper .image-wrap {
  padding: 0 116px;
}
@media (max-width: 1440px) {
  .cid-uQtzdgyw3P .image-wrapper .image-wrap {
    padding: 0 40px 0 0;
  }
}
@media (max-width: 992px) {
  .cid-uQtzdgyw3P .image-wrapper .image-wrap {
    padding: 0;
  }
}
.cid-uQtzdgyw3P .image-wrapper .image-wrap img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQtzdgyw3P .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-uQtzdgyw3P .content-wrapper {
  padding-right: 100px;
}
@media (max-width: 1200px) {
  .cid-uQtzdgyw3P .content-wrapper {
    padding-right: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtzdgyw3P .content-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uQtzdgyw3P .content-wrapper .mbr-desc {
  font-family: "Source Serif 4", sans-serif !important;
  margin-bottom: 40px;
}
.cid-uQtzdgyw3P .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQtzdgyw3P .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uQtzdgyw3P .mbr-desc {
  color: #733f6b;
}
.cid-uQtzdgyw3P .mbr-section-title {
  color: #1e1d1c;
}
.cid-uQtzdgyw3P .mbr-section-title,
.cid-uQtzdgyw3P .mbr-section-btn {
  color: #9cb7c8;
}
.cid-uQtA52BQRK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uQtA52BQRK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQtA52BQRK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQtA52BQRK .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uQtA52BQRK .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uQtA52BQRK .container {
    padding: 0 20px;
  }
}
.cid-uQtA52BQRK .row {
  justify-content: space-between;
}
.cid-uQtA52BQRK .card {
  justify-content: center;
}
.cid-uQtA52BQRK .image-wrapper {
  padding-left: 100px;
  padding-left: 0;
  padding-right: 100px;
}
@media (max-width: 1200px) {
  .cid-uQtA52BQRK .image-wrapper {
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtA52BQRK .image-wrapper {
    padding-left: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 1200px) {
  .cid-uQtA52BQRK .image-wrapper {
    padding-right: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtA52BQRK .image-wrapper {
    padding-right: 0;
  }
}
.cid-uQtA52BQRK .image-wrapper .image-wrap {
  padding: 0 116px;
}
@media (max-width: 1440px) {
  .cid-uQtA52BQRK .image-wrapper .image-wrap {
    padding: 0 40px 0 0;
  }
}
@media (max-width: 992px) {
  .cid-uQtA52BQRK .image-wrapper .image-wrap {
    padding: 0;
  }
}
@media (max-width: 1440px) {
  .cid-uQtA52BQRK .image-wrapper .image-wrap {
    padding: 0 0 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uQtA52BQRK .image-wrapper .image-wrap {
    padding: 0;
  }
}
.cid-uQtA52BQRK .image-wrapper .image-wrap img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQtA52BQRK .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-uQtA52BQRK .content-wrapper {
  padding-right: 100px;
  padding-right: 0;
  padding-left: 100px;
}
@media (max-width: 1200px) {
  .cid-uQtA52BQRK .content-wrapper {
    padding-right: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtA52BQRK .content-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 1200px) {
  .cid-uQtA52BQRK .content-wrapper {
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtA52BQRK .content-wrapper {
    padding-left: 0;
  }
}
.cid-uQtA52BQRK .content-wrapper .mbr-desc {
  font-family: "Source Serif 4", sans-serif !important;
  margin-bottom: 40px;
}
.cid-uQtA52BQRK .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQtA52BQRK .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uQtA52BQRK .mbr-desc {
  color: #733f6b;
}
.cid-uQtA52BQRK .mbr-section-title {
  color: #1e1d1c;
}
.cid-uQtA52BQRK .mbr-section-title,
.cid-uQtA52BQRK .mbr-section-btn {
  color: #3143a2;
}
.cid-uPePup8dF2 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPePup8dF2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePup8dF2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePup8dF2 .col-12 {
  position: relative;
}
.cid-uPePup8dF2 img {
  max-width: 200px;
  display: block;
  margin-left: 2rem;
  margin-bottom: 1rem;
  margin-right: auto;
}
.cid-uPePup8dF2 .image-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uPePup8dF2 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uPePup8dF2 .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uPePup8dF2 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPePup8dF2 .row {
  align-items: center;
}
.cid-uPePup8dF2 .mbr-section-title {
  color: #000000;
}
.cid-uQtAowlufA {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uQtAowlufA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQtAowlufA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQtAowlufA .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uQtAowlufA .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uQtAowlufA .container {
    padding: 0 20px;
  }
}
.cid-uQtAowlufA .row {
  justify-content: space-between;
}
.cid-uQtAowlufA .card {
  justify-content: center;
}
.cid-uQtAowlufA .image-wrapper {
  padding-left: 100px;
}
@media (max-width: 1200px) {
  .cid-uQtAowlufA .image-wrapper {
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtAowlufA .image-wrapper {
    padding-left: 0;
    margin-bottom: 40px;
  }
}
.cid-uQtAowlufA .image-wrapper .image-wrap {
  padding: 0 116px;
}
@media (max-width: 1440px) {
  .cid-uQtAowlufA .image-wrapper .image-wrap {
    padding: 0 40px 0 0;
  }
}
@media (max-width: 992px) {
  .cid-uQtAowlufA .image-wrapper .image-wrap {
    padding: 0;
  }
}
.cid-uQtAowlufA .image-wrapper .image-wrap img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQtAowlufA .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-uQtAowlufA .content-wrapper {
  padding-right: 100px;
}
@media (max-width: 1200px) {
  .cid-uQtAowlufA .content-wrapper {
    padding-right: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtAowlufA .content-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uQtAowlufA .content-wrapper .mbr-desc {
  font-family: "Source Serif 4", sans-serif !important;
  margin-bottom: 40px;
}
.cid-uQtAowlufA .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQtAowlufA .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uQtAowlufA .mbr-desc {
  color: #733f6b;
}
.cid-uQtAowlufA .mbr-section-title {
  color: #1e1d1c;
}
.cid-uQtAowlufA .mbr-section-title,
.cid-uQtAowlufA .mbr-section-btn {
  color: #cf1010;
}
.cid-uQtBKehwFU {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uQtBKehwFU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQtBKehwFU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQtBKehwFU .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uQtBKehwFU .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uQtBKehwFU .container {
    padding: 0 20px;
  }
}
.cid-uQtBKehwFU .row {
  justify-content: space-between;
}
.cid-uQtBKehwFU .card {
  justify-content: center;
}
.cid-uQtBKehwFU .image-wrapper {
  padding-left: 100px;
  padding-left: 0;
  padding-right: 100px;
}
@media (max-width: 1200px) {
  .cid-uQtBKehwFU .image-wrapper {
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtBKehwFU .image-wrapper {
    padding-left: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 1200px) {
  .cid-uQtBKehwFU .image-wrapper {
    padding-right: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtBKehwFU .image-wrapper {
    padding-right: 0;
  }
}
.cid-uQtBKehwFU .image-wrapper .image-wrap {
  padding: 0 116px;
}
@media (max-width: 1440px) {
  .cid-uQtBKehwFU .image-wrapper .image-wrap {
    padding: 0 40px 0 0;
  }
}
@media (max-width: 992px) {
  .cid-uQtBKehwFU .image-wrapper .image-wrap {
    padding: 0;
  }
}
@media (max-width: 1440px) {
  .cid-uQtBKehwFU .image-wrapper .image-wrap {
    padding: 0 0 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uQtBKehwFU .image-wrapper .image-wrap {
    padding: 0;
  }
}
.cid-uQtBKehwFU .image-wrapper .image-wrap img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQtBKehwFU .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-uQtBKehwFU .content-wrapper {
  padding-right: 100px;
  padding-right: 0;
  padding-left: 100px;
}
@media (max-width: 1200px) {
  .cid-uQtBKehwFU .content-wrapper {
    padding-right: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtBKehwFU .content-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 1200px) {
  .cid-uQtBKehwFU .content-wrapper {
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uQtBKehwFU .content-wrapper {
    padding-left: 0;
  }
}
.cid-uQtBKehwFU .content-wrapper .mbr-desc {
  font-family: "Source Serif 4", sans-serif !important;
  margin-bottom: 40px;
}
.cid-uQtBKehwFU .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQtBKehwFU .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uQtBKehwFU .mbr-desc {
  color: #733f6b;
}
.cid-uQtBKehwFU .mbr-section-title {
  color: #1e1d1c;
}
.cid-uQtBKehwFU .mbr-section-title,
.cid-uQtBKehwFU .mbr-section-btn {
  color: #e2b11d;
}
.cid-uRHCyoBrJv {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uRHCyoBrJv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRHCyoBrJv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRHCyoBrJv .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uRHCyoBrJv .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uRHCyoBrJv .container {
    padding: 0 20px;
  }
}
.cid-uRHCyoBrJv .row {
  justify-content: space-between;
}
.cid-uRHCyoBrJv .card {
  justify-content: center;
}
.cid-uRHCyoBrJv .image-wrapper {
  padding-left: 100px;
}
@media (max-width: 1200px) {
  .cid-uRHCyoBrJv .image-wrapper {
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uRHCyoBrJv .image-wrapper {
    padding-left: 0;
    margin-bottom: 40px;
  }
}
.cid-uRHCyoBrJv .image-wrapper .image-wrap {
  padding: 0 116px;
}
@media (max-width: 1440px) {
  .cid-uRHCyoBrJv .image-wrapper .image-wrap {
    padding: 0 40px 0 0;
  }
}
@media (max-width: 992px) {
  .cid-uRHCyoBrJv .image-wrapper .image-wrap {
    padding: 0;
  }
}
.cid-uRHCyoBrJv .image-wrapper .image-wrap img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uRHCyoBrJv .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-uRHCyoBrJv .content-wrapper {
  padding-right: 100px;
}
@media (max-width: 1200px) {
  .cid-uRHCyoBrJv .content-wrapper {
    padding-right: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uRHCyoBrJv .content-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uRHCyoBrJv .content-wrapper .mbr-desc {
  font-family: "Source Serif 4", sans-serif !important;
  margin-bottom: 40px;
}
.cid-uRHCyoBrJv .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uRHCyoBrJv .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uRHCyoBrJv .mbr-desc {
  color: #733f6b;
}
.cid-uRHCyoBrJv .mbr-section-title {
  color: #1e1d1c;
}
.cid-uRHCyoBrJv .mbr-section-title,
.cid-uRHCyoBrJv .mbr-section-btn {
  color: #901e52;
}
.cid-uPePuq6Tdf {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPePuq6Tdf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePuq6Tdf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePuq6Tdf .col-12 {
  position: relative;
}
.cid-uPePuq6Tdf img {
  max-width: 200px;
  display: block;
  margin-left: 2rem;
  margin-bottom: 1rem;
  margin-right: auto;
}
.cid-uPePuq6Tdf .image-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uPePuq6Tdf .image-wrapper {
    padding: 1rem;
  }
}
.cid-uPePuq6Tdf .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uPePuq6Tdf .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPePuq6Tdf .row {
  align-items: center;
}
.cid-uPePuq6Tdf .mbr-section-title {
  color: #000000;
}
.cid-uPePus4X1U {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-uPePus4X1U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePus4X1U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePus4X1U .row {
  justify-content: flex-start;
}
.cid-uPePus4X1U .mbr-section-title {
  color: #81358a;
  margin-bottom: 0;
  text-align: center;
}
.cid-uPePus4X1U .mbr-text {
  color: #747474;
  margin-bottom: 0;
  margin-top: 40px;
  text-align: center;
}
.cid-uQtCH8BI81 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aperidul-chuches-golosinas-snacks-aperitivos-campanas-13.jpg-1476x1476.jpg");
}
.cid-uQtCH8BI81 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQtCH8BI81 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQtCH8BI81 .image-wrap {
  height: 800px;
}
@media (max-width: 992px) {
  .cid-uQtCH8BI81 .image-wrap {
    height: 350px;
  }
}
.cid-uPePusyUpx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPePusyUpx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePusyUpx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePusyUpx .row {
  justify-content: space-between;
}
.cid-uPePusyUpx .card-wrapper {
  margin-bottom: 70px;
}
.cid-uPePusyUpx .card-wrapper .image-wrapper img {
  display: inline-flex;
  width: 106px;
  height: 106px;
  object-fit: contain;
  margin-bottom: 40px;
}
.cid-uPePusyUpx .card-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-uPePusyUpx .card-wrapper .mbr-text {
  margin-bottom: 0;
  line-height: 1.45em;
}
.cid-uPePusyUpx .mbr-section-title {
  color: #E0BDB6;
}
.cid-uPePusyUpx .mbr-text {
  color: #747474;
  text-align: left;
}
.cid-uPePusyUpx .mbr-section-title,
.cid-uPePusyUpx .image-wrapper {
  text-align: left;
  color: #81358a;
}
.cid-uPePur4rl2 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPePur4rl2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePur4rl2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePur4rl2 .col-12 {
  position: relative;
}
.cid-uPePur4rl2 img {
  max-width: 200px;
  display: block;
  margin-left: 2rem;
  margin-bottom: 1rem;
  margin-right: auto;
}
.cid-uPePur4rl2 .image-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uPePur4rl2 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uPePur4rl2 .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uPePur4rl2 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPePur4rl2 .row {
  align-items: center;
}
.cid-uPePur4rl2 .mbr-section-title {
  color: #000000;
}
.cid-uPePurzJQe {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uPePurzJQe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePurzJQe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePurzJQe input:hover {
  border-color: white !important;
}
.cid-uPePurzJQe .col-auto {
  width: 100%;
  text-align: right !important;
}
@media (max-width: 992px) {
  .cid-uPePurzJQe .mb {
    margin-bottom: 2rem;
  }
}
.cid-uPePurzJQe img {
  object-fit: cover;
}
.cid-uPePurzJQe .btn,
.cid-uPePurzJQe .btn:hover,
.cid-uPePurzJQe .btn:focus,
.cid-uPePurzJQe .btn:active {
  background: transparent !important;
  border: none !important;
  color: white;
  font-weight: 400;
  padding: 0;
  margin: 0;
}
.cid-uPePurzJQe .item-wrapper {
  width: 100%;
}
.cid-uPePurzJQe .icon-wrap {
  display: inline-flex;
  margin-top: 2rem;
}
.cid-uPePurzJQe .card-box {
  padding: 3rem 2rem;
  width: 100%;
  display: inline-flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-uPePurzJQe .card-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uPePurzJQe .card-box {
    padding: 1rem;
  }
}
.cid-uPePurzJQe .mobi-mbri {
  color: black;
  background: #000000;
  font-size: 1.2rem !important;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding-top: 1px;
  margin-left: 1rem;
}
.cid-uPePurzJQe .card-wrapper {
  display: flex;
}
.cid-uPePurzJQe .wrap {
  background: #81358a;
}
.cid-uPePurzJQe .card-title {
  color: #ffffff;
  text-align: left;
}
.cid-uPePurzJQe .mbr-text,
.cid-uPePurzJQe .card-box {
  text-align: center;
  color: #ffffff;
}
.cid-uPePurzJQe .mbr-link,
.cid-uPePurzJQe .link-wrapper {
  color: #000000;
  text-align: left;
}
.cid-uPePurzJQe .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-uPePurzJQe .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uSl5mEYItY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSl5mEYItY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSl5mEYItY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSl5mEYItY .col-12 {
  position: relative;
}
.cid-uSl5mEYItY img {
  max-width: 800px;
  margin: auto;
}
.cid-uSl5mEYItY .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uSl5mEYItY .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uSl5mEYItY .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSl5mEYItY .image-wrapper {
    padding: 1rem;
  }
}
.cid-uSl5mEYItY .mbr-section-title {
  color: #000000;
}
.cid-uPePutIWJg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPePutIWJg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePutIWJg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePutIWJg .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uPePutIWJg .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uPePutIWJg .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uPePutIWJg .container {
    padding: 0 16px;
  }
}
.cid-uPePutIWJg .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uPePutIWJg .title-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uPePutIWJg .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uPePutIWJg .image-wrapper img {
  height: 610px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uPePutIWJg .image-wrapper img {
    height: 350px;
  }
}
.cid-uPePutIWJg .content-wrapper {
  margin-left: 82px;
}
@media (max-width: 992px) {
  .cid-uPePutIWJg .content-wrapper {
    margin: 0;
  }
}
.cid-uPePutIWJg .desc-wrapper {
  margin-bottom: 24px;
}
.cid-uPePutIWJg .desc-wrapper .mbr-desc {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 16px;
}
.cid-uPePutIWJg .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-image: linear-gradient(to bottom, #81358a, #e61b72);
}
.cid-uPePutIWJg .dragArea.row .mbr-section-title {
  margin-bottom: 32px !important;
}
@media (max-width: 992px) {
  .cid-uPePutIWJg .dragArea.row .mbr-section-title {
    margin-bottom: 16px !important;
  }
}
.cid-uPePutIWJg .dragArea.row .mbr-text {
  margin-bottom: 32px !important;
}
@media (max-width: 992px) {
  .cid-uPePutIWJg .dragArea.row .mbr-text {
    margin-bottom: 16px !important;
  }
}
.cid-uPePutIWJg .dragArea.row .form-group {
  margin-bottom: 24px !important;
}
.cid-uPePutIWJg .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 16px;
}
.cid-uPePutIWJg .dragArea.row .form-group .form-control {
  padding: 16px 0;
  border: none !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: transparent;
  border-bottom: 1px solid #c1c1c1 !important;
}
.cid-uPePutIWJg .dragArea.row .form-group .form-control:hover,
.cid-uPePutIWJg .dragArea.row .form-group .form-control:focus {
  border: none !important;
  border-bottom: 1px solid #c1c1c1 !important;
}
.cid-uPePutIWJg .dragArea.row .form-group .form-control::placeholder {
  color: #81358a;
  opacity: .7;
}
.cid-uPePutIWJg .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uPePutIWJg .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-uPePutIWJg .dragArea.row .form-group .form-check .form-check-input {
  background-color: #fed243;
  border-color: #81358a;
  border-radius: 0;
}
.cid-uPePutIWJg .dragArea.row .form-group .form-check .form-check-input:focus {
  background-color: #81358a;
}
.cid-uPePutIWJg .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 16px;
}
.cid-uPePutIWJg .dragArea.row .mbr-section-btn .btn {
  width: 100%;
}
.cid-uPePutIWJg .mbr-section-title {
  color: #1c1c1c;
}
.cid-uPePutIWJg .mbr-desc {
  color: #1c1c1c;
}
.cid-uPePutIWJg .mbr-text {
  color: #1c1c1c;
}
.cid-uPePutIWJg P {
  color: #407cae;
}
.cid-uPePutIWJg H5 {
  color: #407cae;
}
.cid-uPePuuhGMn {
  background-color: #ffffff;
}
.cid-uPePuuhGMn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePuuhGMn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePuuhGMn .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uPePuuhGMn .row {
  align-items: center;
}
.cid-uPePuuhGMn .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uPePuuhGMn .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uPePuuhGMn .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uPePuuhGMn .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uPePuuhGMn .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uPePuuhGMn .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPePuuhGMn .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPePuuhGMn .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uPePuuhGMn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPePuuhGMn .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uPePuuhGMn .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uPePuuhGMn .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uPePuuhGMn .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uPePuuhGMn .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uPePuuhGMn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uPePuuhGMn .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPePuuhGMn .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #81358a !important;
}
.cid-uPePuuhGMn .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uPePuuhGMn .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uPePuuhGMn .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uPePuuhGMn .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #81358a;
}
@media (max-width: 991px) {
  .cid-uPePuuhGMn .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uPePuuhGMn .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uPePuuhGMn .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uPePuuhGMn .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uPePuuhGMn .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uPePuuhGMn .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uPePuuhGMn .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uPePuuhGMn .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uPePuuhGMn .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uPePuuhGMn .contact-text {
  width: 100%;
  color: #e61b72;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uPePuuhGMn .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uPePuuhGMn .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uPePuuhGMn .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uPePuuhGMn .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uPePuuhGMn .contact-container {
    width: 100%;
  }
}
.cid-uPePuuhGMn .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #81358a;
}
.cid-uPePuuhGMn .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uPePuuhGMn .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uPePuuhGMn .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uPePuuhGMn .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uPePuuhGMn .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #ffffff;
}
.cid-uPePuuhGMn .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uPePuuhGMn .copyright {
  color: #81358a;
  text-align: center;
}
.cid-uPePuuhGMn .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uPePuuhGMn .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #81358a 27%, #81358a 50%, #81358a 79%);
}
.cid-uPePuuhGMn .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #e61b72 27%, #e61b72 50%, #e61b72 79%);
}
.cid-uPePwAPsRf {
  overflow: visible;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 112px;
}
@media (max-width: 767px) {
  .cid-uPePwAPsRf {
    min-height: 77px;
  }
}
.cid-uPePwAPsRf nav.navbar {
  position: fixed;
}
.cid-uPePwAPsRf .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-uPePwAPsRf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPePwAPsRf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPePwAPsRf .dropdown-item:hover,
.cid-uPePwAPsRf .dropdown-item:focus {
  background: #81358a !important;
  color: inherit !important;
}
.cid-uPePwAPsRf .dropdown-item:hover span {
  color: white;
}
.cid-uPePwAPsRf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPePwAPsRf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPePwAPsRf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPePwAPsRf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPePwAPsRf .nav-link {
  position: relative;
}
.cid-uPePwAPsRf .container {
  display: flex;
  gap: 1.5rem;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uPePwAPsRf .container {
    flex-wrap: nowrap;
  }
}
.cid-uPePwAPsRf .iconfont-wrapper {
  color: #1f1d1a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPePwAPsRf .iconfont-wrapper:hover {
  text-decoration-line: none !important;
}
.cid-uPePwAPsRf .dropdown-menu,
.cid-uPePwAPsRf .navbar.opened {
  background: #d9b8e6 !important;
}
.cid-uPePwAPsRf .nav-item:focus,
.cid-uPePwAPsRf .nav-link:focus {
  outline: none;
}
.cid-uPePwAPsRf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPePwAPsRf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPePwAPsRf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPePwAPsRf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPePwAPsRf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPePwAPsRf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPePwAPsRf .navbar {
  min-height: 112px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: #d9b8e6;
  border-radius: 0 !important;
  padding: 16px 0 !important;
}
@media (max-width: 767px) {
  .cid-uPePwAPsRf .navbar {
    min-height: 77px;
    padding: 8px 0 !important;
  }
}
.cid-uPePwAPsRf .navbar.opened {
  transition: all 0.3s;
}
.cid-uPePwAPsRf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPePwAPsRf .navbar .navbar-logo img {
  width: auto;
}
.cid-uPePwAPsRf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPePwAPsRf .navbar.collapsed {
  justify-content: center;
}
.cid-uPePwAPsRf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPePwAPsRf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPePwAPsRf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uPePwAPsRf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPePwAPsRf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPePwAPsRf .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-uPePwAPsRf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPePwAPsRf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPePwAPsRf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPePwAPsRf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPePwAPsRf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPePwAPsRf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPePwAPsRf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPePwAPsRf .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-uPePwAPsRf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPePwAPsRf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPePwAPsRf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPePwAPsRf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uPePwAPsRf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPePwAPsRf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPePwAPsRf .navbar.navbar-short {
  min-height: 112px;
}
@media (max-width: 767px) {
  .cid-uPePwAPsRf .navbar.navbar-short {
    min-height: 77px;
  }
}
.cid-uPePwAPsRf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPePwAPsRf .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uPePwAPsRf .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  margin: 0;
}
.cid-uPePwAPsRf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPePwAPsRf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPePwAPsRf .dropdown-item.active,
.cid-uPePwAPsRf .dropdown-item:active {
  background-color: transparent;
}
.cid-uPePwAPsRf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPePwAPsRf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPePwAPsRf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPePwAPsRf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9b8e6;
}
.cid-uPePwAPsRf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPePwAPsRf .navbar .navbar-collapse .dropdown .dropdown-menu {
  background: #ffffff !important;
}
.cid-uPePwAPsRf .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPePwAPsRf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPePwAPsRf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPePwAPsRf .navbar-buttons {
  text-align: center;
}
.cid-uPePwAPsRf button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin-left: 0.5rem;
  margin-right: 12px;
}
.cid-uPePwAPsRf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uPePwAPsRf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPePwAPsRf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPePwAPsRf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPePwAPsRf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPePwAPsRf button.navbar-toggler .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000000;
  transition: all 0.2s;
}
.cid-uPePwAPsRf .navbar-toggler-close {
  position: absolute !important;
  right: 12px;
  top: 10px;
  margin-right: 0 !important;
}
.cid-uPePwAPsRf .navbar-toggler-close .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPePwAPsRf .navbar-toggler-close .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPePwAPsRf .navbar-toggler-close .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPePwAPsRf .navbar-toggler-close .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPePwAPsRf .navbar-toggler-close .hamburger-bg {
  opacity: 0;
  background-color: #374151 !important;
  transition: .3s;
  border-radius: 0 !important;
}
.cid-uPePwAPsRf .navbar-toggler-close .hamburger-bg:hover {
  opacity: 0.1 !important;
}
.cid-uPePwAPsRf .navbar-toggler-close:hover .hamburger-bg {
  opacity: 0.1 !important;
}
.cid-uPePwAPsRf button.navbar-toggler-close {
  margin-right: 0;
}
.cid-uPePwAPsRf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPePwAPsRf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPePwAPsRf .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-uPePwAPsRf .navbar {
    height: 70px;
  }
  .cid-uPePwAPsRf .navbar.opened {
    height: auto;
  }
  .cid-uPePwAPsRf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPePwAPsRf .navbar-brand-main {
  max-width: 30%;
}
.cid-uPePwAPsRf .navbar-nav-main {
  margin: 0;
  flex-grow: 1;
  justify-content: flex-end;
}
.cid-uPePwAPsRf .navbar-nav-main .nav-item {
  margin: 0 !important;
}
.cid-uPePwAPsRf .navbar-nav-main .nav-item .nav-link {
  padding: 15px !important;
  margin: 0 !important;
}
.cid-uPePwAPsRf .navbar-nav-main .nav-item .nav-link:hover {
  text-decoration: underline;
}
.cid-uPePwAPsRf .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-uPePwAPsRf .navbar-buttons-main {
  margin-left: 6.4rem;
  max-width: 30%;
}
@media (max-width: 991px) {
  .cid-uPePwAPsRf .navbar-buttons-main {
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uPePwAPsRf .navbar-buttons-main {
    display: none;
  }
}
.cid-uPePwAPsRf .navbar-toggler-open {
  position: relative;
  z-index: 10 !important;
}
.cid-uPePwAPsRf .navbar-toggler {
  position: relative;
  z-index: 12;
}
.cid-uPePwAPsRf .navbar-collapse {
  display: none !important;
  z-index: 11 !important;
}
@media (max-width: 991px) {
  .cid-uPePwAPsRf .container,
  .cid-uPePwAPsRf .container-fluid {
    justify-content: flex-end;
  }
  .cid-uPePwAPsRf .navbar-brand-main {
    max-width: 50%;
    margin-right: auto;
  }
  .cid-uPePwAPsRf .navbar-nav-main {
    display: none !important;
  }
  .cid-uPePwAPsRf .sidbar-nav {
    width: 100%;
    align-items: center;
  }
  .cid-uPePwAPsRf .sidbar-nav .nav-item {
    margin: 0  !important;
    padding: 1rem !important;
    width: 100%;
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-uPePwAPsRf .sidbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-uPePwAPsRf .sidbar-nav .nav-item .nav-link:hover {
    color: inherit !important;
  }
  .cid-uPePwAPsRf .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-uPePwAPsRf .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: stretch !important;
    position: fixed;
    background-color: #ffffff;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-uPePwAPsRf .navbar-collapse .mbr-section-btn {
    margin-top: 18px;
    padding: 0 16px;
    width: 100%;
  }
  .cid-uPePwAPsRf .navbar-collapse .mbr-section-btn .btn {
    width: 100%;
  }
  .cid-uPePwAPsRf .navbar-collapse .dropdown-item {
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-uPePwAPsRf .navbar-collapse .dropdown-item:hover,
  .cid-uPePwAPsRf .navbar-collapse .dropdown-item:focus {
    background: #ffffff !important;
    color: inherit !important;
  }
  .cid-uPePwAPsRf .navbar-collapse.show {
    padding: 28px 0;
    position: fixed;
    background-color: #ffffff;
    width: 500px;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-uPePwAPsRf .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-uPePwAPsRf .navbar-collapse.show {
    width: 100% !important;
  }
}
.cid-uPePwBEdCZ {
  background-image: url("../../../assets/images/tienda-aperidul-10.jpg-1772x1181.jpg");
  display: flex;
  align-items: center;
}
.cid-uPePwBEdCZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePwBEdCZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePwBEdCZ .row {
  justify-content: flex-start;
}
.cid-uPePwBEdCZ .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uPePwBEdCZ .mbr-section-subtitle {
  color: #FEF9EE;
}
.cid-uPePwBEdCZ .mbr-text {
  color: #FEF9EE;
}
.cid-uPePwBEdCZ .mbr-text,
.cid-uPePwBEdCZ .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uPePwBEdCZ .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uPePwC1YE6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uPePwC1YE6 img {
  border-radius: 0px;
}
.cid-uPePwC1YE6 .row {
  justify-content: center;
}
.cid-uPePwC1YE6 .mbr-section-title {
  margin-top: 24px;
  text-align: center;
  color: #8c8c95;
}
.cid-uPePwC1YE6 .container {
  max-width: 1132px;
}
.cid-uQyU2zcZei {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-uQyU2zcZei .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQyU2zcZei .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQyU2zcZei .row {
  justify-content: flex-start;
}
.cid-uQyU2zcZei .mbr-section-title {
  color: #81358a;
  margin-bottom: 0;
  text-align: center;
}
.cid-uQyU2zcZei .mbr-text {
  color: #747474;
  margin-bottom: 0;
  margin-top: 40px;
  text-align: center;
}
.cid-uQyVpq8A8e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uQyVpq8A8e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQyVpq8A8e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQyVpq8A8e .card-wrapper {
  border: 2px solid #81358a;
  padding: 3rem 2.25rem;
  background: #ffffff;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uQyVpq8A8e .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uQyVpq8A8e .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-uQyVpq8A8e .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uQyVpq8A8e .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uQyVpq8A8e .google-map {
  height: 100%;
  position: relative;
}
.cid-uQyVpq8A8e .google-map iframe {
  padding: 2px;
  background-color: #000000;
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uQyVpq8A8e .google-map iframe {
    min-height: 350px;
  }
}
.cid-uQyVpq8A8e .google-map [data-state-details] {
  color: #4b4b4b;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uQyVpq8A8e .google-map[data-state] {
  background: #ffffff;
}
.cid-uQyVpq8A8e .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uQyVpq8A8e ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uQyVpq8A8e .content-head {
  max-width: 800px;
}
.cid-uQyVpq8A8e .mbr-section-title {
  color: #81358a;
  text-align: left;
}
.cid-uQyVpq8A8e .cardTitle {
  color: #000000;
}
.cid-uQyVpq8A8e .list,
.cid-uQyVpq8A8e .item-wrap {
  color: #81358a;
}
.cid-uQyXIjfcot {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uQyXIjfcot .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQyXIjfcot .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQyXIjfcot .card-wrapper {
  border: 2px solid #81358a;
  padding: 3rem 2.25rem;
  background: #ffffff;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uQyXIjfcot .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uQyXIjfcot .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-uQyXIjfcot .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uQyXIjfcot .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uQyXIjfcot .google-map {
  height: 100%;
  position: relative;
}
.cid-uQyXIjfcot .google-map iframe {
  padding: 2px;
  background-color: #000000;
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uQyXIjfcot .google-map iframe {
    min-height: 350px;
  }
}
.cid-uQyXIjfcot .google-map [data-state-details] {
  color: #4b4b4b;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uQyXIjfcot .google-map[data-state] {
  background: #ffffff;
}
.cid-uQyXIjfcot .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uQyXIjfcot ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uQyXIjfcot .content-head {
  max-width: 800px;
}
.cid-uQyXIjfcot .mbr-section-title {
  color: #81358a;
  text-align: left;
}
.cid-uQyXIjfcot .cardTitle {
  color: #000000;
}
.cid-uQyXIjfcot .list,
.cid-uQyXIjfcot .item-wrap {
  color: #81358a;
}
.cid-uQyYbFgZey {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uQyYbFgZey .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQyYbFgZey .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQyYbFgZey .card-wrapper {
  border: 2px solid #81358a;
  padding: 3rem 2.25rem;
  background: #ffffff;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uQyYbFgZey .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uQyYbFgZey .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-uQyYbFgZey .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uQyYbFgZey .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uQyYbFgZey .google-map {
  height: 100%;
  position: relative;
}
.cid-uQyYbFgZey .google-map iframe {
  padding: 2px;
  background-color: #000000;
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uQyYbFgZey .google-map iframe {
    min-height: 350px;
  }
}
.cid-uQyYbFgZey .google-map [data-state-details] {
  color: #4b4b4b;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uQyYbFgZey .google-map[data-state] {
  background: #ffffff;
}
.cid-uQyYbFgZey .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uQyYbFgZey ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uQyYbFgZey .content-head {
  max-width: 800px;
}
.cid-uQyYbFgZey .mbr-section-title {
  color: #81358a;
  text-align: left;
}
.cid-uQyYbFgZey .cardTitle {
  color: #000000;
}
.cid-uQyYbFgZey .list,
.cid-uQyYbFgZey .item-wrap {
  color: #81358a;
}
.cid-uQyZNqCftb {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQyZNqCftb .item:focus,
.cid-uQyZNqCftb span:focus {
  outline: none;
}
.cid-uQyZNqCftb .item {
  cursor: pointer;
}
.cid-uQyZNqCftb .grid-container {
  grid-row-gap: 26px;
}
.cid-uQyZNqCftb .grid-container-1,
.cid-uQyZNqCftb .grid-container-2 {
  gap: 0 26px;
}
.cid-uQyZNqCftb .mbr-section-title {
  margin-bottom: 80px;
  color: #81358a;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uQyZNqCftb .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uQyZNqCftb .content-head {
  max-width: 800px;
}
.cid-uQyZNqCftb .container,
.cid-uQyZNqCftb .container-fluid {
  overflow: hidden;
}
.cid-uQyZNqCftb .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uQyZNqCftb .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uQyZNqCftb .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 460px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-uQyZNqCftb .grid-item img {
    height: 360px;
  }
}
@media (max-width: 767px) {
  .cid-uQyZNqCftb .grid-item img {
    min-width: 35vw;
    height: 140px;
  }
}
.cid-uQyZNqCftb .grid-container-1,
.cid-uQyZNqCftb .grid-container-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uQyZNqCftb .grid-container-1 {
  align-items: flex-end;
}
.cid-uQyZNqCftb .grid-container-2 {
  align-items: flex-start;
}
.cid-uPePwEPLy3 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPePwEPLy3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePwEPLy3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePwEPLy3 .col-12 {
  position: relative;
}
.cid-uPePwEPLy3 img {
  max-width: 200px;
  display: block;
  margin-left: 2rem;
  margin-bottom: 1rem;
  margin-right: auto;
}
.cid-uPePwEPLy3 .image-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uPePwEPLy3 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uPePwEPLy3 .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uPePwEPLy3 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPePwEPLy3 .row {
  align-items: center;
}
.cid-uPePwEPLy3 .mbr-section-title {
  color: #000000;
}
.cid-uQz15BUhJE {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-uQz15BUhJE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQz15BUhJE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQz15BUhJE .row {
  justify-content: flex-start;
}
.cid-uQz15BUhJE .mbr-text {
  color: #1F1D1A;
  margin-bottom: 30px;
}
.cid-uQz15BUhJE .mbr-text,
.cid-uQz15BUhJE .mbr-section-btn {
  text-align: justify;
  color: #81358a;
}
.cid-uSl5rslA08 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSl5rslA08 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSl5rslA08 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSl5rslA08 .col-12 {
  position: relative;
}
.cid-uSl5rslA08 img {
  max-width: 800px;
  margin: auto;
}
.cid-uSl5rslA08 .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uSl5rslA08 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uSl5rslA08 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSl5rslA08 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uSl5rslA08 .mbr-section-title {
  color: #000000;
}
.cid-uPePwGgGr1 {
  padding-top: 12rem;
  position: relative;
  align-items: flex-end;
  padding-bottom: 16px;
  background-color: #ffffff;
}
.cid-uPePwGgGr1 .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
}
@media (max-width: 1440px) {
  .cid-uPePwGgGr1 .image-wrap {
    padding: 16px;
  }
}
.cid-uPePwGgGr1 .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uPePwGgGr1 .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  pointer-events: none;
}
@media (max-width: 1440px) {
  .cid-uPePwGgGr1 .image-overlay {
    padding: 16px;
  }
}
.cid-uPePwGgGr1 .image-overlay .image-over {
  background-color: #151e11;
  z-index: 2;
  opacity: 0.5;
  width: 100%;
  height: 100%;
}
.cid-uPePwGgGr1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePwGgGr1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePwGgGr1 .row {
  justify-content: center;
}
.cid-uPePwGgGr1 .card-wrapper {
  padding: 90px 30px 90px;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uPePwGgGr1 .card-wrapper {
    padding: 30px 16px;
    margin-top: 300px;
  }
}
.cid-uPePwGgGr1 .card-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
}
.cid-uPePwGgGr1 .card-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-uPePwGgGr1 .card-wrapper .label-wrapper .label-wrap .mbr-iconfont {
  font-size: 18px;
  margin-right: 12px;
  color: #e61b72;
}
.cid-uPePwGgGr1 .card-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uPePwGgGr1 .card-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uPePwGgGr1 .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uPePwGgGr1 .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uPePwGgGr1 .mbr-label,
.cid-uPePwGgGr1 .label-wrapper {
  color: #81358a;
  text-align: center;
}
.cid-uPePwGgGr1 .mbr-section-title {
  color: #fff7ee;
}
.cid-uPePwGgGr1 .mbr-text,
.cid-uPePwGgGr1 .text-wrapper {
  color: #81358a;
  text-align: center;
}
.cid-uPePwGgGr1 .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uPePwGgGr1 .mbr-section-title,
.cid-uPePwGgGr1 .mbr-section-btn {
  text-align: center;
  color: #e61b72;
}
.cid-uPePwGNd1E {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPePwGNd1E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePwGNd1E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePwGNd1E .col-12 {
  position: relative;
}
.cid-uPePwGNd1E img {
  max-width: 200px;
  display: block;
  margin-left: 2rem;
  margin-bottom: 1rem;
  margin-right: auto;
}
.cid-uPePwGNd1E .image-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uPePwGNd1E .image-wrapper {
    padding: 1rem;
  }
}
.cid-uPePwGNd1E .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uPePwGNd1E .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPePwGNd1E .row {
  align-items: center;
}
.cid-uPePwGNd1E .mbr-section-title {
  color: #000000;
}
.cid-uPePwHhmfo {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uPePwHhmfo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePwHhmfo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePwHhmfo input:hover {
  border-color: white !important;
}
.cid-uPePwHhmfo .col-auto {
  width: 100%;
  text-align: right !important;
}
@media (max-width: 992px) {
  .cid-uPePwHhmfo .mb {
    margin-bottom: 2rem;
  }
}
.cid-uPePwHhmfo img {
  object-fit: cover;
}
.cid-uPePwHhmfo .btn,
.cid-uPePwHhmfo .btn:hover,
.cid-uPePwHhmfo .btn:focus,
.cid-uPePwHhmfo .btn:active {
  background: transparent !important;
  border: none !important;
  color: white;
  font-weight: 400;
  padding: 0;
  margin: 0;
}
.cid-uPePwHhmfo .item-wrapper {
  width: 100%;
}
.cid-uPePwHhmfo .icon-wrap {
  display: inline-flex;
  margin-top: 2rem;
}
.cid-uPePwHhmfo .card-box {
  padding: 3rem 2rem;
  width: 100%;
  display: inline-flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-uPePwHhmfo .card-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uPePwHhmfo .card-box {
    padding: 1rem;
  }
}
.cid-uPePwHhmfo .mobi-mbri {
  color: black;
  background: #000000;
  font-size: 1.2rem !important;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding-top: 1px;
  margin-left: 1rem;
}
.cid-uPePwHhmfo .card-wrapper {
  display: flex;
}
.cid-uPePwHhmfo .wrap {
  background: #81358a;
}
.cid-uPePwHhmfo .card-title {
  color: #ffffff;
  text-align: left;
}
.cid-uPePwHhmfo .mbr-text,
.cid-uPePwHhmfo .card-box {
  text-align: center;
  color: #ffffff;
}
.cid-uPePwHhmfo .mbr-link,
.cid-uPePwHhmfo .link-wrapper {
  color: #000000;
  text-align: left;
}
.cid-uPePwHhmfo .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-uPePwHhmfo .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uPePwIRfpy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPePwIRfpy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePwIRfpy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePwIRfpy .row {
  margin: 0 -8px;
}
.cid-uPePwIRfpy .row .card {
  padding: 0 8px;
}
.cid-uPePwIRfpy .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .cid-uPePwIRfpy .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uPePwIRfpy .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.cid-uPePwIRfpy .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uPePwIRfpy .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uPePwIRfpy .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uPePwIRfpy .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uPePwIRfpy .image-wrapper {
  height: 100%;
}
.cid-uPePwIRfpy .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uPePwIRfpy .image-wrapper img {
    height: 300px;
  }
}
.cid-uPePwIRfpy .mbr-section-title {
  color: #2c2c26;
}
.cid-uPePwIRfpy .mbr-text,
.cid-uPePwIRfpy .text-wrapper {
  color: #63635d;
}
.cid-uPePwIRfpy .mbr-section-title,
.cid-uPePwIRfpy .mbr-section-btn {
  color: #81358a;
}
.cid-uPePwJlxJF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPePwJlxJF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePwJlxJF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePwJlxJF .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uPePwJlxJF .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uPePwJlxJF .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uPePwJlxJF .container {
    padding: 0 16px;
  }
}
.cid-uPePwJlxJF .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uPePwJlxJF .title-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uPePwJlxJF .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uPePwJlxJF .image-wrapper img {
  height: 610px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uPePwJlxJF .image-wrapper img {
    height: 350px;
  }
}
.cid-uPePwJlxJF .content-wrapper {
  margin-left: 82px;
}
@media (max-width: 992px) {
  .cid-uPePwJlxJF .content-wrapper {
    margin: 0;
  }
}
.cid-uPePwJlxJF .desc-wrapper {
  margin-bottom: 24px;
}
.cid-uPePwJlxJF .desc-wrapper .mbr-desc {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 16px;
}
.cid-uPePwJlxJF .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-image: linear-gradient(to bottom, #81358a, #e61b72);
}
.cid-uPePwJlxJF .dragArea.row .mbr-section-title {
  margin-bottom: 32px !important;
}
@media (max-width: 992px) {
  .cid-uPePwJlxJF .dragArea.row .mbr-section-title {
    margin-bottom: 16px !important;
  }
}
.cid-uPePwJlxJF .dragArea.row .mbr-text {
  margin-bottom: 32px !important;
}
@media (max-width: 992px) {
  .cid-uPePwJlxJF .dragArea.row .mbr-text {
    margin-bottom: 16px !important;
  }
}
.cid-uPePwJlxJF .dragArea.row .form-group {
  margin-bottom: 24px !important;
}
.cid-uPePwJlxJF .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 16px;
}
.cid-uPePwJlxJF .dragArea.row .form-group .form-control {
  padding: 16px 0;
  border: none !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: transparent;
  border-bottom: 1px solid #c1c1c1 !important;
}
.cid-uPePwJlxJF .dragArea.row .form-group .form-control:hover,
.cid-uPePwJlxJF .dragArea.row .form-group .form-control:focus {
  border: none !important;
  border-bottom: 1px solid #c1c1c1 !important;
}
.cid-uPePwJlxJF .dragArea.row .form-group .form-control::placeholder {
  color: #81358a;
  opacity: .7;
}
.cid-uPePwJlxJF .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uPePwJlxJF .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-uPePwJlxJF .dragArea.row .form-group .form-check .form-check-input {
  background-color: #fed243;
  border-color: #81358a;
  border-radius: 0;
}
.cid-uPePwJlxJF .dragArea.row .form-group .form-check .form-check-input:focus {
  background-color: #81358a;
}
.cid-uPePwJlxJF .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 16px;
}
.cid-uPePwJlxJF .dragArea.row .mbr-section-btn .btn {
  width: 100%;
}
.cid-uPePwJlxJF .mbr-section-title {
  color: #1c1c1c;
}
.cid-uPePwJlxJF .mbr-desc {
  color: #1c1c1c;
}
.cid-uPePwJlxJF .mbr-text {
  color: #1c1c1c;
}
.cid-uPePwJlxJF P {
  color: #407cae;
}
.cid-uPePwJlxJF H5 {
  color: #407cae;
}
.cid-uPePwJSP5o {
  background-color: #ffffff;
}
.cid-uPePwJSP5o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPePwJSP5o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPePwJSP5o .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uPePwJSP5o .row {
  align-items: center;
}
.cid-uPePwJSP5o .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uPePwJSP5o .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uPePwJSP5o .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uPePwJSP5o .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uPePwJSP5o .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uPePwJSP5o .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPePwJSP5o .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPePwJSP5o .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uPePwJSP5o .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPePwJSP5o .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uPePwJSP5o .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uPePwJSP5o .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uPePwJSP5o .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uPePwJSP5o .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uPePwJSP5o .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uPePwJSP5o .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPePwJSP5o .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #81358a !important;
}
.cid-uPePwJSP5o .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uPePwJSP5o .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uPePwJSP5o .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uPePwJSP5o .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #81358a;
}
@media (max-width: 991px) {
  .cid-uPePwJSP5o .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uPePwJSP5o .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uPePwJSP5o .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uPePwJSP5o .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uPePwJSP5o .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uPePwJSP5o .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uPePwJSP5o .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uPePwJSP5o .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uPePwJSP5o .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uPePwJSP5o .contact-text {
  width: 100%;
  color: #e61b72;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uPePwJSP5o .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uPePwJSP5o .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uPePwJSP5o .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uPePwJSP5o .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uPePwJSP5o .contact-container {
    width: 100%;
  }
}
.cid-uPePwJSP5o .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #81358a;
}
.cid-uPePwJSP5o .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uPePwJSP5o .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uPePwJSP5o .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uPePwJSP5o .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uPePwJSP5o .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #ffffff;
}
.cid-uPePwJSP5o .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uPePwJSP5o .copyright {
  color: #81358a;
  text-align: center;
}
.cid-uPePwJSP5o .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uPePwJSP5o .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #81358a 27%, #81358a 50%, #81358a 79%);
}
.cid-uPePwJSP5o .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #e61b72 27%, #e61b72 50%, #e61b72 79%);
}
.cid-t9FzZai8ud {
  overflow: visible;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 112px;
}
@media (max-width: 767px) {
  .cid-t9FzZai8ud {
    min-height: 77px;
  }
}
.cid-t9FzZai8ud nav.navbar {
  position: fixed;
}
.cid-t9FzZai8ud .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-t9FzZai8ud .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t9FzZai8ud .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t9FzZai8ud .dropdown-item:hover,
.cid-t9FzZai8ud .dropdown-item:focus {
  background: #81358a !important;
  color: inherit !important;
}
.cid-t9FzZai8ud .dropdown-item:hover span {
  color: white;
}
.cid-t9FzZai8ud .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t9FzZai8ud .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t9FzZai8ud .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t9FzZai8ud .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t9FzZai8ud .nav-link {
  position: relative;
}
.cid-t9FzZai8ud .container {
  display: flex;
  gap: 1.5rem;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t9FzZai8ud .container {
    flex-wrap: nowrap;
  }
}
.cid-t9FzZai8ud .iconfont-wrapper {
  color: #1f1d1a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t9FzZai8ud .iconfont-wrapper:hover {
  text-decoration-line: none !important;
}
.cid-t9FzZai8ud .dropdown-menu,
.cid-t9FzZai8ud .navbar.opened {
  background: #d9b8e6 !important;
}
.cid-t9FzZai8ud .nav-item:focus,
.cid-t9FzZai8ud .nav-link:focus {
  outline: none;
}
.cid-t9FzZai8ud .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t9FzZai8ud .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t9FzZai8ud .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t9FzZai8ud .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t9FzZai8ud .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t9FzZai8ud .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t9FzZai8ud .navbar {
  min-height: 112px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: #d9b8e6;
  border-radius: 0 !important;
  padding: 16px 0 !important;
}
@media (max-width: 767px) {
  .cid-t9FzZai8ud .navbar {
    min-height: 77px;
    padding: 8px 0 !important;
  }
}
.cid-t9FzZai8ud .navbar.opened {
  transition: all 0.3s;
}
.cid-t9FzZai8ud .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t9FzZai8ud .navbar .navbar-logo img {
  width: auto;
}
.cid-t9FzZai8ud .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t9FzZai8ud .navbar.collapsed {
  justify-content: center;
}
.cid-t9FzZai8ud .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t9FzZai8ud .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t9FzZai8ud .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t9FzZai8ud .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t9FzZai8ud .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t9FzZai8ud .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-t9FzZai8ud .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t9FzZai8ud .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t9FzZai8ud .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t9FzZai8ud .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t9FzZai8ud .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t9FzZai8ud .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t9FzZai8ud .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t9FzZai8ud .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-t9FzZai8ud .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t9FzZai8ud .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t9FzZai8ud .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t9FzZai8ud .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t9FzZai8ud .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t9FzZai8ud .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t9FzZai8ud .navbar.navbar-short {
  min-height: 112px;
}
@media (max-width: 767px) {
  .cid-t9FzZai8ud .navbar.navbar-short {
    min-height: 77px;
  }
}
.cid-t9FzZai8ud .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t9FzZai8ud .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t9FzZai8ud .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  margin: 0;
}
.cid-t9FzZai8ud .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t9FzZai8ud .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t9FzZai8ud .dropdown-item.active,
.cid-t9FzZai8ud .dropdown-item:active {
  background-color: transparent;
}
.cid-t9FzZai8ud .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t9FzZai8ud .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t9FzZai8ud .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t9FzZai8ud .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9b8e6;
}
.cid-t9FzZai8ud .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t9FzZai8ud .navbar .navbar-collapse .dropdown .dropdown-menu {
  background: #ffffff !important;
}
.cid-t9FzZai8ud .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t9FzZai8ud .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t9FzZai8ud ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t9FzZai8ud .navbar-buttons {
  text-align: center;
}
.cid-t9FzZai8ud button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin-left: 0.5rem;
  margin-right: 12px;
}
.cid-t9FzZai8ud button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t9FzZai8ud button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t9FzZai8ud button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t9FzZai8ud button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t9FzZai8ud button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t9FzZai8ud button.navbar-toggler .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000000;
  transition: all 0.2s;
}
.cid-t9FzZai8ud .navbar-toggler-close {
  position: absolute !important;
  right: 12px;
  top: 10px;
  margin-right: 0 !important;
}
.cid-t9FzZai8ud .navbar-toggler-close .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t9FzZai8ud .navbar-toggler-close .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t9FzZai8ud .navbar-toggler-close .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t9FzZai8ud .navbar-toggler-close .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t9FzZai8ud .navbar-toggler-close .hamburger-bg {
  opacity: 0;
  background-color: #374151 !important;
  transition: .3s;
  border-radius: 0 !important;
}
.cid-t9FzZai8ud .navbar-toggler-close .hamburger-bg:hover {
  opacity: 0.1 !important;
}
.cid-t9FzZai8ud .navbar-toggler-close:hover .hamburger-bg {
  opacity: 0.1 !important;
}
.cid-t9FzZai8ud button.navbar-toggler-close {
  margin-right: 0;
}
.cid-t9FzZai8ud .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t9FzZai8ud a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t9FzZai8ud .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-t9FzZai8ud .navbar {
    height: 70px;
  }
  .cid-t9FzZai8ud .navbar.opened {
    height: auto;
  }
  .cid-t9FzZai8ud .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t9FzZai8ud .navbar-brand-main {
  max-width: 30%;
}
.cid-t9FzZai8ud .navbar-nav-main {
  margin: 0;
  flex-grow: 1;
  justify-content: flex-end;
}
.cid-t9FzZai8ud .navbar-nav-main .nav-item {
  margin: 0 !important;
}
.cid-t9FzZai8ud .navbar-nav-main .nav-item .nav-link {
  padding: 15px !important;
  margin: 0 !important;
}
.cid-t9FzZai8ud .navbar-nav-main .nav-item .nav-link:hover {
  text-decoration: underline;
}
.cid-t9FzZai8ud .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-t9FzZai8ud .navbar-buttons-main {
  margin-left: 6.4rem;
  max-width: 30%;
}
@media (max-width: 991px) {
  .cid-t9FzZai8ud .navbar-buttons-main {
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-t9FzZai8ud .navbar-buttons-main {
    display: none;
  }
}
.cid-t9FzZai8ud .navbar-toggler-open {
  position: relative;
  z-index: 10 !important;
}
.cid-t9FzZai8ud .navbar-toggler {
  position: relative;
  z-index: 12;
}
.cid-t9FzZai8ud .navbar-collapse {
  display: none !important;
  z-index: 11 !important;
}
@media (max-width: 991px) {
  .cid-t9FzZai8ud .container,
  .cid-t9FzZai8ud .container-fluid {
    justify-content: flex-end;
  }
  .cid-t9FzZai8ud .navbar-brand-main {
    max-width: 50%;
    margin-right: auto;
  }
  .cid-t9FzZai8ud .navbar-nav-main {
    display: none !important;
  }
  .cid-t9FzZai8ud .sidbar-nav {
    width: 100%;
    align-items: center;
  }
  .cid-t9FzZai8ud .sidbar-nav .nav-item {
    margin: 0  !important;
    padding: 1rem !important;
    width: 100%;
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-t9FzZai8ud .sidbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-t9FzZai8ud .sidbar-nav .nav-item .nav-link:hover {
    color: inherit !important;
  }
  .cid-t9FzZai8ud .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-t9FzZai8ud .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: stretch !important;
    position: fixed;
    background-color: #ffffff;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-t9FzZai8ud .navbar-collapse .mbr-section-btn {
    margin-top: 18px;
    padding: 0 16px;
    width: 100%;
  }
  .cid-t9FzZai8ud .navbar-collapse .mbr-section-btn .btn {
    width: 100%;
  }
  .cid-t9FzZai8ud .navbar-collapse .dropdown-item {
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-t9FzZai8ud .navbar-collapse .dropdown-item:hover,
  .cid-t9FzZai8ud .navbar-collapse .dropdown-item:focus {
    background: #ffffff !important;
    color: inherit !important;
  }
  .cid-t9FzZai8ud .navbar-collapse.show {
    padding: 28px 0;
    position: fixed;
    background-color: #ffffff;
    width: 500px;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-t9FzZai8ud .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-t9FzZai8ud .navbar-collapse.show {
    width: 100% !important;
  }
}
.cid-uSkovSRMJs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  min-height: 280px;
  background-image: url("../../../assets/images/tienda-aperidul-16-1476x492.jpg");
  display: flex;
  align-items: center;
}
@media (min-width: 640px) {
  .cid-uSkovSRMJs {
    min-height: 300px;
  }
}
@media (min-width: 768px) {
  .cid-uSkovSRMJs {
    min-height: 380px;
  }
}
@media (min-width: 992px) {
  .cid-uSkovSRMJs {
    min-height: 420px;
  }
}
@media (min-width: 1200px) {
  .cid-uSkovSRMJs {
    min-height: 610px;
  }
}
.cid-uSkovSRMJs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSkovSRMJs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSkovSRMJs .row {
  justify-content: flex-start;
}
.cid-uSkovSRMJs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uSkovSRMJs .mbr-section-subtitle {
  color: #FEF9EE;
}
.cid-uSkovSRMJs .mbr-text {
  color: #FEF9EE;
}
.cid-uSl5vkP5WZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSl5vkP5WZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSl5vkP5WZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSl5vkP5WZ .col-12 {
  position: relative;
}
.cid-uSl5vkP5WZ img {
  max-width: 800px;
  margin: auto;
}
.cid-uSl5vkP5WZ .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uSl5vkP5WZ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uSl5vkP5WZ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSl5vkP5WZ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uSl5vkP5WZ .mbr-section-title {
  color: #000000;
}
.cid-uSknsB9obx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-uSknsB9obx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSknsB9obx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSknsB9obx .row {
  justify-content: flex-start;
}
.cid-uSknsB9obx .mbr-section-title {
  color: #1F1D1A;
  margin-bottom: 0;
}
.cid-uSknsB9obx .mbr-text {
  color: #1F1D1A;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-uPdXX9qFwF {
  background-color: #ffffff;
}
.cid-uPdXX9qFwF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPdXX9qFwF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPdXX9qFwF .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uPdXX9qFwF .row {
  align-items: center;
}
.cid-uPdXX9qFwF .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uPdXX9qFwF .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uPdXX9qFwF .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uPdXX9qFwF .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uPdXX9qFwF .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uPdXX9qFwF .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPdXX9qFwF .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPdXX9qFwF .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uPdXX9qFwF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPdXX9qFwF .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uPdXX9qFwF .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uPdXX9qFwF .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uPdXX9qFwF .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uPdXX9qFwF .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uPdXX9qFwF .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uPdXX9qFwF .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPdXX9qFwF .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #81358a !important;
}
.cid-uPdXX9qFwF .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uPdXX9qFwF .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uPdXX9qFwF .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uPdXX9qFwF .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #81358a;
}
@media (max-width: 991px) {
  .cid-uPdXX9qFwF .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uPdXX9qFwF .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uPdXX9qFwF .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uPdXX9qFwF .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uPdXX9qFwF .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uPdXX9qFwF .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uPdXX9qFwF .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uPdXX9qFwF .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uPdXX9qFwF .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uPdXX9qFwF .contact-text {
  width: 100%;
  color: #e61b72;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uPdXX9qFwF .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uPdXX9qFwF .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uPdXX9qFwF .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uPdXX9qFwF .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uPdXX9qFwF .contact-container {
    width: 100%;
  }
}
.cid-uPdXX9qFwF .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #81358a;
}
.cid-uPdXX9qFwF .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uPdXX9qFwF .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uPdXX9qFwF .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uPdXX9qFwF .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uPdXX9qFwF .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #ffffff;
}
.cid-uPdXX9qFwF .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uPdXX9qFwF .copyright {
  color: #81358a;
  text-align: center;
}
.cid-uPdXX9qFwF .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uPdXX9qFwF .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #81358a 27%, #81358a 50%, #81358a 79%);
}
.cid-uPdXX9qFwF .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #e61b72 27%, #e61b72 50%, #e61b72 79%);
}
.cid-uSkJKe21Nj {
  overflow: visible;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 112px;
}
@media (max-width: 767px) {
  .cid-uSkJKe21Nj {
    min-height: 77px;
  }
}
.cid-uSkJKe21Nj nav.navbar {
  position: fixed;
}
.cid-uSkJKe21Nj .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-uSkJKe21Nj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uSkJKe21Nj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSkJKe21Nj .dropdown-item:hover,
.cid-uSkJKe21Nj .dropdown-item:focus {
  background: #81358a !important;
  color: inherit !important;
}
.cid-uSkJKe21Nj .dropdown-item:hover span {
  color: white;
}
.cid-uSkJKe21Nj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSkJKe21Nj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSkJKe21Nj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSkJKe21Nj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSkJKe21Nj .nav-link {
  position: relative;
}
.cid-uSkJKe21Nj .container {
  display: flex;
  gap: 1.5rem;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uSkJKe21Nj .container {
    flex-wrap: nowrap;
  }
}
.cid-uSkJKe21Nj .iconfont-wrapper {
  color: #1f1d1a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSkJKe21Nj .iconfont-wrapper:hover {
  text-decoration-line: none !important;
}
.cid-uSkJKe21Nj .dropdown-menu,
.cid-uSkJKe21Nj .navbar.opened {
  background: #d9b8e6 !important;
}
.cid-uSkJKe21Nj .nav-item:focus,
.cid-uSkJKe21Nj .nav-link:focus {
  outline: none;
}
.cid-uSkJKe21Nj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSkJKe21Nj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSkJKe21Nj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSkJKe21Nj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSkJKe21Nj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSkJKe21Nj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSkJKe21Nj .navbar {
  min-height: 112px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: #d9b8e6;
  border-radius: 0 !important;
  padding: 16px 0 !important;
}
@media (max-width: 767px) {
  .cid-uSkJKe21Nj .navbar {
    min-height: 77px;
    padding: 8px 0 !important;
  }
}
.cid-uSkJKe21Nj .navbar.opened {
  transition: all 0.3s;
}
.cid-uSkJKe21Nj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSkJKe21Nj .navbar .navbar-logo img {
  width: auto;
}
.cid-uSkJKe21Nj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSkJKe21Nj .navbar.collapsed {
  justify-content: center;
}
.cid-uSkJKe21Nj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSkJKe21Nj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSkJKe21Nj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uSkJKe21Nj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSkJKe21Nj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSkJKe21Nj .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-uSkJKe21Nj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSkJKe21Nj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSkJKe21Nj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSkJKe21Nj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSkJKe21Nj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSkJKe21Nj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSkJKe21Nj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSkJKe21Nj .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-uSkJKe21Nj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSkJKe21Nj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSkJKe21Nj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSkJKe21Nj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uSkJKe21Nj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSkJKe21Nj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uSkJKe21Nj .navbar.navbar-short {
  min-height: 112px;
}
@media (max-width: 767px) {
  .cid-uSkJKe21Nj .navbar.navbar-short {
    min-height: 77px;
  }
}
.cid-uSkJKe21Nj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSkJKe21Nj .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uSkJKe21Nj .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  margin: 0;
}
.cid-uSkJKe21Nj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSkJKe21Nj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSkJKe21Nj .dropdown-item.active,
.cid-uSkJKe21Nj .dropdown-item:active {
  background-color: transparent;
}
.cid-uSkJKe21Nj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSkJKe21Nj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSkJKe21Nj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSkJKe21Nj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9b8e6;
}
.cid-uSkJKe21Nj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSkJKe21Nj .navbar .navbar-collapse .dropdown .dropdown-menu {
  background: #ffffff !important;
}
.cid-uSkJKe21Nj .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSkJKe21Nj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSkJKe21Nj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSkJKe21Nj .navbar-buttons {
  text-align: center;
}
.cid-uSkJKe21Nj button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin-left: 0.5rem;
  margin-right: 12px;
}
.cid-uSkJKe21Nj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uSkJKe21Nj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSkJKe21Nj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSkJKe21Nj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSkJKe21Nj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSkJKe21Nj button.navbar-toggler .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000000;
  transition: all 0.2s;
}
.cid-uSkJKe21Nj .navbar-toggler-close {
  position: absolute !important;
  right: 12px;
  top: 10px;
  margin-right: 0 !important;
}
.cid-uSkJKe21Nj .navbar-toggler-close .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSkJKe21Nj .navbar-toggler-close .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSkJKe21Nj .navbar-toggler-close .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSkJKe21Nj .navbar-toggler-close .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSkJKe21Nj .navbar-toggler-close .hamburger-bg {
  opacity: 0;
  background-color: #374151 !important;
  transition: .3s;
  border-radius: 0 !important;
}
.cid-uSkJKe21Nj .navbar-toggler-close .hamburger-bg:hover {
  opacity: 0.1 !important;
}
.cid-uSkJKe21Nj .navbar-toggler-close:hover .hamburger-bg {
  opacity: 0.1 !important;
}
.cid-uSkJKe21Nj button.navbar-toggler-close {
  margin-right: 0;
}
.cid-uSkJKe21Nj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSkJKe21Nj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSkJKe21Nj .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-uSkJKe21Nj .navbar {
    height: 70px;
  }
  .cid-uSkJKe21Nj .navbar.opened {
    height: auto;
  }
  .cid-uSkJKe21Nj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSkJKe21Nj .navbar-brand-main {
  max-width: 30%;
}
.cid-uSkJKe21Nj .navbar-nav-main {
  margin: 0;
  flex-grow: 1;
  justify-content: flex-end;
}
.cid-uSkJKe21Nj .navbar-nav-main .nav-item {
  margin: 0 !important;
}
.cid-uSkJKe21Nj .navbar-nav-main .nav-item .nav-link {
  padding: 15px !important;
  margin: 0 !important;
}
.cid-uSkJKe21Nj .navbar-nav-main .nav-item .nav-link:hover {
  text-decoration: underline;
}
.cid-uSkJKe21Nj .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-uSkJKe21Nj .navbar-buttons-main {
  margin-left: 6.4rem;
  max-width: 30%;
}
@media (max-width: 991px) {
  .cid-uSkJKe21Nj .navbar-buttons-main {
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uSkJKe21Nj .navbar-buttons-main {
    display: none;
  }
}
.cid-uSkJKe21Nj .navbar-toggler-open {
  position: relative;
  z-index: 10 !important;
}
.cid-uSkJKe21Nj .navbar-toggler {
  position: relative;
  z-index: 12;
}
.cid-uSkJKe21Nj .navbar-collapse {
  display: none !important;
  z-index: 11 !important;
}
@media (max-width: 991px) {
  .cid-uSkJKe21Nj .container,
  .cid-uSkJKe21Nj .container-fluid {
    justify-content: flex-end;
  }
  .cid-uSkJKe21Nj .navbar-brand-main {
    max-width: 50%;
    margin-right: auto;
  }
  .cid-uSkJKe21Nj .navbar-nav-main {
    display: none !important;
  }
  .cid-uSkJKe21Nj .sidbar-nav {
    width: 100%;
    align-items: center;
  }
  .cid-uSkJKe21Nj .sidbar-nav .nav-item {
    margin: 0  !important;
    padding: 1rem !important;
    width: 100%;
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-uSkJKe21Nj .sidbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-uSkJKe21Nj .sidbar-nav .nav-item .nav-link:hover {
    color: inherit !important;
  }
  .cid-uSkJKe21Nj .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-uSkJKe21Nj .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: stretch !important;
    position: fixed;
    background-color: #ffffff;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-uSkJKe21Nj .navbar-collapse .mbr-section-btn {
    margin-top: 18px;
    padding: 0 16px;
    width: 100%;
  }
  .cid-uSkJKe21Nj .navbar-collapse .mbr-section-btn .btn {
    width: 100%;
  }
  .cid-uSkJKe21Nj .navbar-collapse .dropdown-item {
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-uSkJKe21Nj .navbar-collapse .dropdown-item:hover,
  .cid-uSkJKe21Nj .navbar-collapse .dropdown-item:focus {
    background: #ffffff !important;
    color: inherit !important;
  }
  .cid-uSkJKe21Nj .navbar-collapse.show {
    padding: 28px 0;
    position: fixed;
    background-color: #ffffff;
    width: 500px;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-uSkJKe21Nj .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-uSkJKe21Nj .navbar-collapse.show {
    width: 100% !important;
  }
}
.cid-uSkJKevlpP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  min-height: 280px;
  background-image: url("../../../assets/images/tienda-aperidul-12-1476x984.jpg");
  display: flex;
  align-items: center;
}
@media (min-width: 640px) {
  .cid-uSkJKevlpP {
    min-height: 300px;
  }
}
@media (min-width: 768px) {
  .cid-uSkJKevlpP {
    min-height: 380px;
  }
}
@media (min-width: 992px) {
  .cid-uSkJKevlpP {
    min-height: 420px;
  }
}
@media (min-width: 1200px) {
  .cid-uSkJKevlpP {
    min-height: 610px;
  }
}
.cid-uSkJKevlpP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSkJKevlpP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSkJKevlpP .row {
  justify-content: flex-start;
}
.cid-uSkJKevlpP .mbr-section-title {
  color: #FEF9EE;
  text-align: justify;
}
.cid-uSkJKevlpP .mbr-section-subtitle {
  color: #FEF9EE;
}
.cid-uSkJKevlpP .mbr-text {
  color: #FEF9EE;
}
.cid-uSl5zPjATs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSl5zPjATs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSl5zPjATs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSl5zPjATs .col-12 {
  position: relative;
}
.cid-uSl5zPjATs img {
  max-width: 800px;
  margin: auto;
}
.cid-uSl5zPjATs .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uSl5zPjATs .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uSl5zPjATs .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSl5zPjATs .image-wrapper {
    padding: 1rem;
  }
}
.cid-uSl5zPjATs .mbr-section-title {
  color: #000000;
}
.cid-uSkJKeLxlz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-uSkJKeLxlz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSkJKeLxlz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSkJKeLxlz .row {
  justify-content: flex-start;
}
.cid-uSkJKeLxlz .mbr-section-title {
  color: #1F1D1A;
  margin-bottom: 0;
}
.cid-uSkJKeLxlz .mbr-text {
  color: #1F1D1A;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-uSkJKf3uUS {
  background-color: #ffffff;
}
.cid-uSkJKf3uUS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSkJKf3uUS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSkJKf3uUS .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uSkJKf3uUS .row {
  align-items: center;
}
.cid-uSkJKf3uUS .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uSkJKf3uUS .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSkJKf3uUS .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uSkJKf3uUS .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uSkJKf3uUS .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uSkJKf3uUS .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uSkJKf3uUS .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uSkJKf3uUS .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uSkJKf3uUS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSkJKf3uUS .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uSkJKf3uUS .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uSkJKf3uUS .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uSkJKf3uUS .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uSkJKf3uUS .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uSkJKf3uUS .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uSkJKf3uUS .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSkJKf3uUS .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #81358a !important;
}
.cid-uSkJKf3uUS .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSkJKf3uUS .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uSkJKf3uUS .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uSkJKf3uUS .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #81358a;
}
@media (max-width: 991px) {
  .cid-uSkJKf3uUS .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uSkJKf3uUS .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uSkJKf3uUS .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uSkJKf3uUS .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uSkJKf3uUS .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uSkJKf3uUS .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSkJKf3uUS .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uSkJKf3uUS .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uSkJKf3uUS .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uSkJKf3uUS .contact-text {
  width: 100%;
  color: #e61b72;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uSkJKf3uUS .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uSkJKf3uUS .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uSkJKf3uUS .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uSkJKf3uUS .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uSkJKf3uUS .contact-container {
    width: 100%;
  }
}
.cid-uSkJKf3uUS .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #81358a;
}
.cid-uSkJKf3uUS .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uSkJKf3uUS .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uSkJKf3uUS .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uSkJKf3uUS .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uSkJKf3uUS .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #ffffff;
}
.cid-uSkJKf3uUS .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uSkJKf3uUS .copyright {
  color: #81358a;
  text-align: center;
}
.cid-uSkJKf3uUS .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uSkJKf3uUS .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #81358a 27%, #81358a 50%, #81358a 79%);
}
.cid-uSkJKf3uUS .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #e61b72 27%, #e61b72 50%, #e61b72 79%);
}
.cid-uSkOkKjX5z {
  overflow: visible;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 112px;
}
@media (max-width: 767px) {
  .cid-uSkOkKjX5z {
    min-height: 77px;
  }
}
.cid-uSkOkKjX5z nav.navbar {
  position: fixed;
}
.cid-uSkOkKjX5z .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-uSkOkKjX5z .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uSkOkKjX5z .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSkOkKjX5z .dropdown-item:hover,
.cid-uSkOkKjX5z .dropdown-item:focus {
  background: #81358a !important;
  color: inherit !important;
}
.cid-uSkOkKjX5z .dropdown-item:hover span {
  color: white;
}
.cid-uSkOkKjX5z .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSkOkKjX5z .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSkOkKjX5z .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSkOkKjX5z .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSkOkKjX5z .nav-link {
  position: relative;
}
.cid-uSkOkKjX5z .container {
  display: flex;
  gap: 1.5rem;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uSkOkKjX5z .container {
    flex-wrap: nowrap;
  }
}
.cid-uSkOkKjX5z .iconfont-wrapper {
  color: #1f1d1a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSkOkKjX5z .iconfont-wrapper:hover {
  text-decoration-line: none !important;
}
.cid-uSkOkKjX5z .dropdown-menu,
.cid-uSkOkKjX5z .navbar.opened {
  background: #d9b8e6 !important;
}
.cid-uSkOkKjX5z .nav-item:focus,
.cid-uSkOkKjX5z .nav-link:focus {
  outline: none;
}
.cid-uSkOkKjX5z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSkOkKjX5z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSkOkKjX5z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSkOkKjX5z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSkOkKjX5z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSkOkKjX5z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSkOkKjX5z .navbar {
  min-height: 112px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: #d9b8e6;
  border-radius: 0 !important;
  padding: 16px 0 !important;
}
@media (max-width: 767px) {
  .cid-uSkOkKjX5z .navbar {
    min-height: 77px;
    padding: 8px 0 !important;
  }
}
.cid-uSkOkKjX5z .navbar.opened {
  transition: all 0.3s;
}
.cid-uSkOkKjX5z .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSkOkKjX5z .navbar .navbar-logo img {
  width: auto;
}
.cid-uSkOkKjX5z .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSkOkKjX5z .navbar.collapsed {
  justify-content: center;
}
.cid-uSkOkKjX5z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSkOkKjX5z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSkOkKjX5z .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uSkOkKjX5z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSkOkKjX5z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSkOkKjX5z .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-uSkOkKjX5z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSkOkKjX5z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSkOkKjX5z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSkOkKjX5z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSkOkKjX5z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSkOkKjX5z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSkOkKjX5z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSkOkKjX5z .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-uSkOkKjX5z .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSkOkKjX5z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSkOkKjX5z .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSkOkKjX5z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uSkOkKjX5z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSkOkKjX5z .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uSkOkKjX5z .navbar.navbar-short {
  min-height: 112px;
}
@media (max-width: 767px) {
  .cid-uSkOkKjX5z .navbar.navbar-short {
    min-height: 77px;
  }
}
.cid-uSkOkKjX5z .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSkOkKjX5z .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uSkOkKjX5z .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  margin: 0;
}
.cid-uSkOkKjX5z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSkOkKjX5z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSkOkKjX5z .dropdown-item.active,
.cid-uSkOkKjX5z .dropdown-item:active {
  background-color: transparent;
}
.cid-uSkOkKjX5z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSkOkKjX5z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSkOkKjX5z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSkOkKjX5z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9b8e6;
}
.cid-uSkOkKjX5z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSkOkKjX5z .navbar .navbar-collapse .dropdown .dropdown-menu {
  background: #ffffff !important;
}
.cid-uSkOkKjX5z .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSkOkKjX5z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSkOkKjX5z ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSkOkKjX5z .navbar-buttons {
  text-align: center;
}
.cid-uSkOkKjX5z button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin-left: 0.5rem;
  margin-right: 12px;
}
.cid-uSkOkKjX5z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uSkOkKjX5z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSkOkKjX5z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSkOkKjX5z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSkOkKjX5z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSkOkKjX5z button.navbar-toggler .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000000;
  transition: all 0.2s;
}
.cid-uSkOkKjX5z .navbar-toggler-close {
  position: absolute !important;
  right: 12px;
  top: 10px;
  margin-right: 0 !important;
}
.cid-uSkOkKjX5z .navbar-toggler-close .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSkOkKjX5z .navbar-toggler-close .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSkOkKjX5z .navbar-toggler-close .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSkOkKjX5z .navbar-toggler-close .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSkOkKjX5z .navbar-toggler-close .hamburger-bg {
  opacity: 0;
  background-color: #374151 !important;
  transition: .3s;
  border-radius: 0 !important;
}
.cid-uSkOkKjX5z .navbar-toggler-close .hamburger-bg:hover {
  opacity: 0.1 !important;
}
.cid-uSkOkKjX5z .navbar-toggler-close:hover .hamburger-bg {
  opacity: 0.1 !important;
}
.cid-uSkOkKjX5z button.navbar-toggler-close {
  margin-right: 0;
}
.cid-uSkOkKjX5z .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSkOkKjX5z a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSkOkKjX5z .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-uSkOkKjX5z .navbar {
    height: 70px;
  }
  .cid-uSkOkKjX5z .navbar.opened {
    height: auto;
  }
  .cid-uSkOkKjX5z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSkOkKjX5z .navbar-brand-main {
  max-width: 30%;
}
.cid-uSkOkKjX5z .navbar-nav-main {
  margin: 0;
  flex-grow: 1;
  justify-content: flex-end;
}
.cid-uSkOkKjX5z .navbar-nav-main .nav-item {
  margin: 0 !important;
}
.cid-uSkOkKjX5z .navbar-nav-main .nav-item .nav-link {
  padding: 15px !important;
  margin: 0 !important;
}
.cid-uSkOkKjX5z .navbar-nav-main .nav-item .nav-link:hover {
  text-decoration: underline;
}
.cid-uSkOkKjX5z .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-uSkOkKjX5z .navbar-buttons-main {
  margin-left: 6.4rem;
  max-width: 30%;
}
@media (max-width: 991px) {
  .cid-uSkOkKjX5z .navbar-buttons-main {
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uSkOkKjX5z .navbar-buttons-main {
    display: none;
  }
}
.cid-uSkOkKjX5z .navbar-toggler-open {
  position: relative;
  z-index: 10 !important;
}
.cid-uSkOkKjX5z .navbar-toggler {
  position: relative;
  z-index: 12;
}
.cid-uSkOkKjX5z .navbar-collapse {
  display: none !important;
  z-index: 11 !important;
}
@media (max-width: 991px) {
  .cid-uSkOkKjX5z .container,
  .cid-uSkOkKjX5z .container-fluid {
    justify-content: flex-end;
  }
  .cid-uSkOkKjX5z .navbar-brand-main {
    max-width: 50%;
    margin-right: auto;
  }
  .cid-uSkOkKjX5z .navbar-nav-main {
    display: none !important;
  }
  .cid-uSkOkKjX5z .sidbar-nav {
    width: 100%;
    align-items: center;
  }
  .cid-uSkOkKjX5z .sidbar-nav .nav-item {
    margin: 0  !important;
    padding: 1rem !important;
    width: 100%;
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-uSkOkKjX5z .sidbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-uSkOkKjX5z .sidbar-nav .nav-item .nav-link:hover {
    color: inherit !important;
  }
  .cid-uSkOkKjX5z .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-uSkOkKjX5z .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: stretch !important;
    position: fixed;
    background-color: #ffffff;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-uSkOkKjX5z .navbar-collapse .mbr-section-btn {
    margin-top: 18px;
    padding: 0 16px;
    width: 100%;
  }
  .cid-uSkOkKjX5z .navbar-collapse .mbr-section-btn .btn {
    width: 100%;
  }
  .cid-uSkOkKjX5z .navbar-collapse .dropdown-item {
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-uSkOkKjX5z .navbar-collapse .dropdown-item:hover,
  .cid-uSkOkKjX5z .navbar-collapse .dropdown-item:focus {
    background: #ffffff !important;
    color: inherit !important;
  }
  .cid-uSkOkKjX5z .navbar-collapse.show {
    padding: 28px 0;
    position: fixed;
    background-color: #ffffff;
    width: 500px;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-uSkOkKjX5z .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-uSkOkKjX5z .navbar-collapse.show {
    width: 100% !important;
  }
}
.cid-uSkOkKKib4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  min-height: 280px;
  background-image: url("../../../assets/images/tienda-aperidul-13-1476x1131.jpg");
  display: flex;
  align-items: center;
}
@media (min-width: 640px) {
  .cid-uSkOkKKib4 {
    min-height: 300px;
  }
}
@media (min-width: 768px) {
  .cid-uSkOkKKib4 {
    min-height: 380px;
  }
}
@media (min-width: 992px) {
  .cid-uSkOkKKib4 {
    min-height: 420px;
  }
}
@media (min-width: 1200px) {
  .cid-uSkOkKKib4 {
    min-height: 610px;
  }
}
.cid-uSkOkKKib4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSkOkKKib4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSkOkKKib4 .row {
  justify-content: flex-start;
}
.cid-uSkOkKKib4 .mbr-section-title {
  color: #ffffff;
  text-align: justify;
}
.cid-uSkOkKKib4 .mbr-section-subtitle {
  color: #FEF9EE;
}
.cid-uSkOkKKib4 .mbr-text {
  color: #FEF9EE;
}
.cid-uSl5Bt0LKx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSl5Bt0LKx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSl5Bt0LKx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSl5Bt0LKx .col-12 {
  position: relative;
}
.cid-uSl5Bt0LKx img {
  max-width: 800px;
  margin: auto;
}
.cid-uSl5Bt0LKx .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uSl5Bt0LKx .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uSl5Bt0LKx .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSl5Bt0LKx .image-wrapper {
    padding: 1rem;
  }
}
.cid-uSl5Bt0LKx .mbr-section-title {
  color: #000000;
}
.cid-uSkOkL0Z1h {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-uSkOkL0Z1h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSkOkL0Z1h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSkOkL0Z1h .row {
  justify-content: flex-start;
}
.cid-uSkOkL0Z1h .mbr-section-title {
  color: #1F1D1A;
  margin-bottom: 0;
}
.cid-uSkOkL0Z1h .mbr-text {
  color: #1F1D1A;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-uSkOkLjcCr {
  background-color: #ffffff;
}
.cid-uSkOkLjcCr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSkOkLjcCr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSkOkLjcCr .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uSkOkLjcCr .row {
  align-items: center;
}
.cid-uSkOkLjcCr .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uSkOkLjcCr .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSkOkLjcCr .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uSkOkLjcCr .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uSkOkLjcCr .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uSkOkLjcCr .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uSkOkLjcCr .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uSkOkLjcCr .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uSkOkLjcCr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSkOkLjcCr .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uSkOkLjcCr .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uSkOkLjcCr .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uSkOkLjcCr .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uSkOkLjcCr .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uSkOkLjcCr .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uSkOkLjcCr .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSkOkLjcCr .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #81358a !important;
}
.cid-uSkOkLjcCr .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSkOkLjcCr .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uSkOkLjcCr .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uSkOkLjcCr .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #81358a;
}
@media (max-width: 991px) {
  .cid-uSkOkLjcCr .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uSkOkLjcCr .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uSkOkLjcCr .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uSkOkLjcCr .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uSkOkLjcCr .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uSkOkLjcCr .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSkOkLjcCr .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uSkOkLjcCr .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uSkOkLjcCr .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uSkOkLjcCr .contact-text {
  width: 100%;
  color: #e61b72;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uSkOkLjcCr .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uSkOkLjcCr .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uSkOkLjcCr .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uSkOkLjcCr .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uSkOkLjcCr .contact-container {
    width: 100%;
  }
}
.cid-uSkOkLjcCr .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #81358a;
}
.cid-uSkOkLjcCr .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uSkOkLjcCr .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uSkOkLjcCr .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uSkOkLjcCr .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uSkOkLjcCr .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #ffffff;
}
.cid-uSkOkLjcCr .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uSkOkLjcCr .copyright {
  color: #81358a;
  text-align: center;
}
.cid-uSkOkLjcCr .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uSkOkLjcCr .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #81358a 27%, #81358a 50%, #81358a 79%);
}
.cid-uSkOkLjcCr .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #e61b72 27%, #e61b72 50%, #e61b72 79%);
}
.cid-uSkUw3jWGw {
  overflow: visible;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 112px;
}
@media (max-width: 767px) {
  .cid-uSkUw3jWGw {
    min-height: 77px;
  }
}
.cid-uSkUw3jWGw nav.navbar {
  position: fixed;
}
.cid-uSkUw3jWGw .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-uSkUw3jWGw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uSkUw3jWGw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSkUw3jWGw .dropdown-item:hover,
.cid-uSkUw3jWGw .dropdown-item:focus {
  background: #81358a !important;
  color: inherit !important;
}
.cid-uSkUw3jWGw .dropdown-item:hover span {
  color: white;
}
.cid-uSkUw3jWGw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSkUw3jWGw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSkUw3jWGw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSkUw3jWGw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSkUw3jWGw .nav-link {
  position: relative;
}
.cid-uSkUw3jWGw .container {
  display: flex;
  gap: 1.5rem;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uSkUw3jWGw .container {
    flex-wrap: nowrap;
  }
}
.cid-uSkUw3jWGw .iconfont-wrapper {
  color: #1f1d1a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSkUw3jWGw .iconfont-wrapper:hover {
  text-decoration-line: none !important;
}
.cid-uSkUw3jWGw .dropdown-menu,
.cid-uSkUw3jWGw .navbar.opened {
  background: #d9b8e6 !important;
}
.cid-uSkUw3jWGw .nav-item:focus,
.cid-uSkUw3jWGw .nav-link:focus {
  outline: none;
}
.cid-uSkUw3jWGw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSkUw3jWGw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSkUw3jWGw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSkUw3jWGw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSkUw3jWGw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSkUw3jWGw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSkUw3jWGw .navbar {
  min-height: 112px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: #d9b8e6;
  border-radius: 0 !important;
  padding: 16px 0 !important;
}
@media (max-width: 767px) {
  .cid-uSkUw3jWGw .navbar {
    min-height: 77px;
    padding: 8px 0 !important;
  }
}
.cid-uSkUw3jWGw .navbar.opened {
  transition: all 0.3s;
}
.cid-uSkUw3jWGw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSkUw3jWGw .navbar .navbar-logo img {
  width: auto;
}
.cid-uSkUw3jWGw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSkUw3jWGw .navbar.collapsed {
  justify-content: center;
}
.cid-uSkUw3jWGw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSkUw3jWGw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSkUw3jWGw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uSkUw3jWGw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSkUw3jWGw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSkUw3jWGw .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-uSkUw3jWGw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSkUw3jWGw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSkUw3jWGw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSkUw3jWGw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSkUw3jWGw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSkUw3jWGw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSkUw3jWGw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSkUw3jWGw .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-uSkUw3jWGw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSkUw3jWGw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSkUw3jWGw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSkUw3jWGw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uSkUw3jWGw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSkUw3jWGw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uSkUw3jWGw .navbar.navbar-short {
  min-height: 112px;
}
@media (max-width: 767px) {
  .cid-uSkUw3jWGw .navbar.navbar-short {
    min-height: 77px;
  }
}
.cid-uSkUw3jWGw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSkUw3jWGw .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uSkUw3jWGw .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  margin: 0;
}
.cid-uSkUw3jWGw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSkUw3jWGw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSkUw3jWGw .dropdown-item.active,
.cid-uSkUw3jWGw .dropdown-item:active {
  background-color: transparent;
}
.cid-uSkUw3jWGw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSkUw3jWGw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSkUw3jWGw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSkUw3jWGw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9b8e6;
}
.cid-uSkUw3jWGw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSkUw3jWGw .navbar .navbar-collapse .dropdown .dropdown-menu {
  background: #ffffff !important;
}
.cid-uSkUw3jWGw .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSkUw3jWGw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSkUw3jWGw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSkUw3jWGw .navbar-buttons {
  text-align: center;
}
.cid-uSkUw3jWGw button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin-left: 0.5rem;
  margin-right: 12px;
}
.cid-uSkUw3jWGw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uSkUw3jWGw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSkUw3jWGw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSkUw3jWGw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSkUw3jWGw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSkUw3jWGw button.navbar-toggler .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000000;
  transition: all 0.2s;
}
.cid-uSkUw3jWGw .navbar-toggler-close {
  position: absolute !important;
  right: 12px;
  top: 10px;
  margin-right: 0 !important;
}
.cid-uSkUw3jWGw .navbar-toggler-close .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSkUw3jWGw .navbar-toggler-close .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSkUw3jWGw .navbar-toggler-close .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSkUw3jWGw .navbar-toggler-close .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSkUw3jWGw .navbar-toggler-close .hamburger-bg {
  opacity: 0;
  background-color: #374151 !important;
  transition: .3s;
  border-radius: 0 !important;
}
.cid-uSkUw3jWGw .navbar-toggler-close .hamburger-bg:hover {
  opacity: 0.1 !important;
}
.cid-uSkUw3jWGw .navbar-toggler-close:hover .hamburger-bg {
  opacity: 0.1 !important;
}
.cid-uSkUw3jWGw button.navbar-toggler-close {
  margin-right: 0;
}
.cid-uSkUw3jWGw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSkUw3jWGw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSkUw3jWGw .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-uSkUw3jWGw .navbar {
    height: 70px;
  }
  .cid-uSkUw3jWGw .navbar.opened {
    height: auto;
  }
  .cid-uSkUw3jWGw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSkUw3jWGw .navbar-brand-main {
  max-width: 30%;
}
.cid-uSkUw3jWGw .navbar-nav-main {
  margin: 0;
  flex-grow: 1;
  justify-content: flex-end;
}
.cid-uSkUw3jWGw .navbar-nav-main .nav-item {
  margin: 0 !important;
}
.cid-uSkUw3jWGw .navbar-nav-main .nav-item .nav-link {
  padding: 15px !important;
  margin: 0 !important;
}
.cid-uSkUw3jWGw .navbar-nav-main .nav-item .nav-link:hover {
  text-decoration: underline;
}
.cid-uSkUw3jWGw .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-uSkUw3jWGw .navbar-buttons-main {
  margin-left: 6.4rem;
  max-width: 30%;
}
@media (max-width: 991px) {
  .cid-uSkUw3jWGw .navbar-buttons-main {
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uSkUw3jWGw .navbar-buttons-main {
    display: none;
  }
}
.cid-uSkUw3jWGw .navbar-toggler-open {
  position: relative;
  z-index: 10 !important;
}
.cid-uSkUw3jWGw .navbar-toggler {
  position: relative;
  z-index: 12;
}
.cid-uSkUw3jWGw .navbar-collapse {
  display: none !important;
  z-index: 11 !important;
}
@media (max-width: 991px) {
  .cid-uSkUw3jWGw .container,
  .cid-uSkUw3jWGw .container-fluid {
    justify-content: flex-end;
  }
  .cid-uSkUw3jWGw .navbar-brand-main {
    max-width: 50%;
    margin-right: auto;
  }
  .cid-uSkUw3jWGw .navbar-nav-main {
    display: none !important;
  }
  .cid-uSkUw3jWGw .sidbar-nav {
    width: 100%;
    align-items: center;
  }
  .cid-uSkUw3jWGw .sidbar-nav .nav-item {
    margin: 0  !important;
    padding: 1rem !important;
    width: 100%;
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-uSkUw3jWGw .sidbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-uSkUw3jWGw .sidbar-nav .nav-item .nav-link:hover {
    color: inherit !important;
  }
  .cid-uSkUw3jWGw .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-uSkUw3jWGw .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: stretch !important;
    position: fixed;
    background-color: #ffffff;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-uSkUw3jWGw .navbar-collapse .mbr-section-btn {
    margin-top: 18px;
    padding: 0 16px;
    width: 100%;
  }
  .cid-uSkUw3jWGw .navbar-collapse .mbr-section-btn .btn {
    width: 100%;
  }
  .cid-uSkUw3jWGw .navbar-collapse .dropdown-item {
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-uSkUw3jWGw .navbar-collapse .dropdown-item:hover,
  .cid-uSkUw3jWGw .navbar-collapse .dropdown-item:focus {
    background: #ffffff !important;
    color: inherit !important;
  }
  .cid-uSkUw3jWGw .navbar-collapse.show {
    padding: 28px 0;
    position: fixed;
    background-color: #ffffff;
    width: 500px;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-uSkUw3jWGw .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-uSkUw3jWGw .navbar-collapse.show {
    width: 100% !important;
  }
}
.cid-uSkUw3PCvJ {
  background-image: url("../../../assets/images/tienda-aperidul-14-1476x984.jpg");
  display: flex;
  align-items: center;
}
.cid-uSkUw3PCvJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSkUw3PCvJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSkUw3PCvJ .row {
  justify-content: flex-start;
}
.cid-uSkUw3PCvJ .mbr-section-title {
  color: #e61b72;
  text-align: center;
}
.cid-uSkUw3PCvJ .mbr-section-subtitle {
  color: #FEF9EE;
}
.cid-uSkUw3PCvJ .mbr-text {
  color: #FEF9EE;
}
.cid-uSl5DnjQR9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSl5DnjQR9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSl5DnjQR9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSl5DnjQR9 .col-12 {
  position: relative;
}
.cid-uSl5DnjQR9 img {
  max-width: 800px;
  margin: auto;
}
.cid-uSl5DnjQR9 .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uSl5DnjQR9 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uSl5DnjQR9 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSl5DnjQR9 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uSl5DnjQR9 .mbr-section-title {
  color: #000000;
}
.cid-uSkUw45ojQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-uSkUw45ojQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSkUw45ojQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSkUw45ojQ .row {
  justify-content: flex-start;
}
.cid-uSkUw45ojQ .mbr-section-title {
  color: #1F1D1A;
  margin-bottom: 0;
}
.cid-uSkUw45ojQ .mbr-text {
  color: #1F1D1A;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-uSkUw4necv {
  background-color: #ffffff;
}
.cid-uSkUw4necv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSkUw4necv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSkUw4necv .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uSkUw4necv .row {
  align-items: center;
}
.cid-uSkUw4necv .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uSkUw4necv .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSkUw4necv .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uSkUw4necv .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uSkUw4necv .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uSkUw4necv .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uSkUw4necv .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uSkUw4necv .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uSkUw4necv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSkUw4necv .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uSkUw4necv .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uSkUw4necv .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uSkUw4necv .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uSkUw4necv .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uSkUw4necv .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uSkUw4necv .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSkUw4necv .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #81358a !important;
}
.cid-uSkUw4necv .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSkUw4necv .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uSkUw4necv .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uSkUw4necv .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #81358a;
}
@media (max-width: 991px) {
  .cid-uSkUw4necv .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uSkUw4necv .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uSkUw4necv .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uSkUw4necv .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uSkUw4necv .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uSkUw4necv .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSkUw4necv .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uSkUw4necv .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uSkUw4necv .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uSkUw4necv .contact-text {
  width: 100%;
  color: #e61b72;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uSkUw4necv .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uSkUw4necv .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uSkUw4necv .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uSkUw4necv .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uSkUw4necv .contact-container {
    width: 100%;
  }
}
.cid-uSkUw4necv .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #81358a;
}
.cid-uSkUw4necv .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uSkUw4necv .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uSkUw4necv .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uSkUw4necv .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uSkUw4necv .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #ffffff;
}
.cid-uSkUw4necv .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uSkUw4necv .copyright {
  color: #81358a;
  text-align: center;
}
.cid-uSkUw4necv .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uSkUw4necv .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #81358a 27%, #81358a 50%, #81358a 79%);
}
.cid-uSkUw4necv .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #e61b72 27%, #e61b72 50%, #e61b72 79%);
}
.cid-uSkXAX743k {
  overflow: visible;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 112px;
}
@media (max-width: 767px) {
  .cid-uSkXAX743k {
    min-height: 77px;
  }
}
.cid-uSkXAX743k nav.navbar {
  position: fixed;
}
.cid-uSkXAX743k .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-uSkXAX743k .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uSkXAX743k .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSkXAX743k .dropdown-item:hover,
.cid-uSkXAX743k .dropdown-item:focus {
  background: #81358a !important;
  color: inherit !important;
}
.cid-uSkXAX743k .dropdown-item:hover span {
  color: white;
}
.cid-uSkXAX743k .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSkXAX743k .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSkXAX743k .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSkXAX743k .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSkXAX743k .nav-link {
  position: relative;
}
.cid-uSkXAX743k .container {
  display: flex;
  gap: 1.5rem;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uSkXAX743k .container {
    flex-wrap: nowrap;
  }
}
.cid-uSkXAX743k .iconfont-wrapper {
  color: #1f1d1a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSkXAX743k .iconfont-wrapper:hover {
  text-decoration-line: none !important;
}
.cid-uSkXAX743k .dropdown-menu,
.cid-uSkXAX743k .navbar.opened {
  background: #d9b8e6 !important;
}
.cid-uSkXAX743k .nav-item:focus,
.cid-uSkXAX743k .nav-link:focus {
  outline: none;
}
.cid-uSkXAX743k .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSkXAX743k .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSkXAX743k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSkXAX743k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSkXAX743k .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSkXAX743k .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSkXAX743k .navbar {
  min-height: 112px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: #d9b8e6;
  border-radius: 0 !important;
  padding: 16px 0 !important;
}
@media (max-width: 767px) {
  .cid-uSkXAX743k .navbar {
    min-height: 77px;
    padding: 8px 0 !important;
  }
}
.cid-uSkXAX743k .navbar.opened {
  transition: all 0.3s;
}
.cid-uSkXAX743k .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSkXAX743k .navbar .navbar-logo img {
  width: auto;
}
.cid-uSkXAX743k .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSkXAX743k .navbar.collapsed {
  justify-content: center;
}
.cid-uSkXAX743k .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSkXAX743k .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSkXAX743k .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uSkXAX743k .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSkXAX743k .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSkXAX743k .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-uSkXAX743k .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSkXAX743k .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSkXAX743k .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSkXAX743k .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSkXAX743k .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSkXAX743k .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSkXAX743k .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSkXAX743k .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-uSkXAX743k .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSkXAX743k .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSkXAX743k .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSkXAX743k .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uSkXAX743k .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSkXAX743k .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uSkXAX743k .navbar.navbar-short {
  min-height: 112px;
}
@media (max-width: 767px) {
  .cid-uSkXAX743k .navbar.navbar-short {
    min-height: 77px;
  }
}
.cid-uSkXAX743k .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSkXAX743k .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uSkXAX743k .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  margin: 0;
}
.cid-uSkXAX743k .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSkXAX743k .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSkXAX743k .dropdown-item.active,
.cid-uSkXAX743k .dropdown-item:active {
  background-color: transparent;
}
.cid-uSkXAX743k .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSkXAX743k .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSkXAX743k .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSkXAX743k .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9b8e6;
}
.cid-uSkXAX743k .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSkXAX743k .navbar .navbar-collapse .dropdown .dropdown-menu {
  background: #ffffff !important;
}
.cid-uSkXAX743k .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSkXAX743k .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSkXAX743k ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSkXAX743k .navbar-buttons {
  text-align: center;
}
.cid-uSkXAX743k button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin-left: 0.5rem;
  margin-right: 12px;
}
.cid-uSkXAX743k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uSkXAX743k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSkXAX743k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSkXAX743k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSkXAX743k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSkXAX743k button.navbar-toggler .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000000;
  transition: all 0.2s;
}
.cid-uSkXAX743k .navbar-toggler-close {
  position: absolute !important;
  right: 12px;
  top: 10px;
  margin-right: 0 !important;
}
.cid-uSkXAX743k .navbar-toggler-close .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSkXAX743k .navbar-toggler-close .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSkXAX743k .navbar-toggler-close .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSkXAX743k .navbar-toggler-close .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSkXAX743k .navbar-toggler-close .hamburger-bg {
  opacity: 0;
  background-color: #374151 !important;
  transition: .3s;
  border-radius: 0 !important;
}
.cid-uSkXAX743k .navbar-toggler-close .hamburger-bg:hover {
  opacity: 0.1 !important;
}
.cid-uSkXAX743k .navbar-toggler-close:hover .hamburger-bg {
  opacity: 0.1 !important;
}
.cid-uSkXAX743k button.navbar-toggler-close {
  margin-right: 0;
}
.cid-uSkXAX743k .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSkXAX743k a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSkXAX743k .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-uSkXAX743k .navbar {
    height: 70px;
  }
  .cid-uSkXAX743k .navbar.opened {
    height: auto;
  }
  .cid-uSkXAX743k .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSkXAX743k .navbar-brand-main {
  max-width: 30%;
}
.cid-uSkXAX743k .navbar-nav-main {
  margin: 0;
  flex-grow: 1;
  justify-content: flex-end;
}
.cid-uSkXAX743k .navbar-nav-main .nav-item {
  margin: 0 !important;
}
.cid-uSkXAX743k .navbar-nav-main .nav-item .nav-link {
  padding: 15px !important;
  margin: 0 !important;
}
.cid-uSkXAX743k .navbar-nav-main .nav-item .nav-link:hover {
  text-decoration: underline;
}
.cid-uSkXAX743k .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-uSkXAX743k .navbar-buttons-main {
  margin-left: 6.4rem;
  max-width: 30%;
}
@media (max-width: 991px) {
  .cid-uSkXAX743k .navbar-buttons-main {
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uSkXAX743k .navbar-buttons-main {
    display: none;
  }
}
.cid-uSkXAX743k .navbar-toggler-open {
  position: relative;
  z-index: 10 !important;
}
.cid-uSkXAX743k .navbar-toggler {
  position: relative;
  z-index: 12;
}
.cid-uSkXAX743k .navbar-collapse {
  display: none !important;
  z-index: 11 !important;
}
@media (max-width: 991px) {
  .cid-uSkXAX743k .container,
  .cid-uSkXAX743k .container-fluid {
    justify-content: flex-end;
  }
  .cid-uSkXAX743k .navbar-brand-main {
    max-width: 50%;
    margin-right: auto;
  }
  .cid-uSkXAX743k .navbar-nav-main {
    display: none !important;
  }
  .cid-uSkXAX743k .sidbar-nav {
    width: 100%;
    align-items: center;
  }
  .cid-uSkXAX743k .sidbar-nav .nav-item {
    margin: 0  !important;
    padding: 1rem !important;
    width: 100%;
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-uSkXAX743k .sidbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-uSkXAX743k .sidbar-nav .nav-item .nav-link:hover {
    color: inherit !important;
  }
  .cid-uSkXAX743k .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-uSkXAX743k .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: stretch !important;
    position: fixed;
    background-color: #ffffff;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-uSkXAX743k .navbar-collapse .mbr-section-btn {
    margin-top: 18px;
    padding: 0 16px;
    width: 100%;
  }
  .cid-uSkXAX743k .navbar-collapse .mbr-section-btn .btn {
    width: 100%;
  }
  .cid-uSkXAX743k .navbar-collapse .dropdown-item {
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-uSkXAX743k .navbar-collapse .dropdown-item:hover,
  .cid-uSkXAX743k .navbar-collapse .dropdown-item:focus {
    background: #ffffff !important;
    color: inherit !important;
  }
  .cid-uSkXAX743k .navbar-collapse.show {
    padding: 28px 0;
    position: fixed;
    background-color: #ffffff;
    width: 500px;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-uSkXAX743k .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-uSkXAX743k .navbar-collapse.show {
    width: 100% !important;
  }
}
.cid-uSkXAXB8cj {
  background-image: url("../../../assets/images/tienda-aperidul-15-1772x1181.jpg");
  display: flex;
  align-items: center;
}
.cid-uSkXAXB8cj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSkXAXB8cj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSkXAXB8cj .row {
  justify-content: flex-start;
}
.cid-uSkXAXB8cj .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-uSkXAXB8cj .mbr-section-subtitle {
  color: #FEF9EE;
}
.cid-uSkXAXB8cj .mbr-text {
  color: #FEF9EE;
}
.cid-uSl5xBnGZd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSl5xBnGZd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSl5xBnGZd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSl5xBnGZd .col-12 {
  position: relative;
}
.cid-uSl5xBnGZd img {
  max-width: 800px;
  margin: auto;
}
.cid-uSl5xBnGZd .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uSl5xBnGZd .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uSl5xBnGZd .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSl5xBnGZd .image-wrapper {
    padding: 1rem;
  }
}
.cid-uSl5xBnGZd .mbr-section-title {
  color: #000000;
}
.cid-uSkXAXRSfD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-uSkXAXRSfD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSkXAXRSfD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSkXAXRSfD .row {
  justify-content: flex-start;
}
.cid-uSkXAXRSfD .mbr-section-title {
  color: #1F1D1A;
  margin-bottom: 0;
}
.cid-uSkXAXRSfD .mbr-text {
  color: #1F1D1A;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-uSkXAY8Ey2 {
  background-color: #ffffff;
}
.cid-uSkXAY8Ey2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSkXAY8Ey2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSkXAY8Ey2 .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uSkXAY8Ey2 .row {
  align-items: center;
}
.cid-uSkXAY8Ey2 .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uSkXAY8Ey2 .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSkXAY8Ey2 .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uSkXAY8Ey2 .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uSkXAY8Ey2 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uSkXAY8Ey2 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uSkXAY8Ey2 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uSkXAY8Ey2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uSkXAY8Ey2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSkXAY8Ey2 .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uSkXAY8Ey2 .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uSkXAY8Ey2 .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uSkXAY8Ey2 .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uSkXAY8Ey2 .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uSkXAY8Ey2 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uSkXAY8Ey2 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSkXAY8Ey2 .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #81358a !important;
}
.cid-uSkXAY8Ey2 .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSkXAY8Ey2 .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uSkXAY8Ey2 .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uSkXAY8Ey2 .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #81358a;
}
@media (max-width: 991px) {
  .cid-uSkXAY8Ey2 .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uSkXAY8Ey2 .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uSkXAY8Ey2 .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uSkXAY8Ey2 .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uSkXAY8Ey2 .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uSkXAY8Ey2 .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSkXAY8Ey2 .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uSkXAY8Ey2 .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uSkXAY8Ey2 .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uSkXAY8Ey2 .contact-text {
  width: 100%;
  color: #e61b72;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uSkXAY8Ey2 .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uSkXAY8Ey2 .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uSkXAY8Ey2 .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uSkXAY8Ey2 .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uSkXAY8Ey2 .contact-container {
    width: 100%;
  }
}
.cid-uSkXAY8Ey2 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #81358a;
}
.cid-uSkXAY8Ey2 .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uSkXAY8Ey2 .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uSkXAY8Ey2 .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uSkXAY8Ey2 .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uSkXAY8Ey2 .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #ffffff;
}
.cid-uSkXAY8Ey2 .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uSkXAY8Ey2 .copyright {
  color: #81358a;
  text-align: center;
}
.cid-uSkXAY8Ey2 .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uSkXAY8Ey2 .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #81358a 27%, #81358a 50%, #81358a 79%);
}
.cid-uSkXAY8Ey2 .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #e61b72 27%, #e61b72 50%, #e61b72 79%);
}
.cid-uPeN3NkMzX {
  overflow: visible;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 112px;
}
@media (max-width: 767px) {
  .cid-uPeN3NkMzX {
    min-height: 77px;
  }
}
.cid-uPeN3NkMzX nav.navbar {
  position: fixed;
}
.cid-uPeN3NkMzX .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-uPeN3NkMzX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPeN3NkMzX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPeN3NkMzX .dropdown-item:hover,
.cid-uPeN3NkMzX .dropdown-item:focus {
  background: #81358a !important;
  color: inherit !important;
}
.cid-uPeN3NkMzX .dropdown-item:hover span {
  color: white;
}
.cid-uPeN3NkMzX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPeN3NkMzX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPeN3NkMzX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPeN3NkMzX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPeN3NkMzX .nav-link {
  position: relative;
}
.cid-uPeN3NkMzX .container {
  display: flex;
  gap: 1.5rem;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uPeN3NkMzX .container {
    flex-wrap: nowrap;
  }
}
.cid-uPeN3NkMzX .iconfont-wrapper {
  color: #1f1d1a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPeN3NkMzX .iconfont-wrapper:hover {
  text-decoration-line: none !important;
}
.cid-uPeN3NkMzX .dropdown-menu,
.cid-uPeN3NkMzX .navbar.opened {
  background: #d9b8e6 !important;
}
.cid-uPeN3NkMzX .nav-item:focus,
.cid-uPeN3NkMzX .nav-link:focus {
  outline: none;
}
.cid-uPeN3NkMzX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPeN3NkMzX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPeN3NkMzX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPeN3NkMzX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPeN3NkMzX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPeN3NkMzX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPeN3NkMzX .navbar {
  min-height: 112px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: #d9b8e6;
  border-radius: 0 !important;
  padding: 16px 0 !important;
}
@media (max-width: 767px) {
  .cid-uPeN3NkMzX .navbar {
    min-height: 77px;
    padding: 8px 0 !important;
  }
}
.cid-uPeN3NkMzX .navbar.opened {
  transition: all 0.3s;
}
.cid-uPeN3NkMzX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPeN3NkMzX .navbar .navbar-logo img {
  width: auto;
}
.cid-uPeN3NkMzX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPeN3NkMzX .navbar.collapsed {
  justify-content: center;
}
.cid-uPeN3NkMzX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPeN3NkMzX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPeN3NkMzX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uPeN3NkMzX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPeN3NkMzX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPeN3NkMzX .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-uPeN3NkMzX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPeN3NkMzX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPeN3NkMzX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPeN3NkMzX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPeN3NkMzX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPeN3NkMzX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPeN3NkMzX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPeN3NkMzX .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-uPeN3NkMzX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPeN3NkMzX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPeN3NkMzX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPeN3NkMzX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uPeN3NkMzX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPeN3NkMzX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPeN3NkMzX .navbar.navbar-short {
  min-height: 112px;
}
@media (max-width: 767px) {
  .cid-uPeN3NkMzX .navbar.navbar-short {
    min-height: 77px;
  }
}
.cid-uPeN3NkMzX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPeN3NkMzX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uPeN3NkMzX .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  margin: 0;
}
.cid-uPeN3NkMzX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPeN3NkMzX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPeN3NkMzX .dropdown-item.active,
.cid-uPeN3NkMzX .dropdown-item:active {
  background-color: transparent;
}
.cid-uPeN3NkMzX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPeN3NkMzX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPeN3NkMzX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPeN3NkMzX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9b8e6;
}
.cid-uPeN3NkMzX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPeN3NkMzX .navbar .navbar-collapse .dropdown .dropdown-menu {
  background: #ffffff !important;
}
.cid-uPeN3NkMzX .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPeN3NkMzX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPeN3NkMzX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPeN3NkMzX .navbar-buttons {
  text-align: center;
}
.cid-uPeN3NkMzX button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin-left: 0.5rem;
  margin-right: 12px;
}
.cid-uPeN3NkMzX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uPeN3NkMzX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPeN3NkMzX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPeN3NkMzX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPeN3NkMzX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPeN3NkMzX button.navbar-toggler .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000000;
  transition: all 0.2s;
}
.cid-uPeN3NkMzX .navbar-toggler-close {
  position: absolute !important;
  right: 12px;
  top: 10px;
  margin-right: 0 !important;
}
.cid-uPeN3NkMzX .navbar-toggler-close .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPeN3NkMzX .navbar-toggler-close .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPeN3NkMzX .navbar-toggler-close .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPeN3NkMzX .navbar-toggler-close .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPeN3NkMzX .navbar-toggler-close .hamburger-bg {
  opacity: 0;
  background-color: #374151 !important;
  transition: .3s;
  border-radius: 0 !important;
}
.cid-uPeN3NkMzX .navbar-toggler-close .hamburger-bg:hover {
  opacity: 0.1 !important;
}
.cid-uPeN3NkMzX .navbar-toggler-close:hover .hamburger-bg {
  opacity: 0.1 !important;
}
.cid-uPeN3NkMzX button.navbar-toggler-close {
  margin-right: 0;
}
.cid-uPeN3NkMzX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPeN3NkMzX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPeN3NkMzX .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-uPeN3NkMzX .navbar {
    height: 70px;
  }
  .cid-uPeN3NkMzX .navbar.opened {
    height: auto;
  }
  .cid-uPeN3NkMzX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPeN3NkMzX .navbar-brand-main {
  max-width: 30%;
}
.cid-uPeN3NkMzX .navbar-nav-main {
  margin: 0;
  flex-grow: 1;
  justify-content: flex-end;
}
.cid-uPeN3NkMzX .navbar-nav-main .nav-item {
  margin: 0 !important;
}
.cid-uPeN3NkMzX .navbar-nav-main .nav-item .nav-link {
  padding: 15px !important;
  margin: 0 !important;
}
.cid-uPeN3NkMzX .navbar-nav-main .nav-item .nav-link:hover {
  text-decoration: underline;
}
.cid-uPeN3NkMzX .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-uPeN3NkMzX .navbar-buttons-main {
  margin-left: 6.4rem;
  max-width: 30%;
}
@media (max-width: 991px) {
  .cid-uPeN3NkMzX .navbar-buttons-main {
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-uPeN3NkMzX .navbar-buttons-main {
    display: none;
  }
}
.cid-uPeN3NkMzX .navbar-toggler-open {
  position: relative;
  z-index: 10 !important;
}
.cid-uPeN3NkMzX .navbar-toggler {
  position: relative;
  z-index: 12;
}
.cid-uPeN3NkMzX .navbar-collapse {
  display: none !important;
  z-index: 11 !important;
}
@media (max-width: 991px) {
  .cid-uPeN3NkMzX .container,
  .cid-uPeN3NkMzX .container-fluid {
    justify-content: flex-end;
  }
  .cid-uPeN3NkMzX .navbar-brand-main {
    max-width: 50%;
    margin-right: auto;
  }
  .cid-uPeN3NkMzX .navbar-nav-main {
    display: none !important;
  }
  .cid-uPeN3NkMzX .sidbar-nav {
    width: 100%;
    align-items: center;
  }
  .cid-uPeN3NkMzX .sidbar-nav .nav-item {
    margin: 0  !important;
    padding: 1rem !important;
    width: 100%;
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-uPeN3NkMzX .sidbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-uPeN3NkMzX .sidbar-nav .nav-item .nav-link:hover {
    color: inherit !important;
  }
  .cid-uPeN3NkMzX .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-uPeN3NkMzX .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: stretch !important;
    position: fixed;
    background-color: #ffffff;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-uPeN3NkMzX .navbar-collapse .mbr-section-btn {
    margin-top: 18px;
    padding: 0 16px;
    width: 100%;
  }
  .cid-uPeN3NkMzX .navbar-collapse .mbr-section-btn .btn {
    width: 100%;
  }
  .cid-uPeN3NkMzX .navbar-collapse .dropdown-item {
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-uPeN3NkMzX .navbar-collapse .dropdown-item:hover,
  .cid-uPeN3NkMzX .navbar-collapse .dropdown-item:focus {
    background: #ffffff !important;
    color: inherit !important;
  }
  .cid-uPeN3NkMzX .navbar-collapse.show {
    padding: 28px 0;
    position: fixed;
    background-color: #ffffff;
    width: 500px;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-uPeN3NkMzX .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-uPeN3NkMzX .navbar-collapse.show {
    width: 100% !important;
  }
}
.cid-uPeQ3Jt8NW {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPeQ3Jt8NW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPeQ3Jt8NW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPeQ3Jt8NW .content-wrap {
  margin: 0;
}
.cid-uPeQ3Jt8NW .content-wrap .card {
  padding: 0;
  justify-content: center;
}
.cid-uPeQ3Jt8NW .content-wrapper {
  padding: 0 112px;
}
@media (max-width: 1440px) {
  .cid-uPeQ3Jt8NW .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 1200px) {
  .cid-uPeQ3Jt8NW .content-wrapper {
    padding: 0 32px;
  }
}
@media (max-width: 992px) {
  .cid-uPeQ3Jt8NW .content-wrapper {
    padding: 0;
    margin-bottom: 32px;
  }
}
.cid-uPeQ3Jt8NW .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uPeQ3Jt8NW .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uPeQ3Jt8NW .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uPeQ3Jt8NW .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uPeQ3Jt8NW .content-wrapper .mbr-desc {
  margin-top: 122px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uPeQ3Jt8NW .content-wrapper .mbr-desc {
    margin-top: 32px;
  }
}
.cid-uPeQ3Jt8NW .image-wrapper {
  height: 100%;
  padding-left: 112px;
  border-left: 3px dashed #e61b72;
}
@media (max-width: 1440px) {
  .cid-uPeQ3Jt8NW .image-wrapper {
    padding-left: 64px;
  }
}
@media (max-width: 1200px) {
  .cid-uPeQ3Jt8NW .image-wrapper {
    padding-left: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uPeQ3Jt8NW .image-wrapper {
    padding-left: 0;
    border-left: none;
    border-top: 3px dashed #e61b72;
    padding-top: 22px;
  }
}
.cid-uPeQ3Jt8NW .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uPeQ3Jt8NW .image-wrapper img {
    height: 350px;
  }
}
.cid-uPeQ3Jt8NW .mbr-section-title {
  color: #c10b02;
}
.cid-uPeQ3Jt8NW .mbr-text,
.cid-uPeQ3Jt8NW .text-wrapper {
  color: #e61b72;
  text-align: right;
}
.cid-uPeQ3Jt8NW .mbr-desc {
  color: #81358a;
  text-align: center;
}
.cid-uPeQ3Jt8NW .mbr-section-title,
.cid-uPeQ3Jt8NW .mbr-section-btn {
  text-align: right;
  color: #81358a;
}
.cid-uPeN3P9JVt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPeN3P9JVt img {
  border-radius: 0px;
}
.cid-uPeN3P9JVt .row {
  justify-content: center;
}
.cid-uPeN3P9JVt .mbr-section-title {
  margin-top: 24px;
  text-align: center;
  color: #8c8c95;
}
.cid-uPeN3P9JVt .container {
  max-width: 1132px;
}
.cid-uQrKspi7x9 {
  padding-top: 12rem;
  position: relative;
  align-items: flex-end;
  padding-bottom: 16px;
  background-color: #ffffff;
}
.cid-uQrKspi7x9 .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
}
@media (max-width: 1440px) {
  .cid-uQrKspi7x9 .image-wrap {
    padding: 16px;
  }
}
.cid-uQrKspi7x9 .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uQrKspi7x9 .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  pointer-events: none;
}
@media (max-width: 1440px) {
  .cid-uQrKspi7x9 .image-overlay {
    padding: 16px;
  }
}
.cid-uQrKspi7x9 .image-overlay .image-over {
  background-color: #151e11;
  z-index: 2;
  opacity: 0.5;
  width: 100%;
  height: 100%;
}
.cid-uQrKspi7x9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQrKspi7x9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQrKspi7x9 .row {
  justify-content: center;
}
.cid-uQrKspi7x9 .card-wrapper {
  padding: 90px 30px 90px;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uQrKspi7x9 .card-wrapper {
    padding: 30px 16px;
    margin-top: 300px;
  }
}
.cid-uQrKspi7x9 .card-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
}
.cid-uQrKspi7x9 .card-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-uQrKspi7x9 .card-wrapper .label-wrapper .label-wrap .mbr-iconfont {
  font-size: 18px;
  margin-right: 12px;
  color: #e61b72;
}
.cid-uQrKspi7x9 .card-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uQrKspi7x9 .card-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uQrKspi7x9 .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uQrKspi7x9 .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uQrKspi7x9 .mbr-label,
.cid-uQrKspi7x9 .label-wrapper {
  color: #81358a;
  text-align: center;
}
.cid-uQrKspi7x9 .mbr-section-title {
  color: #fff7ee;
}
.cid-uQrKspi7x9 .mbr-text,
.cid-uQrKspi7x9 .text-wrapper {
  color: #81358a;
  text-align: center;
}
.cid-uQrKspi7x9 .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uQrKspi7x9 .mbr-section-title,
.cid-uQrKspi7x9 .mbr-section-btn {
  text-align: center;
  color: #81358a;
}
.cid-uPeRYbfXts {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-uPeRYbfXts .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPeRYbfXts .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPeRYbfXts .row {
  justify-content: flex-start;
}
.cid-uPeRYbfXts .mbr-section-title {
  color: #81358a;
  margin-bottom: 0;
}
.cid-uPeRYbfXts .mbr-text {
  color: #747474;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-uPeN3S4Cbr {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPeN3S4Cbr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPeN3S4Cbr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPeN3S4Cbr .col-12 {
  position: relative;
}
.cid-uPeN3S4Cbr img {
  max-width: 200px;
  display: block;
  margin-left: 2rem;
  margin-bottom: 1rem;
  margin-right: auto;
}
.cid-uPeN3S4Cbr .image-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uPeN3S4Cbr .image-wrapper {
    padding: 1rem;
  }
}
.cid-uPeN3S4Cbr .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uPeN3S4Cbr .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPeN3S4Cbr .row {
  align-items: center;
}
.cid-uPeN3S4Cbr .mbr-section-title {
  color: #000000;
}
.cid-uPeSPD0p39 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uPeSPD0p39 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uPeSPD0p39 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPeSPD0p39 .mbr-iconfont {
  display: flex;
  font-size: 1.5rem;
  color: #232323;
  align-items: center;
  justify-content: center;
}
.cid-uPeSPD0p39 .row {
  justify-content: center;
}
.cid-uPeSPD0p39 .card-box {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #232323;
  padding-bottom: 0.5rem;
}
.cid-uPeSPD0p39 .card-box .iconfont-wrapper {
  margin-right: 1rem;
}
@media (max-width: 992px) {
  .cid-uPeSPD0p39 .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-uPeSPD0p39 .card-link {
  color: #81358a;
}
.cid-uPeSPD0p39 .card-link:hover a {
  background-image: none !important;
}
.cid-uPeSPD0p39 .mbr-section-subtitle {
  color: #e41919;
}
.cid-uPeSPD0p39 .card-text {
  color: #747474;
  text-align: left;
}
.cid-uPeSPD0p39 .card-title,
.cid-uPeSPD0p39 .iconfont-wrapper {
  color: #e61b72;
  text-align: center;
}
.cid-uPeSPD0p39 .mbr-section-title {
  color: #555c7a;
}
.cid-uPeZGSzEbP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPeZGSzEbP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPeZGSzEbP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPeZGSzEbP .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uPeZGSzEbP .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uPeZGSzEbP .items-wrapper {
  margin: 0 -10px;
}
.cid-uPeZGSzEbP .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uPeZGSzEbP .item {
    margin-bottom: 16px;
  }
}
.cid-uPeZGSzEbP .item:hover .item-wrapper .item-content .icon-wrapper,
.cid-uPeZGSzEbP .item:focus .item-wrapper .item-content .icon-wrapper {
  transform: rotate(-25deg);
}
.cid-uPeZGSzEbP .item:hover .item-wrapper .item-content .item-img,
.cid-uPeZGSzEbP .item:focus .item-wrapper .item-content .item-img {
  opacity: 1;
  transform: scale(1);
}
.cid-uPeZGSzEbP .item:nth-child(2n) .item-wrapper {
  background-color: #fef9ee;
}
.cid-uPeZGSzEbP .item:nth-child(3n) .item-wrapper {
  background-color: #fef9ee;
}
.cid-uPeZGSzEbP .item:nth-child(4n) .item-wrapper {
  background-color: #fef9ee;
}
.cid-uPeZGSzEbP .item:nth-child(6n) .item-wrapper {
  background-color: #fef9ee;
}
.cid-uPeZGSzEbP .item .item-wrapper {
  height: 100%;
  position: relative;
  padding: 42px;
  background-color: #fef9ee;
}
@media (max-width: 992px) {
  .cid-uPeZGSzEbP .item .item-wrapper {
    padding: 46px 22px;
  }
}
.cid-uPeZGSzEbP .item .item-wrapper .item-content {
  position: relative;
}
.cid-uPeZGSzEbP .item .item-wrapper .item-content .icon-wrapper {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  margin-bottom: 22px;
}
.cid-uPeZGSzEbP .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 40px;
  transition: all 0.3s ease-in-out;
  color: #51565c;
}
.cid-uPeZGSzEbP .item .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-uPeZGSzEbP .item .item-wrapper .item-content .item-img {
  position: absolute;
  top: -205px;
  right: -105px;
  width: 250px;
  height: 250px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: scale(0.5);
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uPeZGSzEbP .item .item-wrapper .item-content .item-img {
    top: -55px;
    right: 0;
    width: 100px;
    height: 100px;
    opacity: 1;
    transform: none;
  }
}
.cid-uPeZGSzEbP .item .item-wrapper .item-content .item-img img {
  position: absolute;
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 992px) {
  .cid-uPeZGSzEbP .item .item-wrapper .item-content .item-img img {
    width: 100px;
    height: 100px;
  }
}
.cid-uPeZGSzEbP .item .item-wrapper .item-text {
  padding-top: 16px;
  margin-bottom: 0;
}
.cid-uPeZGSzEbP .mbr-section-title {
  color: #81358a;
}
.cid-uPeZGSzEbP .panel-title-edit {
  color: #212529;
}
.cid-uPeZGSzEbP .panel-text {
  color: #51565c;
}
.cid-uPeZGSzEbP .item-title {
  color: #0a413a;
}
.cid-uPeZGSzEbP .item-text {
  color: #81358a;
}
.cid-uQrKcwu0yV {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-uQrKcwu0yV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQrKcwu0yV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQrKcwu0yV .row {
  justify-content: flex-start;
}
.cid-uQrKcwu0yV .mbr-section-title {
  color: #81358a;
  margin-bottom: 0;
  text-align: center;
}
.cid-uQrKcwu0yV .mbr-text {
  color: #747474;
  margin-bottom: 0;
  margin-top: 40px;
  text-align: center;
}
.cid-uQrKdQS7Ss {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQrKdQS7Ss .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQrKdQS7Ss .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQrKdQS7Ss .row {
  justify-content: space-between;
}
.cid-uQrKdQS7Ss .card-wrapper {
  margin-bottom: 70px;
}
.cid-uQrKdQS7Ss .card-wrapper .image-wrapper img {
  display: inline-flex;
  width: 106px;
  height: 106px;
  object-fit: contain;
  margin-bottom: 40px;
}
.cid-uQrKdQS7Ss .card-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-uQrKdQS7Ss .card-wrapper .mbr-text {
  margin-bottom: 0;
  line-height: 1.45em;
}
.cid-uQrKdQS7Ss .mbr-section-title {
  color: #E0BDB6;
}
.cid-uQrKdQS7Ss .mbr-text {
  color: #747474;
  text-align: left;
}
.cid-uQrKdQS7Ss .mbr-section-title,
.cid-uQrKdQS7Ss .image-wrapper {
  text-align: left;
  color: #81358a;
}
.cid-uPeN3XaDig {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPeN3XaDig .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPeN3XaDig .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPeN3XaDig .col-12 {
  position: relative;
}
.cid-uPeN3XaDig img {
  max-width: 200px;
  display: block;
  margin-left: 2rem;
  margin-bottom: 1rem;
  margin-right: auto;
}
.cid-uPeN3XaDig .image-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uPeN3XaDig .image-wrapper {
    padding: 1rem;
  }
}
.cid-uPeN3XaDig .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uPeN3XaDig .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPeN3XaDig .row {
  align-items: center;
}
.cid-uPeN3XaDig .mbr-section-title {
  color: #000000;
}
.cid-uPeN41Rnne {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPeN41Rnne .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPeN41Rnne .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPeN41Rnne .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uPeN41Rnne .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uPeN41Rnne .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uPeN41Rnne .container {
    padding: 0 16px;
  }
}
.cid-uPeN41Rnne .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uPeN41Rnne .title-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uPeN41Rnne .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uPeN41Rnne .image-wrapper img {
  height: 610px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uPeN41Rnne .image-wrapper img {
    height: 350px;
  }
}
.cid-uPeN41Rnne .content-wrapper {
  margin-left: 82px;
}
@media (max-width: 992px) {
  .cid-uPeN41Rnne .content-wrapper {
    margin: 0;
  }
}
.cid-uPeN41Rnne .desc-wrapper {
  margin-bottom: 24px;
}
.cid-uPeN41Rnne .desc-wrapper .mbr-desc {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 16px;
}
.cid-uPeN41Rnne .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-image: linear-gradient(to bottom, #81358a, #e61b72);
}
.cid-uPeN41Rnne .dragArea.row .mbr-section-title {
  margin-bottom: 32px !important;
}
@media (max-width: 992px) {
  .cid-uPeN41Rnne .dragArea.row .mbr-section-title {
    margin-bottom: 16px !important;
  }
}
.cid-uPeN41Rnne .dragArea.row .mbr-text {
  margin-bottom: 32px !important;
}
@media (max-width: 992px) {
  .cid-uPeN41Rnne .dragArea.row .mbr-text {
    margin-bottom: 16px !important;
  }
}
.cid-uPeN41Rnne .dragArea.row .form-group {
  margin-bottom: 24px !important;
}
.cid-uPeN41Rnne .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 16px;
}
.cid-uPeN41Rnne .dragArea.row .form-group .form-control {
  padding: 16px 0;
  border: none !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: transparent;
  border-bottom: 1px solid #c1c1c1 !important;
}
.cid-uPeN41Rnne .dragArea.row .form-group .form-control:hover,
.cid-uPeN41Rnne .dragArea.row .form-group .form-control:focus {
  border: none !important;
  border-bottom: 1px solid #c1c1c1 !important;
}
.cid-uPeN41Rnne .dragArea.row .form-group .form-control::placeholder {
  color: #81358a;
  opacity: .7;
}
.cid-uPeN41Rnne .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uPeN41Rnne .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-uPeN41Rnne .dragArea.row .form-group .form-check .form-check-input {
  background-color: #fed243;
  border-color: #81358a;
  border-radius: 0;
}
.cid-uPeN41Rnne .dragArea.row .form-group .form-check .form-check-input:focus {
  background-color: #81358a;
}
.cid-uPeN41Rnne .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 16px;
}
.cid-uPeN41Rnne .dragArea.row .mbr-section-btn .btn {
  width: 100%;
}
.cid-uPeN41Rnne .mbr-section-title {
  color: #1c1c1c;
}
.cid-uPeN41Rnne .mbr-desc {
  color: #1c1c1c;
}
.cid-uPeN41Rnne .mbr-text {
  color: #1c1c1c;
}
.cid-uPeN41Rnne P {
  color: #407cae;
}
.cid-uPeN41Rnne H5 {
  color: #407cae;
}
.cid-uQrVrhBx1R {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uQrVrhBx1R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQrVrhBx1R .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-uQrVrhBx1R .container {
    padding: 0 24px;
  }
}
.cid-uQrVrhBx1R .row {
  justify-content: space-between;
}
.cid-uQrVrhBx1R .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uQrVrhBx1R .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQrVrhBx1R .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: 130px;
  padding-left: 48px;
}
@media (max-width: 992px) {
  .cid-uQrVrhBx1R .content-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-uQrVrhBx1R .content-wrapper .image-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uQrVrhBx1R .content-wrapper .image-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uQrVrhBx1R .content-wrapper .image-wrapper img {
  display: inline-flex;
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: .75rem !important;
}
@media (max-width: 768px) {
  .cid-uQrVrhBx1R .content-wrapper .image-wrapper img {
    width: 240px;
    height: 240px;
  }
}
.cid-uQrVrhBx1R .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uQrVrhBx1R .mbr-section-title {
  color: #f25d5d;
  text-align: right;
}
.cid-uQrVrhBx1R .mbr-text {
  color: #141414;
}
.cid-uSl5emBX0X {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSl5emBX0X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSl5emBX0X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSl5emBX0X .col-12 {
  position: relative;
}
.cid-uSl5emBX0X img {
  max-width: 800px;
  margin: auto;
}
.cid-uSl5emBX0X .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-uSl5emBX0X .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uSl5emBX0X .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSl5emBX0X .image-wrapper {
    padding: 1rem;
  }
}
.cid-uSl5emBX0X .mbr-section-title {
  color: #000000;
}
.cid-uPeN42wuu0 {
  background-color: #ffffff;
}
.cid-uPeN42wuu0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPeN42wuu0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPeN42wuu0 .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uPeN42wuu0 .row {
  align-items: center;
}
.cid-uPeN42wuu0 .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uPeN42wuu0 .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uPeN42wuu0 .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uPeN42wuu0 .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uPeN42wuu0 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uPeN42wuu0 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPeN42wuu0 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPeN42wuu0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uPeN42wuu0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPeN42wuu0 .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uPeN42wuu0 .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uPeN42wuu0 .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uPeN42wuu0 .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uPeN42wuu0 .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uPeN42wuu0 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uPeN42wuu0 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPeN42wuu0 .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #81358a !important;
}
.cid-uPeN42wuu0 .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uPeN42wuu0 .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uPeN42wuu0 .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uPeN42wuu0 .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #81358a;
}
@media (max-width: 991px) {
  .cid-uPeN42wuu0 .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uPeN42wuu0 .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uPeN42wuu0 .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uPeN42wuu0 .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uPeN42wuu0 .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uPeN42wuu0 .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uPeN42wuu0 .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uPeN42wuu0 .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uPeN42wuu0 .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uPeN42wuu0 .contact-text {
  width: 100%;
  color: #e61b72;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uPeN42wuu0 .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uPeN42wuu0 .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uPeN42wuu0 .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uPeN42wuu0 .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uPeN42wuu0 .contact-container {
    width: 100%;
  }
}
.cid-uPeN42wuu0 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #81358a;
}
.cid-uPeN42wuu0 .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uPeN42wuu0 .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uPeN42wuu0 .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uPeN42wuu0 .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uPeN42wuu0 .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #ffffff;
}
.cid-uPeN42wuu0 .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uPeN42wuu0 .copyright {
  color: #81358a;
  text-align: center;
}
.cid-uPeN42wuu0 .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uPeN42wuu0 .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #81358a 27%, #81358a 50%, #81358a 79%);
}
.cid-uPeN42wuu0 .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #e61b72 27%, #e61b72 50%, #e61b72 79%);
}
