.btn {
  border-width: 2px;
}
body {
  font-family: Figtree;
}
.display-1 {
  font-family: 'Figtree', sans-serif;
  font-size: 3rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'Figtree', sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'Figtree', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-5 {
  font-family: 'Figtree', sans-serif;
  font-size: 2rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Figtree', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((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: #ae65da !important;
}
.bg-success {
  background-color: #51d619 !important;
}
.bg-info {
  background-color: #3828ad !important;
}
.bg-warning {
  background-color: #a38000 !important;
}
.bg-danger {
  background-color: #e10000 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ae65da !important;
  border-color: #ae65da !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #862dbb !important;
  border-color: #862dbb !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #862dbb !important;
  border-color: #862dbb !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ae65da !important;
  border-color: #ae65da !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #862dbb !important;
  border-color: #862dbb !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #862dbb !important;
  border-color: #862dbb !important;
}
.btn-info,
.btn-info:active {
  background-color: #3828ad !important;
  border-color: #3828ad !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #211867 !important;
  border-color: #211867 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #211867 !important;
  border-color: #211867 !important;
}
.btn-success,
.btn-success:active {
  background-color: #51d619 !important;
  border-color: #51d619 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #348810 !important;
  border-color: #348810 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #348810 !important;
  border-color: #348810 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #a38000 !important;
  border-color: #a38000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #4c3c00 !important;
  border-color: #4c3c00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #4c3c00 !important;
  border-color: #4c3c00 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #e10000 !important;
  border-color: #e10000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8a0000 !important;
  border-color: #8a0000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8a0000 !important;
  border-color: #8a0000 !important;
}
.btn-white,
.btn-white:active {
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
  color: #939353 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #5c5c34 !important;
  background-color: #d7d7b8 !important;
  border-color: #d7d7b8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #939353 !important;
  background-color: #d7d7b8 !important;
  border-color: #d7d7b8 !important;
}
.btn-black,
.btn-black:active {
  background-color: #181817 !important;
  border-color: #181817 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #ae65da;
  color: #ae65da;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #862dbb !important;
  background-color: transparent!important;
  border-color: #862dbb !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ae65da !important;
  border-color: #ae65da !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ae65da;
  color: #ae65da;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #862dbb !important;
  background-color: transparent!important;
  border-color: #862dbb !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ae65da !important;
  border-color: #ae65da !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #3828ad;
  color: #3828ad;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #211867 !important;
  background-color: transparent!important;
  border-color: #211867 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #3828ad !important;
  border-color: #3828ad !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #51d619;
  color: #51d619;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #348810 !important;
  background-color: transparent!important;
  border-color: #348810 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #51d619 !important;
  border-color: #51d619 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #a38000;
  color: #a38000;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #4c3c00 !important;
  background-color: transparent!important;
  border-color: #4c3c00 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #a38000 !important;
  border-color: #a38000 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #e10000;
  color: #e10000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #8a0000 !important;
  background-color: transparent!important;
  border-color: #8a0000 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #e10000 !important;
  border-color: #e10000 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #181817;
  color: #181817;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #181817 !important;
  border-color: #181817 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #f6f6ef;
  color: #f6f6ef;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d7d7b8 !important;
  background-color: transparent!important;
  border-color: #d7d7b8 !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #939353 !important;
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
}
.text-primary {
  color: #ae65da !important;
}
.text-secondary {
  color: #ae65da !important;
}
.text-success {
  color: #51d619 !important;
}
.text-info {
  color: #3828ad !important;
}
.text-warning {
  color: #a38000 !important;
}
.text-danger {
  color: #e10000 !important;
}
.text-white {
  color: #f6f6ef !important;
}
.text-black {
  color: #181817 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #7d2aaf !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #7d2aaf !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #2e7b0e !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1d155a !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #3d3000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #7b0000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #d1d1ae !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ae65da;
}
.nav-tabs .nav-link:not(.active) {
  color: #181817;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #3828ad;
}
.alert-warning {
  background-color: #a38000;
}
.alert-danger {
  background-color: #e10000;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ae65da;
  border-color: #ae65da;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ae65da;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #d3f8c3;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #8275df;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffd023;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffaeae;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Figtree', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.875rem;
}
.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: #ae65da !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Figtree', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.875rem;
}
blockquote {
  border-color: #ae65da;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ae65da;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ae65da;
}
.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: #ae65da;
  border-bottom-color: #ae65da;
}
.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: #ae65da !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ae65da !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='%23ae65da' %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: .3s;
  transition: 0.3s;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1914px;
  padding: 0 2rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 575px) {
  .container {
    padding: 0 1rem;
  }
}
.row {
  margin-left: -1rem;
  margin-right: -1rem;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 1rem;
  padding-right: 1rem;
}
.mbr-section-btn .btn {
  min-width: 80px;
  min-height: 60px;
  padding: 26px 42px;
  border-radius: 10em !important;
  border-width: 1px;
  font-weight: 500;
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    width: 100%;
  }
  .mbr-section-btn .btn {
    width: 100%;
    min-width: auto !important;
  }
}
.mbr-section-btn .btn-white-outline:hover {
  background-color: #ae65da !important;
  border-color: #ae65da !important;
  color: #181817 !important;
}
.mbr-section-btn .btn-black-outline:hover {
  background-color: #181817 !important;
  border-color: #181817 !important;
  color: #ae65da !important;
}
.mbr-section-btn .btn-primary {
  color: #181817 !important;
}
.mbr-section-btn .btn-primary:hover {
  background-color: #181817 !important;
  border-color: #181817 !important;
  color: #ae65da !important;
}
b,
strong {
  font-weight: 900 !important;
}
body.scaled > .template .app-component > .app-component-content > section .mbr-fullscreen {
  min-height: 20vh !important;
  height: auto !important;
}
html:not(.is-main-interface) body[data-bs-padding-right]:not(.rounded-canvas) {
  overflow-y: visible !important;
  padding-right: 0 !important;
}
.cid-uxxrgg762H {
  z-index: 1000;
  width: 100%;
  height: 0 !important;
}
.cid-uxxrgg762H .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-uxxrgg762H .dropdown-menu {
  padding: 0;
}
.cid-uxxrgg762H .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uxxrgg762H .dropdown-item {
    text-align: left !important;
  }
}
.cid-uxxrgg762H .dropdown-item:hover {
  background-position: right !important;
}
.cid-uxxrgg762H .dropdown-item:hover:after {
  color: #ae65da;
}
.cid-uxxrgg762H .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uxxrgg762H .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uxxrgg762H .nav-link {
  position: relative;
}
.cid-uxxrgg762H .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
.cid-uxxrgg762H .dropdown-menu,
.cid-uxxrgg762H .navbar.opened {
  background: #ffffff !important;
}
.cid-uxxrgg762H .nav-item:focus,
.cid-uxxrgg762H .nav-link:focus {
  outline: none;
}
.cid-uxxrgg762H .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uxxrgg762H .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uxxrgg762H .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uxxrgg762H .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uxxrgg762H .navbar {
  min-height: 70px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
  position: absolute ;
}
.cid-uxxrgg762H .navbar.opened {
  transition: all 0.3s;
}
.cid-uxxrgg762H .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uxxrgg762H .navbar .navbar-logo img {
  width: auto;
}
.cid-uxxrgg762H .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uxxrgg762H .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uxxrgg762H .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxxrgg762H .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxxrgg762H .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uxxrgg762H .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-uxxrgg762H .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uxxrgg762H .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uxxrgg762H .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uxxrgg762H .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uxxrgg762H .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uxxrgg762H .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uxxrgg762H .navbar {
    min-height: 70px;
  }
}
.cid-uxxrgg762H .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uxxrgg762H .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding: 10px 15px 10px 0 !important;
}
.cid-uxxrgg762H .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uxxrgg762H .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uxxrgg762H .navbar-brand {
    min-height: 70px;
  }
}
.cid-uxxrgg762H .dropdown-item.active,
.cid-uxxrgg762H .dropdown-item:active {
  background-color: transparent;
  color: #FFFFFF;
}
.cid-uxxrgg762H .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uxxrgg762H .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxxrgg762H .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxxrgg762H .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uxxrgg762H .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uxxrgg762H .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxxrgg762H ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uxxrgg762H button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uxxrgg762H button.navbar-toggler:hover {
  color: #FFFFFF;
  transform: scale(1.1);
}
.cid-uxxrgg762H button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uxxrgg762H button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uxxrgg762H button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uxxrgg762H button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uxxrgg762H button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uxxrgg762H button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxxrgg762H nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxxrgg762H nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxxrgg762H nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxxrgg762H nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxxrgg762H .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uxxrgg762H a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uxxrgg762H .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-uxxrgg762H .navbar {
    height: 70px;
  }
  .cid-uxxrgg762H .navbar.opened {
    height: auto;
  }
  .cid-uxxrgg762H .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
    color: #FFFFFF;
  }
}
.cid-uxxrgg762H .navbar-short {
  min-height: 70px;
  background: #ffffff;
  background: rgba(255, 255, 255, 0);
}
@media (max-width: 575px) {
  .cid-uxxrgg762H .navbar-short {
    min-height: 70px;
  }
}
.cid-uxxrgg762H .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uxxrgg762H .navbar-nav {
  display: flex !important;
  padding-bottom: 10px;
}
.cid-uxxrgg762H .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
  font-weight: 900;
  transition: 0.3s all;
}
.cid-uxxrgg762H .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 1;
  font-weight: inherit !important;
  justify-content: flex-start;
}
.cid-uxxrgg762H .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uxxrgg762H .navbar-nav .nav-item .nav-link:hover,
.cid-uxxrgg762H .navbar-nav .nav-item .nav-link:focus,
.cid-uxxrgg762H .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uxxrgg762H .navbar-nav .nav-item:not(:first-child) {
  margin-top: 1.5rem !important;
}
.cid-uxxrgg762H .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #8a66a8 !important;
}
.cid-uxxrgg762H .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uxxrgg762H .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uxxrgg762H button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  padding: 0;
}
.cid-uxxrgg762H button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
}
.cid-uxxrgg762H button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 0;
  width: 37px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uxxrgg762H button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 9px;
  transition: all 0.2s;
}
.cid-uxxrgg762H button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 17px;
  width: 27px;
  height: 3px;
  transition: all 0.15s;
}
.cid-uxxrgg762H button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 17px;
  width: 27px;
  height: 3px;
  transition: all 0.15s;
}
.cid-uxxrgg762H button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 26px;
  transition: all 0.2s;
}
.cid-uxxrgg762H .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
  opacity: 1 !important;
  outline: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 20;
  align-self: center;
  padding: 0;
}
.cid-uxxrgg762H .btn-close .hamburger-offcanvas {
  position: relative;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
}
.cid-uxxrgg762H .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 0;
  width: 37px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uxxrgg762H .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uxxrgg762H .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-uxxrgg762H .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-uxxrgg762H .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uxxrgg762H .offcanvas-end {
  right: 0 !important;
  transform: translateX(100%);
}
.cid-uxxrgg762H .offcanvas.show {
  transform: translateX(0);
}
.cid-uxxrgg762H .offcanvas {
  width: 36%;
  padding: 10px;
  border-left: none !important;
  background-color: transparent !important;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .cid-uxxrgg762H .offcanvas {
    width: 512px;
  }
}
@media (max-width: 767px) {
  .cid-uxxrgg762H .offcanvas {
    width: 100%;
  }
}
.cid-uxxrgg762H .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uxxrgg762H .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 3rem 2.5rem 2.5rem;
  border-radius: 1.5rem;
  width: 100%;
  text-align: left;
  background-color: #8a66a8;
  box-shadow: none;
  overflow: auto;
}
.cid-uxxrgg762H .offcanvas-body .offcanvas_head {
  width: 100%;
  padding-bottom: 20px;
}
.cid-uxxrgg762H .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uxxrgg762H .modal-backdrop.show {
  opacity: 0 !important;
}
.cid-uxxrgg762H .offcanvas_link {
  width: 100%;
  padding: 0;
  margin-top: 0;
}
.cid-uxxrgg762H .offcanvas_foot {
  width: 100%;
  margin-top: auto;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding-top: 10px;
}
.cid-uxxrgg762H .offcanvas_btn {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}
.cid-uxxrgg762H .offcanvas_btn .mbr-section-btn {
  width: 100%;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-uxxrgg762H .offcanvas_btn .mbr-section-btn .btn {
    width: auto !important;
  }
}
.cid-uxxrgg762H .second-links {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
}
.cid-uxxrgg762H .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #f6f6ef;
  transition: 0.3s all;
}
.cid-uxxrgg762H .list li {
  width: 100%;
  color: inherit !important;
  transition: 0.3s all;
}
.cid-uxxrgg762H .list li:hover {
  color: #ae65da !important;
}
.cid-uxxrgg762H .list a {
  color: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
  transition: 0.3s all;
}
.cid-uxxrgg762H .list a:hover {
  color: #ae65da !important;
  line-height: inherit !important;
}
.cid-uxxrgg762H .second-list {
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: 1fr 1fr;
  grid-column-gap: 2rem;
  grid-row-gap: 0.5rem;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 991px) {
  .cid-uxxrgg762H .second-list {
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-uxxrgg762H .second-list li {
  line-height: 1.5;
  opacity: 0.8;
}
.cid-uxxrgg762H .second-list li:hover {
  opacity: 1;
}
.cid-uxxrgg762H .footer-text {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
  color: #f6f6ef;
  margin-bottom: 0;
  opacity: 0.8;
  align-self: end;
}
.cid-uvaN3yuUf3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvaN3yuUf3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-uvaN3yuUf3 .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uvaN3yuUf3 .title-wrapper {
    padding: 0 12px;
  }
}
.cid-uvaN3yuUf3 .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uvaN3yuUf3 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uvaN3yuUf3 .links-container {
  margin-top: 64px;
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uvaN3yuUf3 .links-container {
    margin-top: 32px;
  }
}
.cid-uvaN3yuUf3 .links-container .links-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-uvaN3yuUf3 .links-container .links-wrapper .mbr-links {
  margin-bottom: 0;
}
.cid-uvaN3yuUf3 .links-container .links-wrapper .mbr-dot {
  margin: 0 10px;
}
.cid-uvaN3yuUf3 .links-container .links-wrapper .mbr-iconfont {
  display: flex;
  width: 13px;
  font-size: 11px;
  margin-right: 5px;
}
.cid-uvaN3yuUf3 .links-container .links-wrapper .mbr-iconfont:hover {
  opacity: 0.7;
}
.cid-uvaN3yuUf3 .mbr-section-title {
  color: #181818;
}
.cid-uvaN3yuUf3 .mbr-person {
  color: #181818;
}
.cid-uvaN3yuUf3 .mbr-links,
.cid-uvaN3yuUf3 .mbr-dot,
.cid-uvaN3yuUf3 .mbr-iconfont {
  color: #181818;
}
.cid-uvaN3yuUf3 .mbr-section-title,
.cid-uvaN3yuUf3 .mbr-section-btn,
.cid-uvaN3yuUf3 .person-container,
.cid-uvaN3yuUf3 .links-container {
  text-align: center;
  color: #ffffff;
}
.cid-uvaN3yuUf3 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uvxQsGwmIr {
  background-color: #dddddd;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uvxQsGwmIr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvxQsGwmIr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uvxQsGwmIr {
    padding-bottom: 0 !important;
  }
}
.cid-uvxQsGwmIr .container {
  position: static;
}
@media (max-width: 991px) {
  .cid-uvxQsGwmIr .container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uvxQsGwmIr .row {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
}
.cid-uvxQsGwmIr .text-wrapper {
  position: relative;
  z-index: 4;
  margin-bottom: 10rem;
}
@media (max-width: 991px) {
  .cid-uvxQsGwmIr .text-wrapper {
    max-width: 560px;
    width: 100%;
    margin-right: auto;
  }
}
.cid-uvxQsGwmIr .mbr-section-title {
  color: #ae65da;
  margin-bottom: 2rem;
}
.cid-uvxQsGwmIr .mbr-text {
  color: #181817;
  margin-bottom: 1rem;
  text-align: justify;
}
.cid-uvxQsGwmIr .mbr-section-btn {
  margin-top: 24px;
}
@media (max-width: 991px) {
  .cid-uvxQsGwmIr .col-img {
    margin-top: auto;
  }
}
@media (max-width: 575px) {
  .cid-uvxQsGwmIr .col-img {
    padding: 0 !important;
  }
}
.cid-uvxQsGwmIr .image-wrapper {
  display: flex;
  align-items: flex-end;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 55%;
  height: 100%;
}
.cid-uvxQsGwmIr .image-wrapper img {
  object-fit: cover;
  border-radius: 100%;
  width: 50%;
  height: 50%;
}
@media (max-width: 991px) {
  .cid-uvxQsGwmIr .image-wrapper {
    position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: -2rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvxQsGwmIr .image-wrapper {
    margin-right: -1.5rem;
  }
}
@media (max-width: 991px) and (max-width: 575px) {
  .cid-uvxQsGwmIr .image-wrapper {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-uvxQsGwmIr .img-bg {
  position: absolute;
  right: -15%;
  bottom: -35%;
  width: 65vw;
  aspect-ratio: 1;
  border-radius: 100%;
  background: #ae65da;
  z-index: 2;
}
@media (max-width: 991px) {
  .cid-uvxQsGwmIr .img-bg {
    width: 1000px;
    right: -400px;
  }
}
@media (max-width: 767px) {
  .cid-uvxQsGwmIr .img-bg {
    width: 800px;
    right: -300px;
  }
}
@media (max-width: 575px) {
  .cid-uvxQsGwmIr .img-bg {
    width: 170vw;
    right: -75vw;
  }
}
.cid-uvtgGxghSD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-uvtgGxghSD .img-bg-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 600px;
  padding: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uvtgGxghSD .img-bg-container {
    min-height: 560px;
  }
}
@media (max-width: 767px) {
  .cid-uvtgGxghSD .img-bg-container {
    padding: 1.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uvtgGxghSD .img-bg-container {
    padding: 1rem;
  }
}
.cid-uvtgGxghSD .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/mbr-1920x1305.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.cid-uvtgGxghSD .img-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle farthest-corner at 0 100%, rgba(24, 24, 23, 0.9) 38%, rgba(24, 24, 23, 0.5));
}
.cid-uvtgGxghSD .text-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-uvtgGxghSD .mbr-section-title {
  color: #ae65da;
  margin-bottom: 1rem;
}
.cid-uvtgGxghSD .mbr-text {
  color: #f6f6ef;
  opacity: 0.8;
  margin-bottom: 1rem;
  text-align: justify;
}
.cid-uvtgGxghSD .mbr-section-btn {
  margin-top: 1rem;
}
.cid-uw8JvHnkaE {
  background-color: #181817;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.cid-uw8JvHnkaE .container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.cid-uw8JvHnkaE .row {
  width: 100%;
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.cid-uw8JvHnkaE .img-bg-container {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
.cid-uw8JvHnkaE .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/mbr-3-1920x1280.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.3;
}
.cid-uw8JvHnkaE .text-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-uw8JvHnkaE .mbr-section-title {
  color: #FACB1D;
  margin-bottom: 1.9rem;
}
.cid-uw8JvHnkaE .mbr-text {
  color: #f6f6ef;
  margin-top: 1.9rem;
  margin-bottom: 0;
  text-align: left;
}
.cid-uw8JvHnkaE .mbr-section-btn .btn-white-outline:hover {
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
  color: #181817 !important;
}
.cid-uw8JvHnkaE .mbr-section-title,
.cid-uw8JvHnkaE .mbr-section-btn {
  color: #ae65da;
}
#preguntas_frecuentes {
  /* Type valid CSS here */
}
#preguntas_frecuentes div {
  padding: 10px 0;
  color: #777;
  text-align: center;
  background-color: #dedede;
}
#preguntas_frecuentes p {
  font-size: 60px;
  color: #777;
}
#preguntas_frecuentes .mbr-section-title {
  color: #ae65da;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}
.cid-uBZe20KIpw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #dddddd;
}
.cid-uBZe20KIpw .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 460px;
  max-width: 460px;
}
@media (max-width: 767px) {
  .cid-uBZe20KIpw .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uBZe20KIpw .embla__slide:nth-child(2n) .slide-content::before {
  transform: rotate(6deg);
}
@media (max-width: 768px) {
  .cid-uBZe20KIpw .embla__slide:nth-child(2n) .slide-content::before {
    transform: rotate(0);
  }
}
.cid-uBZe20KIpw .embla__slide .slide-content {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 100px 46px;
}
@media (max-width: 992px) {
  .cid-uBZe20KIpw .embla__slide .slide-content {
    padding: 46px 22px;
  }
}
.cid-uBZe20KIpw .embla__slide .slide-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background-color: #ae65da;
  transform: rotate(-6deg);
}
@media (max-width: 768px) {
  .cid-uBZe20KIpw .embla__slide .slide-content::before {
    width: 100%;
    transform: rotate(0);
  }
}
.cid-uBZe20KIpw .embla__slide .slide-content .item-wrapper {
  position: relative;
  height: 100%;
}
.cid-uBZe20KIpw .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-uBZe20KIpw .embla__slide .slide-content .item-wrapper .item-content .item-text {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uBZe20KIpw .embla__slide .slide-content .item-wrapper .item-content .item-text {
    margin-bottom: 16px;
  }
}
.cid-uBZe20KIpw .embla__slide .slide-content .item-wrapper .item-content .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uBZe20KIpw .embla__button--next,
.cid-uBZe20KIpw .embla__button--prev {
  display: flex;
}
.cid-uBZe20KIpw .embla__button {
  top: 0;
  width: 80px;
  height: 80px;
  font-size: 30px;
  background-color: #ae65da !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uBZe20KIpw .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uBZe20KIpw .embla__button:hover {
  background: #ae65da !important;
}
.cid-uBZe20KIpw .embla__button.embla__button--prev {
  left: 48px;
}
@media (max-width: 992px) {
  .cid-uBZe20KIpw .embla__button.embla__button--prev {
    left: 16px;
  }
}
.cid-uBZe20KIpw .embla__button.embla__button--next {
  right: 48px;
}
@media (max-width: 992px) {
  .cid-uBZe20KIpw .embla__button.embla__button--next {
    right: 16px;
  }
}
.cid-uBZe20KIpw .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-uBZe20KIpw .embla__viewport {
  width: 100%;
  margin-right: 1rem;
  padding-top: 8rem;
}
.cid-uBZe20KIpw .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uBZe20KIpw .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uBZe20KIpw .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uBZe20KIpw .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uBZe20KIpw .item-text {
  color: #ffffff;
}
.cid-uBZe20KIpw .item-text,
.cid-uBZe20KIpw .mbr-section-btn {
  text-align: center;
}
.cid-uvc5UakmRa {
  background-color: #f6f6ef;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uvc5UakmRa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvc5UakmRa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uvc5UakmRa {
    padding-bottom: 0 !important;
  }
}
.cid-uvc5UakmRa .container {
  position: static;
}
@media (max-width: 991px) {
  .cid-uvc5UakmRa .container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uvc5UakmRa .row {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
}
.cid-uvc5UakmRa .text-wrapper {
  position: relative;
  z-index: 4;
  margin-bottom: 10rem;
}
@media (max-width: 991px) {
  .cid-uvc5UakmRa .text-wrapper {
    max-width: 560px;
    width: 100%;
    margin-right: auto;
  }
}
.cid-uvc5UakmRa .mbr-section-title {
  color: #181817;
  margin-bottom: 2rem;
}
.cid-uvc5UakmRa .mbr-text {
  color: #181817;
  margin-bottom: 1rem;
  text-align: justify;
}
.cid-uvc5UakmRa .mbr-section-btn {
  margin-top: 24px;
}
@media (max-width: 991px) {
  .cid-uvc5UakmRa .col-img {
    margin-top: auto;
  }
}
@media (max-width: 575px) {
  .cid-uvc5UakmRa .col-img {
    padding: 0 !important;
  }
}
.cid-uvc5UakmRa .image-wrapper {
  display: flex;
  align-items: flex-end;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 55%;
  height: 100%;
}
.cid-uvc5UakmRa .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uvc5UakmRa .image-wrapper {
    position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: -2rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvc5UakmRa .image-wrapper {
    margin-right: -1.5rem;
  }
}
@media (max-width: 991px) and (max-width: 575px) {
  .cid-uvc5UakmRa .image-wrapper {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-uvc5UakmRa .img-bg {
  position: absolute;
  right: -15%;
  bottom: -35%;
  width: 65vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #dddddd;
  z-index: 2;
}
@media (max-width: 991px) {
  .cid-uvc5UakmRa .img-bg {
    width: 1000px;
    right: -400px;
  }
}
@media (max-width: 767px) {
  .cid-uvc5UakmRa .img-bg {
    width: 800px;
    right: -300px;
  }
}
@media (max-width: 575px) {
  .cid-uvc5UakmRa .img-bg {
    width: 170vw;
    right: -75vw;
  }
}
.cid-tjiLgmAQ4J {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #181817;
}
.cid-tjiLgmAQ4J .mbr-text {
  color: #f6f6ef;
}
.cid-uxxrgg762H {
  z-index: 1000;
  width: 100%;
  height: 0 !important;
}
.cid-uxxrgg762H .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-uxxrgg762H .dropdown-menu {
  padding: 0;
}
.cid-uxxrgg762H .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uxxrgg762H .dropdown-item {
    text-align: left !important;
  }
}
.cid-uxxrgg762H .dropdown-item:hover {
  background-position: right !important;
}
.cid-uxxrgg762H .dropdown-item:hover:after {
  color: #ae65da;
}
.cid-uxxrgg762H .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uxxrgg762H .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uxxrgg762H .nav-link {
  position: relative;
}
.cid-uxxrgg762H .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
.cid-uxxrgg762H .dropdown-menu,
.cid-uxxrgg762H .navbar.opened {
  background: #ffffff !important;
}
.cid-uxxrgg762H .nav-item:focus,
.cid-uxxrgg762H .nav-link:focus {
  outline: none;
}
.cid-uxxrgg762H .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uxxrgg762H .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uxxrgg762H .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uxxrgg762H .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uxxrgg762H .navbar {
  min-height: 70px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
  position: absolute ;
}
.cid-uxxrgg762H .navbar.opened {
  transition: all 0.3s;
}
.cid-uxxrgg762H .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uxxrgg762H .navbar .navbar-logo img {
  width: auto;
}
.cid-uxxrgg762H .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uxxrgg762H .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uxxrgg762H .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxxrgg762H .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxxrgg762H .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uxxrgg762H .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-uxxrgg762H .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uxxrgg762H .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uxxrgg762H .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uxxrgg762H .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uxxrgg762H .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uxxrgg762H .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uxxrgg762H .navbar {
    min-height: 70px;
  }
}
.cid-uxxrgg762H .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uxxrgg762H .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding: 10px 15px 10px 0 !important;
}
.cid-uxxrgg762H .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uxxrgg762H .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uxxrgg762H .navbar-brand {
    min-height: 70px;
  }
}
.cid-uxxrgg762H .dropdown-item.active,
.cid-uxxrgg762H .dropdown-item:active {
  background-color: transparent;
  color: #FFFFFF;
}
.cid-uxxrgg762H .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uxxrgg762H .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxxrgg762H .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxxrgg762H .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uxxrgg762H .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uxxrgg762H .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxxrgg762H ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uxxrgg762H button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uxxrgg762H button.navbar-toggler:hover {
  color: #FFFFFF;
  transform: scale(1.1);
}
.cid-uxxrgg762H button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uxxrgg762H button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uxxrgg762H button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uxxrgg762H button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uxxrgg762H button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uxxrgg762H button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxxrgg762H nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxxrgg762H nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxxrgg762H nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxxrgg762H nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxxrgg762H .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uxxrgg762H a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uxxrgg762H .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-uxxrgg762H .navbar {
    height: 70px;
  }
  .cid-uxxrgg762H .navbar.opened {
    height: auto;
  }
  .cid-uxxrgg762H .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
    color: #FFFFFF;
  }
}
.cid-uxxrgg762H .navbar-short {
  min-height: 70px;
  background: #ffffff;
  background: rgba(255, 255, 255, 0);
}
@media (max-width: 575px) {
  .cid-uxxrgg762H .navbar-short {
    min-height: 70px;
  }
}
.cid-uxxrgg762H .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uxxrgg762H .navbar-nav {
  display: flex !important;
  padding-bottom: 10px;
}
.cid-uxxrgg762H .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
  font-weight: 900;
  transition: 0.3s all;
}
.cid-uxxrgg762H .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 1;
  font-weight: inherit !important;
  justify-content: flex-start;
}
.cid-uxxrgg762H .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uxxrgg762H .navbar-nav .nav-item .nav-link:hover,
.cid-uxxrgg762H .navbar-nav .nav-item .nav-link:focus,
.cid-uxxrgg762H .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uxxrgg762H .navbar-nav .nav-item:not(:first-child) {
  margin-top: 1.5rem !important;
}
.cid-uxxrgg762H .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #8a66a8 !important;
}
.cid-uxxrgg762H .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uxxrgg762H .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uxxrgg762H button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  padding: 0;
}
.cid-uxxrgg762H button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
}
.cid-uxxrgg762H button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 0;
  width: 37px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uxxrgg762H button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 9px;
  transition: all 0.2s;
}
.cid-uxxrgg762H button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 17px;
  width: 27px;
  height: 3px;
  transition: all 0.15s;
}
.cid-uxxrgg762H button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 17px;
  width: 27px;
  height: 3px;
  transition: all 0.15s;
}
.cid-uxxrgg762H button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 26px;
  transition: all 0.2s;
}
.cid-uxxrgg762H .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
  opacity: 1 !important;
  outline: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 20;
  align-self: center;
  padding: 0;
}
.cid-uxxrgg762H .btn-close .hamburger-offcanvas {
  position: relative;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
}
.cid-uxxrgg762H .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 0;
  width: 37px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uxxrgg762H .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uxxrgg762H .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-uxxrgg762H .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-uxxrgg762H .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uxxrgg762H .offcanvas-end {
  right: 0 !important;
  transform: translateX(100%);
}
.cid-uxxrgg762H .offcanvas.show {
  transform: translateX(0);
}
.cid-uxxrgg762H .offcanvas {
  width: 36%;
  padding: 10px;
  border-left: none !important;
  background-color: transparent !important;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .cid-uxxrgg762H .offcanvas {
    width: 512px;
  }
}
@media (max-width: 767px) {
  .cid-uxxrgg762H .offcanvas {
    width: 100%;
  }
}
.cid-uxxrgg762H .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uxxrgg762H .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 3rem 2.5rem 2.5rem;
  border-radius: 1.5rem;
  width: 100%;
  text-align: left;
  background-color: #8a66a8;
  box-shadow: none;
  overflow: auto;
}
.cid-uxxrgg762H .offcanvas-body .offcanvas_head {
  width: 100%;
  padding-bottom: 20px;
}
.cid-uxxrgg762H .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uxxrgg762H .modal-backdrop.show {
  opacity: 0 !important;
}
.cid-uxxrgg762H .offcanvas_link {
  width: 100%;
  padding: 0;
  margin-top: 0;
}
.cid-uxxrgg762H .offcanvas_foot {
  width: 100%;
  margin-top: auto;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding-top: 10px;
}
.cid-uxxrgg762H .offcanvas_btn {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}
.cid-uxxrgg762H .offcanvas_btn .mbr-section-btn {
  width: 100%;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-uxxrgg762H .offcanvas_btn .mbr-section-btn .btn {
    width: auto !important;
  }
}
.cid-uxxrgg762H .second-links {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
}
.cid-uxxrgg762H .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #f6f6ef;
  transition: 0.3s all;
}
.cid-uxxrgg762H .list li {
  width: 100%;
  color: inherit !important;
  transition: 0.3s all;
}
.cid-uxxrgg762H .list li:hover {
  color: #ae65da !important;
}
.cid-uxxrgg762H .list a {
  color: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
  transition: 0.3s all;
}
.cid-uxxrgg762H .list a:hover {
  color: #ae65da !important;
  line-height: inherit !important;
}
.cid-uxxrgg762H .second-list {
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: 1fr 1fr;
  grid-column-gap: 2rem;
  grid-row-gap: 0.5rem;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 991px) {
  .cid-uxxrgg762H .second-list {
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-uxxrgg762H .second-list li {
  line-height: 1.5;
  opacity: 0.8;
}
.cid-uxxrgg762H .second-list li:hover {
  opacity: 1;
}
.cid-uxxrgg762H .footer-text {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
  color: #f6f6ef;
  margin-bottom: 0;
  opacity: 0.8;
  align-self: end;
}
.cid-uxslCnz0OF {
  background-image: url("../../../assets/images/back-back-2000x1520.png");
}
.cid-uxslCnz0OF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxslCnz0OF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxslCnz0OF .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uxslCnz0OF .title-wrapper {
    padding: 0 12px;
  }
}
.cid-uxslCnz0OF .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uxslCnz0OF .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uxslCnz0OF .links-container {
  margin-top: 64px;
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uxslCnz0OF .links-container {
    margin-top: 32px;
  }
}
.cid-uxslCnz0OF .links-container .links-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-uxslCnz0OF .links-container .links-wrapper .mbr-links {
  margin-bottom: 0;
}
.cid-uxslCnz0OF .links-container .links-wrapper .mbr-dot {
  margin: 0 10px;
}
.cid-uxslCnz0OF .links-container .links-wrapper .mbr-iconfont {
  display: flex;
  width: 13px;
  font-size: 11px;
  margin-right: 5px;
}
.cid-uxslCnz0OF .links-container .links-wrapper .mbr-iconfont:hover {
  opacity: 0.7;
}
.cid-uxslCnz0OF .mbr-section-title {
  color: #181818;
}
.cid-uxslCnz0OF .mbr-person {
  color: #181818;
}
.cid-uxslCnz0OF .mbr-links,
.cid-uxslCnz0OF .mbr-dot,
.cid-uxslCnz0OF .mbr-iconfont {
  color: #181818;
}
.cid-uxslCnz0OF .mbr-section-title,
.cid-uxslCnz0OF .mbr-section-btn,
.cid-uxslCnz0OF .person-container,
.cid-uxslCnz0OF .links-container {
  text-align: center;
  color: #ae65da;
}
.cid-uxslCnz0OF .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uxslDO4YLY {
  background-color: #181817;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.cid-uxslDO4YLY .container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.cid-uxslDO4YLY .row {
  width: 100%;
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.cid-uxslDO4YLY .img-bg-container {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
.cid-uxslDO4YLY .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/rdr-5371-2000x1333.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.3;
}
.cid-uxslDO4YLY .text-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-uxslDO4YLY .mbr-section-title {
  color: #FACB1D;
  margin-bottom: 1.9rem;
}
.cid-uxslDO4YLY .mbr-text {
  color: #f6f6ef;
  margin-top: 1.9rem;
  margin-bottom: 0;
  text-align: justify;
}
.cid-uxslDO4YLY .mbr-section-btn .btn-white-outline:hover {
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
  color: #181817 !important;
}
.cid-uxslDO4YLY .mbr-section-title,
.cid-uxslDO4YLY .mbr-section-btn {
  color: #ffffff;
}
.cid-uyLwt97V9x {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-uyLwt97V9x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyLwt97V9x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyLwt97V9x .grid-container {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  -ms-grid-columns: 3fr 6fr;
  grid-template-columns: 3fr 6fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 991px) {
  .cid-uyLwt97V9x .grid-container {
    grid-auto-flow: row;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-uyLwt97V9x .mbr-section-title {
  color: #ae65da;
}
.cid-uyLwt97V9x .mbr-section-subtitle {
  color: #f6f6ef;
  margin-top: 1rem;
}
.cid-uyLwt97V9x .list {
  width: 100%;
  list-style: none;
  padding-left: 40px;
  margin-bottom: 0;
  color: #f6f6ef;
  transition: 0.3s all;
}
.cid-uyLwt97V9x .list li {
  position: relative;
  width: 100%;
  color: inherit !important;
  transition: 0.3s all;
}
.cid-uyLwt97V9x .list li:not(:first-child) {
  margin-top: 1rem;
}
.cid-uyLwt97V9x .list li:before {
  content: "";
  position: absolute;
  top: 15px;
  left: -20px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: currentColor;
}
.cid-uyLwt97V9x .list a {
  color: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
  transition: 0.3s all;
}
.cid-uyLwt97V9x .list a:hover {
  color: #ae65da !important;
  line-height: inherit !important;
}
.cid-uxslETzTFL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-uxslETzTFL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxslETzTFL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxslETzTFL .grid-container {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  -ms-grid-columns: 3fr 6fr;
  grid-template-columns: 3fr 6fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 991px) {
  .cid-uxslETzTFL .grid-container {
    grid-auto-flow: row;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-uxslETzTFL .mbr-section-title {
  color: #ae65da;
}
.cid-uxslETzTFL .mbr-section-subtitle {
  color: #f6f6ef;
  margin-top: 1rem;
}
.cid-uxslETzTFL .list {
  width: 100%;
  list-style: none;
  padding-left: 40px;
  margin-bottom: 0;
  color: #f6f6ef;
  transition: 0.3s all;
}
.cid-uxslETzTFL .list li {
  position: relative;
  width: 100%;
  color: inherit !important;
  transition: 0.3s all;
}
.cid-uxslETzTFL .list li:not(:first-child) {
  margin-top: 1rem;
}
.cid-uxslETzTFL .list li:before {
  content: "";
  position: absolute;
  top: 15px;
  left: -20px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: currentColor;
}
.cid-uxslETzTFL .list a {
  color: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
  transition: 0.3s all;
}
.cid-uxslETzTFL .list a:hover {
  color: #ae65da !important;
  line-height: inherit !important;
}
.cid-uxsq7rveVQ {
  background-color: #181817;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.cid-uxsq7rveVQ .container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.cid-uxsq7rveVQ .row {
  width: 100%;
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.cid-uxsq7rveVQ .img-bg-container {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
.cid-uxsq7rveVQ .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/rdr-5429-2000x1332.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.3;
}
.cid-uxsq7rveVQ .text-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-uxsq7rveVQ .mbr-section-title {
  color: #FACB1D;
  margin-bottom: 1.9rem;
}
.cid-uxsq7rveVQ .mbr-text {
  color: #f6f6ef;
  margin-top: 1.9rem;
  margin-bottom: 0;
  text-align: justify;
}
.cid-uxsq7rveVQ .mbr-section-btn .btn-white-outline:hover {
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
  color: #181817 !important;
}
.cid-uxsq7rveVQ .mbr-section-title,
.cid-uxsq7rveVQ .mbr-section-btn {
  color: #ffffff;
}
.cid-uxsrbyL0Ns {
  background-color: #181817;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.cid-uxsrbyL0Ns .container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.cid-uxsrbyL0Ns .row {
  width: 100%;
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.cid-uxsrbyL0Ns .img-bg-container {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
.cid-uxsrbyL0Ns .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/rdr-5823-2000x1333.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.3;
}
.cid-uxsrbyL0Ns .text-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-uxsrbyL0Ns .mbr-section-title {
  color: #FACB1D;
  margin-bottom: 1.9rem;
}
.cid-uxsrbyL0Ns .mbr-text {
  color: #f6f6ef;
  margin-top: 1.9rem;
  margin-bottom: 0;
  text-align: justify;
}
.cid-uxsrbyL0Ns .mbr-section-btn .btn-white-outline:hover {
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
  color: #181817 !important;
}
.cid-uxsrbyL0Ns .mbr-section-title,
.cid-uxsrbyL0Ns .mbr-section-btn {
  color: #ffffff;
}
.cid-uxstt3ZEW3 {
  background-image: url("../../../assets/images/mbr-1920x1211.png");
  position: relative;
  overflow: hidden;
}
.cid-uxstt3ZEW3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxstt3ZEW3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxstt3ZEW3 .col-text {
  position: relative;
  width: 34vw;
}
@media (max-width: 991px) {
  .cid-uxstt3ZEW3 .col-text {
    width: 62vw;
  }
}
@media (max-width: 767px) {
  .cid-uxstt3ZEW3 .col-text {
    width: 70vw;
  }
}
@media (max-width: 575px) {
  .cid-uxstt3ZEW3 .col-text {
    width: 100%;
  }
}
.cid-uxstt3ZEW3 .text-wrap {
  position: relative;
  z-index: 3;
  padding: 3%;
  margin-bottom: 10%;
}
@media (max-width: 767px) {
  .cid-uxstt3ZEW3 .text-wrap {
    padding: 0;
  }
}
@media (max-width: 575px) {
  .cid-uxstt3ZEW3 .text-wrap {
    width: 100%;
    max-width: 70vw;
    margin: 0 auto;
    margin-bottom: 10%;
  }
}
.cid-uxstt3ZEW3 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 70px;
  color: #181817;
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
.cid-uxstt3ZEW3 .mbr-section-title {
  color: #ffffff;
  opacity: 0.8;
}
.cid-uxstt3ZEW3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxstt3ZEW3 .mbr-text {
  color: #181817;
  margin-bottom: 1rem;
  opacity: 0.8;
}
.cid-uxstt3ZEW3 .mbr-section-btn {
  margin-top: 1rem;
}
.cid-uxstt3ZEW3 .img-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ae65da;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-uxstt3ZEW3 .img-bg {
    width: 380px;
  }
}
@media (max-width: 575px) {
  .cid-uxstt3ZEW3 .img-bg {
    width: calc(100% - 2rem);
  }
}
.cid-uxstt3ZEW3 .mbr-text,
.cid-uxstt3ZEW3 .mbr-section-btn {
  color: #ffffff;
}
.cid-uxstt3ZEW3 .circulo {
  text-align: justify;
  font-size: 0.90rem;
}
.cid-uxslwzTP6s {
  background-color: #f6f6ef;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uxslwzTP6s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxslwzTP6s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uxslwzTP6s {
    padding-bottom: 0 !important;
  }
}
.cid-uxslwzTP6s .container {
  position: static;
}
@media (max-width: 991px) {
  .cid-uxslwzTP6s .container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uxslwzTP6s .row {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
}
.cid-uxslwzTP6s .text-wrapper {
  position: relative;
  z-index: 4;
  margin-bottom: 10rem;
}
@media (max-width: 991px) {
  .cid-uxslwzTP6s .text-wrapper {
    max-width: 560px;
    width: 100%;
    margin-right: auto;
  }
}
.cid-uxslwzTP6s .mbr-section-title {
  color: #181817;
  margin-bottom: 2rem;
}
.cid-uxslwzTP6s .mbr-text {
  color: #181817;
  margin-bottom: 1rem;
  text-align: justify;
}
.cid-uxslwzTP6s .mbr-section-btn {
  margin-top: 24px;
}
@media (max-width: 991px) {
  .cid-uxslwzTP6s .col-img {
    margin-top: auto;
  }
}
@media (max-width: 575px) {
  .cid-uxslwzTP6s .col-img {
    padding: 0 !important;
  }
}
.cid-uxslwzTP6s .image-wrapper {
  display: flex;
  align-items: flex-end;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 55%;
  height: 100%;
}
.cid-uxslwzTP6s .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uxslwzTP6s .image-wrapper {
    position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: -2rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uxslwzTP6s .image-wrapper {
    margin-right: -1.5rem;
  }
}
@media (max-width: 991px) and (max-width: 575px) {
  .cid-uxslwzTP6s .image-wrapper {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-uxslwzTP6s .img-bg {
  position: absolute;
  right: -15%;
  bottom: -35%;
  width: 65vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #dddddd;
  z-index: 2;
}
@media (max-width: 991px) {
  .cid-uxslwzTP6s .img-bg {
    width: 1000px;
    right: -400px;
  }
}
@media (max-width: 767px) {
  .cid-uxslwzTP6s .img-bg {
    width: 800px;
    right: -300px;
  }
}
@media (max-width: 575px) {
  .cid-uxslwzTP6s .img-bg {
    width: 170vw;
    right: -75vw;
  }
}
.cid-uxslwAmT22 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #181817;
}
.cid-uxslwAmT22 .mbr-text {
  color: #f6f6ef;
}
.cid-uG7iCY9q4G {
  z-index: 1000;
  width: 100%;
  height: 0 !important;
}
.cid-uG7iCY9q4G .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-uG7iCY9q4G .dropdown-menu {
  padding: 0;
}
.cid-uG7iCY9q4G .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uG7iCY9q4G .dropdown-item {
    text-align: left !important;
  }
}
.cid-uG7iCY9q4G .dropdown-item:hover {
  background-position: right !important;
}
.cid-uG7iCY9q4G .dropdown-item:hover:after {
  color: #ae65da;
}
.cid-uG7iCY9q4G .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uG7iCY9q4G .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uG7iCY9q4G .nav-link {
  position: relative;
}
.cid-uG7iCY9q4G .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
.cid-uG7iCY9q4G .dropdown-menu,
.cid-uG7iCY9q4G .navbar.opened {
  background: #ffffff !important;
}
.cid-uG7iCY9q4G .nav-item:focus,
.cid-uG7iCY9q4G .nav-link:focus {
  outline: none;
}
.cid-uG7iCY9q4G .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uG7iCY9q4G .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uG7iCY9q4G .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uG7iCY9q4G .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uG7iCY9q4G .navbar {
  min-height: 70px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
  position: absolute ;
}
.cid-uG7iCY9q4G .navbar.opened {
  transition: all 0.3s;
}
.cid-uG7iCY9q4G .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uG7iCY9q4G .navbar .navbar-logo img {
  width: auto;
}
.cid-uG7iCY9q4G .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uG7iCY9q4G .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uG7iCY9q4G .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uG7iCY9q4G .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uG7iCY9q4G .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uG7iCY9q4G .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-uG7iCY9q4G .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uG7iCY9q4G .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uG7iCY9q4G .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uG7iCY9q4G .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uG7iCY9q4G .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uG7iCY9q4G .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-uG7iCY9q4G .navbar {
    min-height: 70px;
  }
}
.cid-uG7iCY9q4G .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uG7iCY9q4G .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding: 10px 15px 10px 0 !important;
}
.cid-uG7iCY9q4G .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uG7iCY9q4G .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uG7iCY9q4G .navbar-brand {
    min-height: 70px;
  }
}
.cid-uG7iCY9q4G .dropdown-item.active,
.cid-uG7iCY9q4G .dropdown-item:active {
  background-color: transparent;
  color: #FFFFFF;
}
.cid-uG7iCY9q4G .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uG7iCY9q4G .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uG7iCY9q4G .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uG7iCY9q4G .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uG7iCY9q4G .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uG7iCY9q4G .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uG7iCY9q4G ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uG7iCY9q4G button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uG7iCY9q4G button.navbar-toggler:hover {
  color: #FFFFFF;
  transform: scale(1.1);
}
.cid-uG7iCY9q4G button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uG7iCY9q4G button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uG7iCY9q4G button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uG7iCY9q4G button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uG7iCY9q4G button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uG7iCY9q4G button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uG7iCY9q4G nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uG7iCY9q4G nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uG7iCY9q4G nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uG7iCY9q4G nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uG7iCY9q4G .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-uG7iCY9q4G a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uG7iCY9q4G .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-uG7iCY9q4G .navbar {
    height: 70px;
  }
  .cid-uG7iCY9q4G .navbar.opened {
    height: auto;
  }
  .cid-uG7iCY9q4G .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
    color: #FFFFFF;
  }
}
.cid-uG7iCY9q4G .navbar-short {
  min-height: 70px;
  background: #ffffff;
  background: rgba(255, 255, 255, 0);
}
@media (max-width: 575px) {
  .cid-uG7iCY9q4G .navbar-short {
    min-height: 70px;
  }
}
.cid-uG7iCY9q4G .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uG7iCY9q4G .navbar-nav {
  display: flex !important;
  padding-bottom: 10px;
}
.cid-uG7iCY9q4G .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
  font-weight: 900;
  transition: 0.3s all;
}
.cid-uG7iCY9q4G .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 1;
  font-weight: inherit !important;
  justify-content: flex-start;
}
.cid-uG7iCY9q4G .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uG7iCY9q4G .navbar-nav .nav-item .nav-link:hover,
.cid-uG7iCY9q4G .navbar-nav .nav-item .nav-link:focus,
.cid-uG7iCY9q4G .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uG7iCY9q4G .navbar-nav .nav-item:not(:first-child) {
  margin-top: 1.5rem !important;
}
.cid-uG7iCY9q4G .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #8a66a8 !important;
}
.cid-uG7iCY9q4G .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uG7iCY9q4G .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uG7iCY9q4G button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  padding: 0;
}
.cid-uG7iCY9q4G button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
}
.cid-uG7iCY9q4G button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 0;
  width: 37px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uG7iCY9q4G button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 9px;
  transition: all 0.2s;
}
.cid-uG7iCY9q4G button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 17px;
  width: 27px;
  height: 3px;
  transition: all 0.15s;
}
.cid-uG7iCY9q4G button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 17px;
  width: 27px;
  height: 3px;
  transition: all 0.15s;
}
.cid-uG7iCY9q4G button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 26px;
  transition: all 0.2s;
}
.cid-uG7iCY9q4G .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
  opacity: 1 !important;
  outline: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 20;
  align-self: center;
  padding: 0;
}
.cid-uG7iCY9q4G .btn-close .hamburger-offcanvas {
  position: relative;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
}
.cid-uG7iCY9q4G .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 0;
  width: 37px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uG7iCY9q4G .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-uG7iCY9q4G .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-uG7iCY9q4G .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-uG7iCY9q4G .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-uG7iCY9q4G .offcanvas-end {
  right: 0 !important;
  transform: translateX(100%);
}
.cid-uG7iCY9q4G .offcanvas.show {
  transform: translateX(0);
}
.cid-uG7iCY9q4G .offcanvas {
  width: 36%;
  padding: 10px;
  border-left: none !important;
  background-color: transparent !important;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .cid-uG7iCY9q4G .offcanvas {
    width: 512px;
  }
}
@media (max-width: 767px) {
  .cid-uG7iCY9q4G .offcanvas {
    width: 100%;
  }
}
.cid-uG7iCY9q4G .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uG7iCY9q4G .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 3rem 2.5rem 2.5rem;
  border-radius: 1.5rem;
  width: 100%;
  text-align: left;
  background-color: #8a66a8;
  box-shadow: none;
  overflow: auto;
}
.cid-uG7iCY9q4G .offcanvas-body .offcanvas_head {
  width: 100%;
  padding-bottom: 20px;
}
.cid-uG7iCY9q4G .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uG7iCY9q4G .modal-backdrop.show {
  opacity: 0 !important;
}
.cid-uG7iCY9q4G .offcanvas_link {
  width: 100%;
  padding: 0;
  margin-top: 0;
}
.cid-uG7iCY9q4G .offcanvas_foot {
  width: 100%;
  margin-top: auto;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding-top: 10px;
}
.cid-uG7iCY9q4G .offcanvas_btn {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}
.cid-uG7iCY9q4G .offcanvas_btn .mbr-section-btn {
  width: 100%;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-uG7iCY9q4G .offcanvas_btn .mbr-section-btn .btn {
    width: auto !important;
  }
}
.cid-uG7iCY9q4G .second-links {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
}
.cid-uG7iCY9q4G .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #f6f6ef;
  transition: 0.3s all;
}
.cid-uG7iCY9q4G .list li {
  width: 100%;
  color: inherit !important;
  transition: 0.3s all;
}
.cid-uG7iCY9q4G .list li:hover {
  color: #ae65da !important;
}
.cid-uG7iCY9q4G .list a {
  color: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
  transition: 0.3s all;
}
.cid-uG7iCY9q4G .list a:hover {
  color: #ae65da !important;
  line-height: inherit !important;
}
.cid-uG7iCY9q4G .second-list {
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: 1fr 1fr;
  grid-column-gap: 2rem;
  grid-row-gap: 0.5rem;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 991px) {
  .cid-uG7iCY9q4G .second-list {
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-uG7iCY9q4G .second-list li {
  line-height: 1.5;
  opacity: 0.8;
}
.cid-uG7iCY9q4G .second-list li:hover {
  opacity: 1;
}
.cid-uG7iCY9q4G .footer-text {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
  color: #f6f6ef;
  margin-bottom: 0;
  opacity: 0.8;
  align-self: end;
}
.cid-uG7iCYvMZe {
  background-image: url("../../../assets/images/back-back-2000x1520.png");
}
.cid-uG7iCYvMZe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG7iCYvMZe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG7iCYvMZe .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uG7iCYvMZe .title-wrapper {
    padding: 0 12px;
  }
}
.cid-uG7iCYvMZe .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uG7iCYvMZe .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uG7iCYvMZe .links-container {
  margin-top: 64px;
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uG7iCYvMZe .links-container {
    margin-top: 32px;
  }
}
.cid-uG7iCYvMZe .links-container .links-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-uG7iCYvMZe .links-container .links-wrapper .mbr-links {
  margin-bottom: 0;
}
.cid-uG7iCYvMZe .links-container .links-wrapper .mbr-dot {
  margin: 0 10px;
}
.cid-uG7iCYvMZe .links-container .links-wrapper .mbr-iconfont {
  display: flex;
  width: 13px;
  font-size: 11px;
  margin-right: 5px;
}
.cid-uG7iCYvMZe .links-container .links-wrapper .mbr-iconfont:hover {
  opacity: 0.7;
}
.cid-uG7iCYvMZe .mbr-section-title {
  color: #181818;
}
.cid-uG7iCYvMZe .mbr-person {
  color: #181818;
}
.cid-uG7iCYvMZe .mbr-links,
.cid-uG7iCYvMZe .mbr-dot,
.cid-uG7iCYvMZe .mbr-iconfont {
  color: #181818;
}
.cid-uG7iCYvMZe .mbr-section-title,
.cid-uG7iCYvMZe .mbr-section-btn,
.cid-uG7iCYvMZe .person-container,
.cid-uG7iCYvMZe .links-container {
  text-align: center;
  color: #ae65da;
}
.cid-uG7iCYvMZe .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uG7iVSgCMc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uG7iVSgCMc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG7iVSgCMc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
}
.cid-uG7iVSgCMc .container {
  max-width: 100%;
  width: 100%;
}
.cid-uG7iVSgCMc .row {
  justify-content: center;
}
.cid-uG7iVSgCMc .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
}
.cid-uG7iVSgCMc .image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: auto;
}
@media (max-width: 1199px) {
  .cid-uG7iVSgCMc .image-wrapper img {
    height: auto;
  }
}
@media (max-width: 991px) {
  .cid-uG7iVSgCMc .image-wrapper img {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-uG7iVSgCMc .image-wrapper img {
    height: auto;
  }
}
@media (max-width: 575px) {
  .cid-uG7iVSgCMc .image-wrapper img {
    height: auto;
  }
}
.cid-uNKay0TxOu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uNKay0TxOu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNKay0TxOu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
}
.cid-uNKay0TxOu .container {
  max-width: 100%;
  width: 100%;
}
.cid-uNKay0TxOu .row {
  justify-content: center;
}
.cid-uNKay0TxOu .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
}
.cid-uNKay0TxOu .image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: auto;
}
@media (max-width: 1199px) {
  .cid-uNKay0TxOu .image-wrapper img {
    height: auto;
  }
}
@media (max-width: 991px) {
  .cid-uNKay0TxOu .image-wrapper img {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-uNKay0TxOu .image-wrapper img {
    height: auto;
  }
}
@media (max-width: 575px) {
  .cid-uNKay0TxOu .image-wrapper img {
    height: auto;
  }
}
.cid-uNKbdbmmyc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uNKbdbmmyc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNKbdbmmyc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
}
.cid-uNKbdbmmyc .container {
  max-width: 100%;
  width: 100%;
}
.cid-uNKbdbmmyc .row {
  justify-content: center;
}
.cid-uNKbdbmmyc .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
}
.cid-uNKbdbmmyc .image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: auto;
}
@media (max-width: 1199px) {
  .cid-uNKbdbmmyc .image-wrapper img {
    height: auto;
  }
}
@media (max-width: 991px) {
  .cid-uNKbdbmmyc .image-wrapper img {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-uNKbdbmmyc .image-wrapper img {
    height: auto;
  }
}
@media (max-width: 575px) {
  .cid-uNKbdbmmyc .image-wrapper img {
    height: auto;
  }
}
.cid-uG7iD1SgDT {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #181817;
}
.cid-uG7iD1SgDT .mbr-text {
  color: #f6f6ef;
}
