body {
  font-family: Albert Sans;
}
.display-1 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 10rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 12.5rem;
}
.display-2 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 7.5rem;
}
.display-4 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 3.3rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 4.125rem;
}
.display-7 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 2.25rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 7rem;
    font-size: calc( 4.1499999999999995rem + (10 - 4.1499999999999995) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (4.1499999999999995rem + (10 - 4.1499999999999995) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 4.8rem;
    font-size: calc( 2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.64rem;
    font-size: calc( 1.805rem + (3.3 - 1.805) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.805rem + (3.3 - 1.805) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
}
.display-2 {
  line-height: 1;
}
.display-5 {
  line-height: 1;
}
.display-7 {
  line-height: 1.2;
}
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.8rem;
    line-height: 1.2;
  }
}
@media (max-width: 992px) {
  .display-2 {
    font-size: 3.6rem;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .display-2 {
    font-size: 2.4rem;
    line-height: 1.2;
  }
}
/* 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: #17003b !important;
}
.bg-success {
  background-color: #6bffc7 !important;
}
.bg-info {
  background-color: #6500e0 !important;
}
.bg-warning {
  background-color: #fffa63 !important;
}
.bg-danger {
  background-color: #ffb18a !important;
}
.btn-primary {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-primary,
.btn-primary:active {
  background-color: #17003b !important;
  border-color: #17003b !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-primary:hover {
  box-shadow: none;
  color: #17003b !important;
}
.btn-primary:hover:before {
  transform: translateX(0);
}
.btn-secondary {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff57be !important;
  border-color: #ff57be !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff009c !important;
  border-color: #ff009c !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff009c !important;
  border-color: #ff009c !important;
}
.btn-secondary:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-secondary:hover {
  box-shadow: none;
  color: #ff57be !important;
}
.btn-secondary:hover:before {
  transform: translateX(0);
}
.btn-info {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-info,
.btn-info:active {
  background-color: #6500e0 !important;
  border-color: #6500e0 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #3e0089 !important;
  border-color: #3e0089 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #3e0089 !important;
  border-color: #3e0089 !important;
}
.btn-info:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-info:hover {
  box-shadow: none;
  color: #6500e0 !important;
}
.btn-info:hover:before {
  transform: translateX(0);
}
.btn-success {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-success,
.btn-success:active {
  background-color: #6bffc7 !important;
  border-color: #6bffc7 !important;
  color: #006b43 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #00140d !important;
  background-color: #14ffa6 !important;
  border-color: #14ffa6 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #006b43 !important;
  background-color: #14ffa6 !important;
  border-color: #14ffa6 !important;
}
.btn-success:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-success:hover {
  box-shadow: none;
  color: #6bffc7 !important;
}
.btn-success:hover:before {
  transform: translateX(0);
}
.btn-warning {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-warning,
.btn-warning:active {
  background-color: #fffa63 !important;
  border-color: #fffa63 !important;
  color: #636000 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0c0c00 !important;
  background-color: #fff70c !important;
  border-color: #fff70c !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #636000 !important;
  background-color: #fff70c !important;
  border-color: #fff70c !important;
}
.btn-warning:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-warning:hover {
  box-shadow: none;
  color: #fffa63 !important;
}
.btn-warning:hover:before {
  transform: translateX(0);
}
.btn-danger {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffb18a !important;
  border-color: #ffb18a !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff7733 !important;
  border-color: #ff7733 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff7733 !important;
  border-color: #ff7733 !important;
}
.btn-danger:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-danger:hover {
  box-shadow: none;
  color: #ffb18a !important;
}
.btn-danger:hover:before {
  transform: translateX(0);
}
.btn-white {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-white:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-white:hover {
  box-shadow: none;
  color: #fafafa !important;
}
.btn-white:hover:before {
  transform: translateX(0);
}
.btn-black {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-black:hover {
  box-shadow: none;
  color: #232323 !important;
}
.btn-black:hover:before {
  transform: translateX(0);
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #17003b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #17003b !important;
  border-color: #17003b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff57be;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff009c !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff57be !important;
  border-color: #ff57be !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6500e0;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #3e0089 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #6500e0 !important;
  border-color: #6500e0 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6bffc7;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #14ffa6 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #006b43 !important;
  background-color: #6bffc7 !important;
  border-color: #6bffc7 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fffa63;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #fff70c !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #636000 !important;
  background-color: #fffa63 !important;
  border-color: #fffa63 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffb18a;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff7733 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ffb18a !important;
  border-color: #ffb18a !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #17003b !important;
}
.text-secondary {
  color: #ff57be !important;
}
.text-success {
  color: #6bffc7 !important;
}
.text-info {
  color: #6500e0 !important;
}
.text-warning {
  color: #fffa63 !important;
}
.text-danger {
  color: #ffb18a !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #17003b !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff57be !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #6bffc7 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #6500e0 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #fffa63 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ffb18a !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #232323 !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: none;
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #17003b;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #6500e0;
}
.alert-warning {
  background-color: #fffa63;
}
.alert-danger {
  background-color: #ffb18a;
}
.mbr-gallery-filter li.active .btn {
  background-color: #17003b;
  border-color: #17003b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #17003b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #7821ff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d2adff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Albert Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.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: #17003b !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Albert Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #17003b;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #17003b;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #17003b;
}
.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: #17003b;
  border-bottom-color: #17003b;
}
.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: #17003b !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff57be !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='%2317003b' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tqJ6hcmHQS {
  background-image: url("../../../assets/images/2025-10-09-16-49-35-1146x755.png");
}
.cid-tqJ6hcmHQS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqJ6hcmHQS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqJ6hcmHQS .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tqJ6hcmHQS .mbr-text,
.cid-tqJ6hcmHQS .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tqJ6hcmHQS b,
.cid-tqJ6hcmHQS strong {
  font-weight: 900;
}
.cid-tqJ6hcmHQS .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tqJ8f3wCdb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tqJ8f3wCdb .item-subtitle {
  width: fit-content;
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 1rem;
  text-align: center;
  color: #17003b;
}
.cid-tqJ8f3wCdb .item-subtitle:before {
  content: '';
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  transition: all 0.3s;
  left: 0;
  background: #6bffc7;
  z-index: -1;
}
.cid-tqJ8f3wCdb .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tqJ8f3wCdb .item-wrapper:hover .item-subtitle:before {
  width: 0%;
}
@media (min-width: 992px) {
  .cid-tqJ8f3wCdb .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqJ8f3wCdb .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tqJ8f3wCdb b,
.cid-tqJ8f3wCdb strong {
  font-weight: 900;
}
.cid-tqJ8f3wCdb img,
.cid-tqJ8f3wCdb .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tqJ8f3wCdb .item:focus,
.cid-tqJ8f3wCdb span:focus {
  outline: none;
}
.cid-tqJ8f3wCdb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tqJ8f3wCdb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tqJ8f3wCdb .mbr-section-title {
  color: #17003b;
}
.cid-tqJ8f3wCdb .mbr-text,
.cid-tqJ8f3wCdb .mbr-section-btn {
  text-align: center;
  color: #17003b;
}
.cid-tqJ8f3wCdb .item-title {
  text-align: center;
  color: #17003b;
}
.cid-tqJ8f3wCdb .mbr-section-subtitle {
  color: #17003b;
}
.cid-tqJ8f3wCdb .item-subtitle,
.cid-tqJ8f3wCdb .item-content {
  text-align: center;
}
.cid-tqJ8lqe5aT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tqJ8lqe5aT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqJ8lqe5aT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqJ8lqe5aT b,
.cid-tqJ8lqe5aT strong {
  font-weight: 900;
}
@media (min-width: 992px) {
  .cid-tqJ8lqe5aT img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tqJ8lqe5aT img {
    padding-bottom: 2rem;
  }
}
.cid-tqJ8lqe5aT .row {
  align-items: center;
}
.cid-tqJ8lqe5aT .mbr-section-title {
  color: #17003b;
}
.cid-tqJ8lqe5aT .mbr-text,
.cid-tqJ8lqe5aT .mbr-section-btn {
  color: #17003b;
}
.cid-tqJ8lqe5aT .mbr-section-subtitle {
  color: #17003b;
}
.cid-tqJ8KGBWpV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tqJ8KGBWpV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqJ8KGBWpV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqJ8KGBWpV .embla__slide {
  position: relative;
  display: flex;
  justify-content: center;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-tqJ8KGBWpV .embla__slide {
    min-width: 90%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tqJ8KGBWpV .embla__slide .svg1 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0px;
  background: #ffffff;
  fill: #17003b !important;
}
.cid-tqJ8KGBWpV .embla__slide .svg2 {
  position: absolute;
  bottom: 10px;
  width: 100%;
  left: 0px;
  background: #ffffff;
  fill: #17003b !important;
  z-index: -1;
}
@media (max-width: 767px) {
  .cid-tqJ8KGBWpV .embla__slide .svg2 {
    bottom: 18px;
  }
}
.cid-tqJ8KGBWpV .user {
  background: #17003b;
  position: relative;
  padding: 6rem 2rem;
  overflow: hidden;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-tqJ8KGBWpV .user {
    padding: 4rem 1rem;
  }
}
.cid-tqJ8KGBWpV .embla__button--next,
.cid-tqJ8KGBWpV .embla__button--prev {
  display: flex;
}
.cid-tqJ8KGBWpV .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tqJ8KGBWpV .embla__button {
    display: none;
  }
}
.cid-tqJ8KGBWpV .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tqJ8KGBWpV .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tqJ8KGBWpV .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tqJ8KGBWpV .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tqJ8KGBWpV .embla__button {
    top: auto;
  }
}
.cid-tqJ8KGBWpV .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-tqJ8KGBWpV .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-tqJ8KGBWpV .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-tqJ8KGBWpV .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tqJ8KGBWpV .embla {
  position: relative;
  width: 100%;
}
.cid-tqJ8KGBWpV .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tqJ8KGBWpV .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tqJ8KGBWpV .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tqJ8KGBWpV .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tqJ8KGBWpV .user_text {
  color: #ffffff;
}
.cid-tqJ8KGBWpV .user_name {
  color: #ffffff;
}
.cid-tqJ8KGBWpV .user_desk {
  color: #ffffff;
}
.cid-tqJ8KGBWpV H3 {
  color: #17003b;
}
.cid-uZ8w1FFvxd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uZ8w1FFvxd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8w1FFvxd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ8w1FFvxd .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uZ8w1FFvxd .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uZ8w1FFvxd .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1440px) {
  .cid-uZ8w1FFvxd .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uZ8w1FFvxd .items-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uZ8w1FFvxd .item {
    margin-bottom: 16px;
  }
}
.cid-uZ8w1FFvxd .item .item-wrapper {
  padding: 10px;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .cid-uZ8w1FFvxd .item .item-wrapper {
    height: 100%;
  }
}
.cid-uZ8w1FFvxd .item .item-wrapper .item-img {
  margin-bottom: 32px;
}
.cid-uZ8w1FFvxd .item .item-wrapper .item-img img {
  height: 310px;
  object-fit: cover;
}
.cid-uZ8w1FFvxd .item .item-wrapper .item-content {
  padding: 0 40px 20px;
}
@media (max-width: 1440px) {
  .cid-uZ8w1FFvxd .item .item-wrapper .item-content {
    padding: 0 20px 20px;
  }
}
@media (max-width: 992px) {
  .cid-uZ8w1FFvxd .item .item-wrapper .item-content {
    padding: 0 10px;
  }
}
.cid-uZ8w1FFvxd .item .item-wrapper .item-content .item-title {
  margin-bottom: 20px;
}
.cid-uZ8w1FFvxd .item .item-wrapper .item-content .item-text {
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .cid-uZ8w1FFvxd .item .item-wrapper .item-content .mbr-section-btn .btn {
    padding: 12px 16px;
  }
}
.cid-uZ8w1FFvxd .mbr-section-title {
  color: #000c3f;
  text-align: center;
}
.cid-uZ8w1FFvxd .item-title {
  color: #000c3f;
}
.cid-uZ8w1FFvxd .item-text {
  color: #000c3f;
}
.cid-tqJ8PFPQir {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tqJ8PFPQir .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqJ8PFPQir .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqJ8PFPQir .first {
  border-top: 2px solid #17003b;
}
.cid-tqJ8PFPQir .panel-body {
  padding: 2rem 6rem;
}
@media (max-width: 767px) {
  .cid-tqJ8PFPQir .panel-body {
    padding: 2rem 0rem;
  }
}
.cid-tqJ8PFPQir .card-header {
  border-bottom: 2px solid #17003b;
  border-radius: 0;
  padding-right: 2rem;
  padding-left: 2rem;
  padding-bottom: 2rem;
  padding-top: 2rem;
  position: relative;
}
.cid-tqJ8PFPQir .card-header:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #17003b;
  transition: all 0.3s;
}
.cid-tqJ8PFPQir .card-header a,
.cid-tqJ8PFPQir .card-header h6,
.cid-tqJ8PFPQir .card-header span {
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}
.cid-tqJ8PFPQir .card-header:hover a,
.cid-tqJ8PFPQir .card-header:hover h6,
.cid-tqJ8PFPQir .card-header:hover span {
  color: #ffffff !important;
}
.cid-tqJ8PFPQir .card-header:hover:before {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tqJ8PFPQir .card-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-tqJ8PFPQir .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #17003b;
  margin-left: 1rem;
  z-index: 1;
}
.cid-tqJ8PFPQir .panel-group {
  border: none;
}
.cid-tqJ8PFPQir .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tqJ8PFPQir .panel-title-edit {
  color: #17003b;
}
.cid-tqJ8PFPQir .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tqJ8PFPQir H3 {
  color: #17003b;
}
.cid-tqJ8PFPQir .panel-text {
  color: #17003b;
}
.cid-uZ8yeKbeTy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fff7f0;
}
.cid-uZ8yeKbeTy .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uZ8yeKbeTy form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uZ8yeKbeTy form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uZ8yeKbeTy form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uZ8yeKbeTy .content-head {
  max-width: 800px;
}
.cid-tqJ8NJQQVu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff7f0;
}
.cid-tqJ8NJQQVu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqJ8NJQQVu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqJ8NJQQVu .underline {
  text-decoration: underline;
}
.cid-tqJ8NJQQVu .items {
  background: #ffffff;
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .cid-tqJ8NJQQVu .items {
    padding: 3rem 1rem;
  }
}
.cid-tqJ8NJQQVu .card {
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  margin-bottom: 2rem;
}
.cid-tqJ8NJQQVu .text-primary {
  background: #6bffc7;
}
.cid-tqJ8NJQQVu .noborder {
  border-bottom: 0;
}
.cid-tqJ8NJQQVu b,
.cid-tqJ8NJQQVu strong,
.cid-tqJ8NJQQVu a {
  font-weight: 900;
}
.cid-tqJ8NJQQVu .mbr-section-title {
  color: #17003b;
}
.cid-tqJ8NJQQVu .mbr-section-subtitle {
  color: #17003b;
}
.cid-tqJ8NJQQVu .mbr-item-title {
  text-align: center;
  color: #17003b;
}
.cid-tqJ8NJQQVu .mbr-item-text {
  text-align: center;
  color: #17003b;
}
.cid-tqJ8NJQQVu .mbr-item-title,
.cid-tqJ8NJQQVu .card {
  color: #17003b;
}
.cid-tqJ8NJQQVu .mbr-text {
  color: #17003b;
}
.cid-tqJ8SRfO4b {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #17003b;
}
.cid-tqJ8SRfO4b .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqJ8SRfO4b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqJ8SRfO4b h3,
.cid-tqJ8SRfO4b a {
  font-weight: 900;
}
.cid-tqJ8SRfO4b a {
  background: #6bffc7;
}
.cid-tqJ8SRfO4b .google-map {
  height: 33rem;
  position: relative;
  border-radius: 2rem;
}
.cid-tqJ8SRfO4b .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tqJ8SRfO4b .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tqJ8SRfO4b .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tqJ8SRfO4b .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tqJ8SRfO4b .mbr-section-title {
  color: #ffffff;
}
.cid-tqJ8RiGb5G {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #17003b;
}
.cid-tqJ8RiGb5G p {
  text-align: center;
}
.cid-tqJ8RiGb5G .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-tqJ8RiGb5G .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tqJ8RiGb5G .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-tqJ8RiGb5G .logo-footer {
  line-height: normal;
}
.cid-tqJ8RiGb5G .copyright .list-inline {
  margin-bottom: 0;
}
.cid-tqJ8RiGb5G .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-tqJ8RiGb5G .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-tqJ8RiGb5G li {
  overflow: hidden;
}
.cid-tqJ8RiGb5G .icon-transition span {
  display: block;
}
.cid-tqJ8RiGb5G .icon-transition:hover span {
  animation: 0.3s linear top;
}
.cid-tqJ8RiGb5G .list-inline-item a {
  display: block;
}
.cid-tqJ8RiGb5G .list-inline-item:hover a {
  animation: 0.3s linear top;
}
@keyframes top {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-100%);
  }
  51% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tqJ8RiGb5G .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqJ8RiGb5G .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-tqJ8RiGb5G .icon-transition span {
  color: #ffffff;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-tqJ8RiGb5G .social-media {
  display: flex;
  justify-content: flex-end;
}
.cid-tqJ8RiGb5G .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tqJ8RiGb5G .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-tqJ8RiGb5G .logo-footer {
    text-align: center;
  }
  .cid-tqJ8RiGb5G .social-media {
    justify-content: center;
  }
}
.cid-uZ8u7GB7M9 {
  background-color: transparent;
}
.cid-uZ8u7GB7M9 .navbar-dropdown {
  background-color: #6a2be9 !important;
  padding: 0;
}
.cid-uZ8u7GB7M9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #6a2be9 !important;
  background: #6a2be9;
}
.cid-uZ8u7GB7M9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZ8u7GB7M9 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uZ8u7GB7M9 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uZ8u7GB7M9 .menu_box .navbar.opened,
  .cid-uZ8u7GB7M9 .menu_box .navbar-collapse {
    background-color: #6a2be9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uZ8u7GB7M9 .navbar-dropdown {
  position: relative !important;
}
.cid-uZ8u7GB7M9 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 100px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uZ8u7GB7M9 .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ8u7GB7M9 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uZ8u7GB7M9 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uZ8u7GB7M9 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uZ8u7GB7M9 .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #b0a0ff;
  }
  .cid-uZ8u7GB7M9 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uZ8u7GB7M9 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uZ8u7GB7M9 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uZ8u7GB7M9 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uZ8u7GB7M9 .offcanvas-body .mbr-text,
  .cid-uZ8u7GB7M9 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uZ8u7GB7M9 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uZ8u7GB7M9 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uZ8u7GB7M9 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uZ8u7GB7M9 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uZ8u7GB7M9 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uZ8u7GB7M9 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uZ8u7GB7M9 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uZ8u7GB7M9 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uZ8u7GB7M9 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uZ8u7GB7M9 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uZ8u7GB7M9 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uZ8u7GB7M9 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uZ8u7GB7M9 .lg_brand {
    margin: 0 1rem;
  }
  .cid-uZ8u7GB7M9 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 60%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 28px;
  }
}
.cid-uZ8u7GB7M9 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 992px) {
  .cid-uZ8u7GB7M9 .nav-item {
    margin: 4px 0;
  }
}
@media (max-width: 991px) {
  .cid-uZ8u7GB7M9 .nav-item {
    margin: 0 !important;
  }
}
.cid-uZ8u7GB7M9 .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uZ8u7GB7M9 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  transition: all 0.3s ease-in-out;
}
.cid-uZ8u7GB7M9 .nav-item .nav-link:hover,
.cid-uZ8u7GB7M9 .nav-item .nav-link:focus {
  color: #ffffff !important;
}
.cid-uZ8u7GB7M9 .nav-item .nav-link:hover::before,
.cid-uZ8u7GB7M9 .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uZ8u7GB7M9 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uZ8u7GB7M9 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uZ8u7GB7M9 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uZ8u7GB7M9 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uZ8u7GB7M9 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uZ8u7GB7M9 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uZ8u7GB7M9 .offcanvas_box {
    display: none;
  }
}
.cid-uZ8u7GB7M9 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uZ8u7GB7M9 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uZ8u7GB7M9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uZ8u7GB7M9 .container {
  display: flex;
  margin: auto;
}
.cid-uZ8u7GB7M9 .iconfont-wrapper {
  color: #c6f15c;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uZ8u7GB7M9 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uZ8u7GB7M9 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uZ8u7GB7M9 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uZ8u7GB7M9 .navbar-nav {
    margin: 0;
  }
}
.cid-uZ8u7GB7M9 .dropdown-menu,
.cid-uZ8u7GB7M9 .navbar.opened {
  background-color: false !important;
}
.cid-uZ8u7GB7M9 .nav-item:focus,
.cid-uZ8u7GB7M9 .nav-link:focus {
  outline: none;
}
.cid-uZ8u7GB7M9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZ8u7GB7M9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZ8u7GB7M9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZ8u7GB7M9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ8u7GB7M9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZ8u7GB7M9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZ8u7GB7M9 .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uZ8u7GB7M9 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uZ8u7GB7M9 .navbar.opened {
  transition: all 0.3s;
}
.cid-uZ8u7GB7M9 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uZ8u7GB7M9 .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-uZ8u7GB7M9 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-uZ8u7GB7M9 .navbar.collapsed {
  justify-content: center;
}
.cid-uZ8u7GB7M9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZ8u7GB7M9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uZ8u7GB7M9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZ8u7GB7M9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZ8u7GB7M9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uZ8u7GB7M9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uZ8u7GB7M9 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uZ8u7GB7M9 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uZ8u7GB7M9 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uZ8u7GB7M9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZ8u7GB7M9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZ8u7GB7M9 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uZ8u7GB7M9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZ8u7GB7M9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uZ8u7GB7M9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZ8u7GB7M9 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uZ8u7GB7M9 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uZ8u7GB7M9 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uZ8u7GB7M9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uZ8u7GB7M9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZ8u7GB7M9 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uZ8u7GB7M9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uZ8u7GB7M9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uZ8u7GB7M9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uZ8u7GB7M9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uZ8u7GB7M9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uZ8u7GB7M9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZ8u7GB7M9 .dropdown-item.active,
.cid-uZ8u7GB7M9 .dropdown-item:active {
  background-color: transparent;
}
.cid-uZ8u7GB7M9 .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uZ8u7GB7M9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZ8u7GB7M9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZ8u7GB7M9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ8u7GB7M9 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uZ8u7GB7M9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uZ8u7GB7M9 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #6a2be9;
  background: #c6f15c;
}
.cid-uZ8u7GB7M9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uZ8u7GB7M9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uZ8u7GB7M9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ8u7GB7M9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ8u7GB7M9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uZ8u7GB7M9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ8u7GB7M9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZ8u7GB7M9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZ8u7GB7M9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ8u7GB7M9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uZ8u7GB7M9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uZ8u7GB7M9 .navbar {
    height: 70px;
  }
  .cid-uZ8u7GB7M9 .navbar.opened {
    height: auto;
  }
  .cid-uZ8u7GB7M9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZ8u7GB7M9 .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uZ8u7GB7M9 .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uZ8u7GB7M9 .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uZ8u7GB7M9 .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uZ8u7GB7M9 .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 120px;
  padding: 12px 24px;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-uZ8u7GB7M9 .mbr-section-btn-main .btn {
    padding: 12px;
  }
}
.cid-uZ8u7GB7M9 .navbar-caption:hover {
  color: #6500e0;
}
@media (min-width: 992px) {
  .cid-uZ8u7GB7M9 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uZ8u7GB7M9 .text_widget {
  margin-bottom: 32px;
}
.cid-uZ8u7GB7M9 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uZ8u7GB7M9 .text_widget a:hover,
.cid-uZ8u7GB7M9 .text_widget a:focus {
  opacity: .8;
}
.cid-uZ8u7GB7M9 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uZ8u7GB7M9 .navbar-caption {
  color: #ffffff;
}
.cid-uZ8u7GB7M9 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uZ8u7GB7M9 .mbr-section-subtitle,
.cid-uZ8u7GB7M9 .text_widget,
.cid-uZ8u7GB7M9 .mbr-section-btn {
  text-align: center;
}
.cid-uZ8u7GB7M9 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uZ8wYuK84v {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uZ8wYuK84v .mbr-text {
  color: #221b35;
}
.cid-uZ8wYuK84v .my {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-uZ8wYuK84v h5,
.cid-uZ8wYuK84v h6 {
  background: #17003b;
  display: inline;
}
.cid-uZ8wYuK84v h5 {
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.cid-uZ8wYuK84v h6 {
  line-height: 1.3 !important;
}
.cid-uZ8wYuK84v h6 span {
  padding-right: 2rem;
}
.cid-uZ8wYuK84v .mbr-section-title,
.cid-uZ8wYuK84v .align {
  color: #ffffff;
}
.cid-uZ8wYuK84v .mbr-section-subtitle,
.cid-uZ8wYuK84v .align {
  color: #ffffff;
  text-align: left;
}
.cid-uZ8wTEzH8D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff7f0;
}
.cid-uZ8wTEzH8D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8wTEzH8D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ8wTEzH8D .underline {
  text-decoration: underline;
}
.cid-uZ8wTEzH8D .items {
  background: #ffffff;
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .cid-uZ8wTEzH8D .items {
    padding: 3rem 1rem;
  }
}
.cid-uZ8wTEzH8D .card {
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  margin-bottom: 2rem;
}
.cid-uZ8wTEzH8D .text-primary {
  background: #6bffc7;
}
.cid-uZ8wTEzH8D .noborder {
  border-bottom: 0;
}
.cid-uZ8wTEzH8D b,
.cid-uZ8wTEzH8D strong,
.cid-uZ8wTEzH8D a {
  font-weight: 900;
}
.cid-uZ8wTEzH8D .mbr-section-title {
  color: #17003b;
}
.cid-uZ8wTEzH8D .mbr-section-subtitle {
  color: #17003b;
}
.cid-uZ8wTEzH8D .mbr-item-title {
  text-align: center;
  color: #17003b;
}
.cid-uZ8wTEzH8D .mbr-item-text {
  text-align: center;
  color: #17003b;
}
.cid-uZ8wTEzH8D .mbr-item-title,
.cid-uZ8wTEzH8D .card {
  color: #17003b;
}
.cid-uZ8wTEzH8D .mbr-text {
  color: #17003b;
}
.cid-uZ8wTFiwZI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #17003b;
}
.cid-uZ8wTFiwZI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8wTFiwZI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ8wTFiwZI h3,
.cid-uZ8wTFiwZI a {
  font-weight: 900;
}
.cid-uZ8wTFiwZI a {
  background: #6bffc7;
}
.cid-uZ8wTFiwZI .google-map {
  height: 33rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uZ8wTFiwZI .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uZ8wTFiwZI .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uZ8wTFiwZI .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uZ8wTFiwZI .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uZ8wTFiwZI .mbr-section-title {
  color: #ffffff;
}
.cid-uZ8wTG3dcD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #17003b;
}
.cid-uZ8wTG3dcD p {
  text-align: center;
}
.cid-uZ8wTG3dcD .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-uZ8wTG3dcD .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-uZ8wTG3dcD .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-uZ8wTG3dcD .logo-footer {
  line-height: normal;
}
.cid-uZ8wTG3dcD .copyright .list-inline {
  margin-bottom: 0;
}
.cid-uZ8wTG3dcD .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-uZ8wTG3dcD .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-uZ8wTG3dcD li {
  overflow: hidden;
}
.cid-uZ8wTG3dcD .icon-transition span {
  display: block;
}
.cid-uZ8wTG3dcD .icon-transition:hover span {
  animation: 0.3s linear top;
}
.cid-uZ8wTG3dcD .list-inline-item a {
  display: block;
}
.cid-uZ8wTG3dcD .list-inline-item:hover a {
  animation: 0.3s linear top;
}
@keyframes top {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-100%);
  }
  51% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-uZ8wTG3dcD .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZ8wTG3dcD .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-uZ8wTG3dcD .icon-transition span {
  color: #ffffff;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-uZ8wTG3dcD .social-media {
  display: flex;
  justify-content: flex-end;
}
.cid-uZ8wTG3dcD .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uZ8wTG3dcD .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-uZ8wTG3dcD .logo-footer {
    text-align: center;
  }
  .cid-uZ8wTG3dcD .social-media {
    justify-content: center;
  }
}
.cid-uZ8wTGS39M {
  background-color: transparent;
}
.cid-uZ8wTGS39M .navbar-dropdown {
  background-color: #6a2be9 !important;
  padding: 0;
}
.cid-uZ8wTGS39M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #6a2be9 !important;
  background: #6a2be9;
}
.cid-uZ8wTGS39M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZ8wTGS39M .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uZ8wTGS39M .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uZ8wTGS39M .menu_box .navbar.opened,
  .cid-uZ8wTGS39M .menu_box .navbar-collapse {
    background-color: #6a2be9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uZ8wTGS39M .navbar-dropdown {
  position: relative !important;
}
.cid-uZ8wTGS39M .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 100px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uZ8wTGS39M .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ8wTGS39M .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uZ8wTGS39M .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uZ8wTGS39M .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uZ8wTGS39M .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #b0a0ff;
  }
  .cid-uZ8wTGS39M .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uZ8wTGS39M .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uZ8wTGS39M .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uZ8wTGS39M .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uZ8wTGS39M .offcanvas-body .mbr-text,
  .cid-uZ8wTGS39M .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uZ8wTGS39M .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uZ8wTGS39M .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uZ8wTGS39M .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uZ8wTGS39M .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uZ8wTGS39M .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uZ8wTGS39M .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uZ8wTGS39M .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uZ8wTGS39M ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uZ8wTGS39M .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uZ8wTGS39M .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uZ8wTGS39M .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uZ8wTGS39M li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uZ8wTGS39M .lg_brand {
    margin: 0 1rem;
  }
  .cid-uZ8wTGS39M .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 60%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 28px;
  }
}
.cid-uZ8wTGS39M .nav-item {
  margin: 4px 15px;
}
@media (min-width: 992px) {
  .cid-uZ8wTGS39M .nav-item {
    margin: 4px 0;
  }
}
@media (max-width: 991px) {
  .cid-uZ8wTGS39M .nav-item {
    margin: 0 !important;
  }
}
.cid-uZ8wTGS39M .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uZ8wTGS39M .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  transition: all 0.3s ease-in-out;
}
.cid-uZ8wTGS39M .nav-item .nav-link:hover,
.cid-uZ8wTGS39M .nav-item .nav-link:focus {
  color: #ffffff !important;
}
.cid-uZ8wTGS39M .nav-item .nav-link:hover::before,
.cid-uZ8wTGS39M .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uZ8wTGS39M .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uZ8wTGS39M .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uZ8wTGS39M .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uZ8wTGS39M .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uZ8wTGS39M .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uZ8wTGS39M .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uZ8wTGS39M .offcanvas_box {
    display: none;
  }
}
.cid-uZ8wTGS39M .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uZ8wTGS39M .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uZ8wTGS39M .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uZ8wTGS39M .container {
  display: flex;
  margin: auto;
}
.cid-uZ8wTGS39M .iconfont-wrapper {
  color: #c6f15c;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uZ8wTGS39M .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uZ8wTGS39M .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uZ8wTGS39M .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uZ8wTGS39M .navbar-nav {
    margin: 0;
  }
}
.cid-uZ8wTGS39M .dropdown-menu,
.cid-uZ8wTGS39M .navbar.opened {
  background-color: false !important;
}
.cid-uZ8wTGS39M .nav-item:focus,
.cid-uZ8wTGS39M .nav-link:focus {
  outline: none;
}
.cid-uZ8wTGS39M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZ8wTGS39M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZ8wTGS39M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZ8wTGS39M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ8wTGS39M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZ8wTGS39M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZ8wTGS39M .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uZ8wTGS39M .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uZ8wTGS39M .navbar.opened {
  transition: all 0.3s;
}
.cid-uZ8wTGS39M .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uZ8wTGS39M .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-uZ8wTGS39M .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-uZ8wTGS39M .navbar.collapsed {
  justify-content: center;
}
.cid-uZ8wTGS39M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZ8wTGS39M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uZ8wTGS39M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZ8wTGS39M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZ8wTGS39M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uZ8wTGS39M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uZ8wTGS39M .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uZ8wTGS39M .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uZ8wTGS39M .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uZ8wTGS39M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZ8wTGS39M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZ8wTGS39M .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uZ8wTGS39M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZ8wTGS39M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uZ8wTGS39M .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZ8wTGS39M .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uZ8wTGS39M .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uZ8wTGS39M .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uZ8wTGS39M .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uZ8wTGS39M .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZ8wTGS39M .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uZ8wTGS39M .navbar.navbar-short {
  min-height: 60px;
}
.cid-uZ8wTGS39M .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uZ8wTGS39M .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uZ8wTGS39M .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uZ8wTGS39M .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uZ8wTGS39M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZ8wTGS39M .dropdown-item.active,
.cid-uZ8wTGS39M .dropdown-item:active {
  background-color: transparent;
}
.cid-uZ8wTGS39M .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uZ8wTGS39M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZ8wTGS39M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZ8wTGS39M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ8wTGS39M ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uZ8wTGS39M .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uZ8wTGS39M button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #6a2be9;
  background: #c6f15c;
}
.cid-uZ8wTGS39M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uZ8wTGS39M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uZ8wTGS39M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ8wTGS39M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ8wTGS39M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uZ8wTGS39M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ8wTGS39M nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZ8wTGS39M nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZ8wTGS39M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ8wTGS39M a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uZ8wTGS39M .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uZ8wTGS39M .navbar {
    height: 70px;
  }
  .cid-uZ8wTGS39M .navbar.opened {
    height: auto;
  }
  .cid-uZ8wTGS39M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZ8wTGS39M .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uZ8wTGS39M .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uZ8wTGS39M .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uZ8wTGS39M .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uZ8wTGS39M .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 120px;
  padding: 12px 24px;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-uZ8wTGS39M .mbr-section-btn-main .btn {
    padding: 12px;
  }
}
.cid-uZ8wTGS39M .navbar-caption:hover {
  color: #6500e0;
}
@media (min-width: 992px) {
  .cid-uZ8wTGS39M .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uZ8wTGS39M .text_widget {
  margin-bottom: 32px;
}
.cid-uZ8wTGS39M .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uZ8wTGS39M .text_widget a:hover,
.cid-uZ8wTGS39M .text_widget a:focus {
  opacity: .8;
}
.cid-uZ8wTGS39M .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uZ8wTGS39M .navbar-caption {
  color: #ffffff;
}
.cid-uZ8wTGS39M .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uZ8wTGS39M .mbr-section-subtitle,
.cid-uZ8wTGS39M .text_widget,
.cid-uZ8wTGS39M .mbr-section-btn {
  text-align: center;
}
.cid-uZ8wTGS39M a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uZ8x0ioGGo {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uZ8x0ioGGo .mbr-text {
  color: #221b35;
}
.cid-uZ8x0ioGGo .my {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-uZ8x0ioGGo h5,
.cid-uZ8x0ioGGo h6 {
  background: #17003b;
  display: inline;
}
.cid-uZ8x0ioGGo h5 {
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
}
.cid-uZ8x0ioGGo h6 {
  line-height: 1.3 !important;
}
.cid-uZ8x0ioGGo h6 span {
  padding-right: 2rem;
}
.cid-uZ8x0ioGGo .mbr-section-title,
.cid-uZ8x0ioGGo .align {
  color: #ffffff;
}
.cid-uZ8x0ioGGo .mbr-section-subtitle,
.cid-uZ8x0ioGGo .align {
  color: #ffffff;
  text-align: left;
}
.cid-uZ8x0j608C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff7f0;
}
.cid-uZ8x0j608C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8x0j608C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ8x0j608C .underline {
  text-decoration: underline;
}
.cid-uZ8x0j608C .items {
  background: #ffffff;
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .cid-uZ8x0j608C .items {
    padding: 3rem 1rem;
  }
}
.cid-uZ8x0j608C .card {
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  margin-bottom: 2rem;
}
.cid-uZ8x0j608C .text-primary {
  background: #6bffc7;
}
.cid-uZ8x0j608C .noborder {
  border-bottom: 0;
}
.cid-uZ8x0j608C b,
.cid-uZ8x0j608C strong,
.cid-uZ8x0j608C a {
  font-weight: 900;
}
.cid-uZ8x0j608C .mbr-section-title {
  color: #17003b;
}
.cid-uZ8x0j608C .mbr-section-subtitle {
  color: #17003b;
}
.cid-uZ8x0j608C .mbr-item-title {
  text-align: center;
  color: #17003b;
}
.cid-uZ8x0j608C .mbr-item-text {
  text-align: center;
  color: #17003b;
}
.cid-uZ8x0j608C .mbr-item-title,
.cid-uZ8x0j608C .card {
  color: #17003b;
}
.cid-uZ8x0j608C .mbr-text {
  color: #17003b;
}
.cid-uZ8x0jwWMd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #17003b;
}
.cid-uZ8x0jwWMd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8x0jwWMd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ8x0jwWMd h3,
.cid-uZ8x0jwWMd a {
  font-weight: 900;
}
.cid-uZ8x0jwWMd a {
  background: #6bffc7;
}
.cid-uZ8x0jwWMd .google-map {
  height: 33rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uZ8x0jwWMd .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uZ8x0jwWMd .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uZ8x0jwWMd .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uZ8x0jwWMd .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uZ8x0jwWMd .mbr-section-title {
  color: #ffffff;
}
.cid-uZ8x0k0cfc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #17003b;
}
.cid-uZ8x0k0cfc p {
  text-align: center;
}
.cid-uZ8x0k0cfc .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-uZ8x0k0cfc .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-uZ8x0k0cfc .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-uZ8x0k0cfc .logo-footer {
  line-height: normal;
}
.cid-uZ8x0k0cfc .copyright .list-inline {
  margin-bottom: 0;
}
.cid-uZ8x0k0cfc .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-uZ8x0k0cfc .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-uZ8x0k0cfc li {
  overflow: hidden;
}
.cid-uZ8x0k0cfc .icon-transition span {
  display: block;
}
.cid-uZ8x0k0cfc .icon-transition:hover span {
  animation: 0.3s linear top;
}
.cid-uZ8x0k0cfc .list-inline-item a {
  display: block;
}
.cid-uZ8x0k0cfc .list-inline-item:hover a {
  animation: 0.3s linear top;
}
@keyframes top {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-100%);
  }
  51% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-uZ8x0k0cfc .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZ8x0k0cfc .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-uZ8x0k0cfc .icon-transition span {
  color: #ffffff;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-uZ8x0k0cfc .social-media {
  display: flex;
  justify-content: flex-end;
}
.cid-uZ8x0k0cfc .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uZ8x0k0cfc .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-uZ8x0k0cfc .logo-footer {
    text-align: center;
  }
  .cid-uZ8x0k0cfc .social-media {
    justify-content: center;
  }
}
.cid-uZ8x0kBydh {
  background-color: transparent;
}
.cid-uZ8x0kBydh .navbar-dropdown {
  background-color: #6a2be9 !important;
  padding: 0;
}
.cid-uZ8x0kBydh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #6a2be9 !important;
  background: #6a2be9;
}
.cid-uZ8x0kBydh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZ8x0kBydh .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uZ8x0kBydh .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uZ8x0kBydh .menu_box .navbar.opened,
  .cid-uZ8x0kBydh .menu_box .navbar-collapse {
    background-color: #6a2be9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uZ8x0kBydh .navbar-dropdown {
  position: relative !important;
}
.cid-uZ8x0kBydh .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 100px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uZ8x0kBydh .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ8x0kBydh .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uZ8x0kBydh .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uZ8x0kBydh .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uZ8x0kBydh .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #b0a0ff;
  }
  .cid-uZ8x0kBydh .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uZ8x0kBydh .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uZ8x0kBydh .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uZ8x0kBydh .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uZ8x0kBydh .offcanvas-body .mbr-text,
  .cid-uZ8x0kBydh .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uZ8x0kBydh .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uZ8x0kBydh .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uZ8x0kBydh .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uZ8x0kBydh .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uZ8x0kBydh .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uZ8x0kBydh .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uZ8x0kBydh .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uZ8x0kBydh ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uZ8x0kBydh .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uZ8x0kBydh .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uZ8x0kBydh .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uZ8x0kBydh li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uZ8x0kBydh .lg_brand {
    margin: 0 1rem;
  }
  .cid-uZ8x0kBydh .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 60%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 28px;
  }
}
.cid-uZ8x0kBydh .nav-item {
  margin: 4px 15px;
}
@media (min-width: 992px) {
  .cid-uZ8x0kBydh .nav-item {
    margin: 4px 0;
  }
}
@media (max-width: 991px) {
  .cid-uZ8x0kBydh .nav-item {
    margin: 0 !important;
  }
}
.cid-uZ8x0kBydh .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uZ8x0kBydh .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  transition: all 0.3s ease-in-out;
}
.cid-uZ8x0kBydh .nav-item .nav-link:hover,
.cid-uZ8x0kBydh .nav-item .nav-link:focus {
  color: #ffffff !important;
}
.cid-uZ8x0kBydh .nav-item .nav-link:hover::before,
.cid-uZ8x0kBydh .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uZ8x0kBydh .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uZ8x0kBydh .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uZ8x0kBydh .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uZ8x0kBydh .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uZ8x0kBydh .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uZ8x0kBydh .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uZ8x0kBydh .offcanvas_box {
    display: none;
  }
}
.cid-uZ8x0kBydh .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uZ8x0kBydh .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uZ8x0kBydh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uZ8x0kBydh .container {
  display: flex;
  margin: auto;
}
.cid-uZ8x0kBydh .iconfont-wrapper {
  color: #c6f15c;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uZ8x0kBydh .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uZ8x0kBydh .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uZ8x0kBydh .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uZ8x0kBydh .navbar-nav {
    margin: 0;
  }
}
.cid-uZ8x0kBydh .dropdown-menu,
.cid-uZ8x0kBydh .navbar.opened {
  background-color: false !important;
}
.cid-uZ8x0kBydh .nav-item:focus,
.cid-uZ8x0kBydh .nav-link:focus {
  outline: none;
}
.cid-uZ8x0kBydh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZ8x0kBydh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZ8x0kBydh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZ8x0kBydh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ8x0kBydh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZ8x0kBydh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZ8x0kBydh .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uZ8x0kBydh .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uZ8x0kBydh .navbar.opened {
  transition: all 0.3s;
}
.cid-uZ8x0kBydh .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uZ8x0kBydh .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-uZ8x0kBydh .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-uZ8x0kBydh .navbar.collapsed {
  justify-content: center;
}
.cid-uZ8x0kBydh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZ8x0kBydh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uZ8x0kBydh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZ8x0kBydh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZ8x0kBydh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uZ8x0kBydh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uZ8x0kBydh .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uZ8x0kBydh .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uZ8x0kBydh .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uZ8x0kBydh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZ8x0kBydh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZ8x0kBydh .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uZ8x0kBydh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZ8x0kBydh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uZ8x0kBydh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZ8x0kBydh .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uZ8x0kBydh .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uZ8x0kBydh .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uZ8x0kBydh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uZ8x0kBydh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZ8x0kBydh .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uZ8x0kBydh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uZ8x0kBydh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uZ8x0kBydh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uZ8x0kBydh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uZ8x0kBydh .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uZ8x0kBydh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZ8x0kBydh .dropdown-item.active,
.cid-uZ8x0kBydh .dropdown-item:active {
  background-color: transparent;
}
.cid-uZ8x0kBydh .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uZ8x0kBydh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZ8x0kBydh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZ8x0kBydh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ8x0kBydh ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uZ8x0kBydh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uZ8x0kBydh button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #6a2be9;
  background: #c6f15c;
}
.cid-uZ8x0kBydh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uZ8x0kBydh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uZ8x0kBydh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ8x0kBydh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ8x0kBydh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uZ8x0kBydh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ8x0kBydh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZ8x0kBydh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZ8x0kBydh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ8x0kBydh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uZ8x0kBydh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uZ8x0kBydh .navbar {
    height: 70px;
  }
  .cid-uZ8x0kBydh .navbar.opened {
    height: auto;
  }
  .cid-uZ8x0kBydh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZ8x0kBydh .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uZ8x0kBydh .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uZ8x0kBydh .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uZ8x0kBydh .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uZ8x0kBydh .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 120px;
  padding: 12px 24px;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-uZ8x0kBydh .mbr-section-btn-main .btn {
    padding: 12px;
  }
}
.cid-uZ8x0kBydh .navbar-caption:hover {
  color: #6500e0;
}
@media (min-width: 992px) {
  .cid-uZ8x0kBydh .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uZ8x0kBydh .text_widget {
  margin-bottom: 32px;
}
.cid-uZ8x0kBydh .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uZ8x0kBydh .text_widget a:hover,
.cid-uZ8x0kBydh .text_widget a:focus {
  opacity: .8;
}
.cid-uZ8x0kBydh .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uZ8x0kBydh .navbar-caption {
  color: #ffffff;
}
.cid-uZ8x0kBydh .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uZ8x0kBydh .mbr-section-subtitle,
.cid-uZ8x0kBydh .text_widget,
.cid-uZ8x0kBydh .mbr-section-btn {
  text-align: center;
}
.cid-uZ8x0kBydh a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uZ8xgJPMwo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #edefeb;
}
.cid-uZ8xgJPMwo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8xgJPMwo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uZ8xgJPMwo .card-content-text {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .cid-uZ8xgJPMwo .card-content-text {
    padding: 0 2.25rem 2.25rem 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uZ8xgJPMwo .card-content-text {
    padding: 1rem 4rem 4rem 4rem;
  }
}
.cid-uZ8xgJPMwo .card-wrapper {
  background: #ffffff;
}
.cid-uZ8xgJPMwo .mbr-text,
.cid-uZ8xgJPMwo .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uZ8xgJPMwo .card-title,
.cid-uZ8xgJPMwo .card-box {
  text-align: left;
  color: #000000;
}
.cid-uZ8xgJPMwo .image-wrapper img {
  width: 100%;
}
.cid-uZ8xed5C72 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff7f0;
}
.cid-uZ8xed5C72 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8xed5C72 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ8xed5C72 .underline {
  text-decoration: underline;
}
.cid-uZ8xed5C72 .items {
  background: #ffffff;
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .cid-uZ8xed5C72 .items {
    padding: 3rem 1rem;
  }
}
.cid-uZ8xed5C72 .card {
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  margin-bottom: 2rem;
}
.cid-uZ8xed5C72 .text-primary {
  background: #6bffc7;
}
.cid-uZ8xed5C72 .noborder {
  border-bottom: 0;
}
.cid-uZ8xed5C72 b,
.cid-uZ8xed5C72 strong,
.cid-uZ8xed5C72 a {
  font-weight: 900;
}
.cid-uZ8xed5C72 .mbr-section-title {
  color: #17003b;
}
.cid-uZ8xed5C72 .mbr-section-subtitle {
  color: #17003b;
}
.cid-uZ8xed5C72 .mbr-item-title {
  text-align: center;
  color: #17003b;
}
.cid-uZ8xed5C72 .mbr-item-text {
  text-align: center;
  color: #17003b;
}
.cid-uZ8xed5C72 .mbr-item-title,
.cid-uZ8xed5C72 .card {
  color: #17003b;
}
.cid-uZ8xed5C72 .mbr-text {
  color: #17003b;
}
.cid-uZ8xedx1T6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #17003b;
}
.cid-uZ8xedx1T6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8xedx1T6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ8xedx1T6 h3,
.cid-uZ8xedx1T6 a {
  font-weight: 900;
}
.cid-uZ8xedx1T6 a {
  background: #6bffc7;
}
.cid-uZ8xedx1T6 .google-map {
  height: 33rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uZ8xedx1T6 .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uZ8xedx1T6 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uZ8xedx1T6 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uZ8xedx1T6 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uZ8xedx1T6 .mbr-section-title {
  color: #ffffff;
}
.cid-uZ8xee0PqZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #17003b;
}
.cid-uZ8xee0PqZ p {
  text-align: center;
}
.cid-uZ8xee0PqZ .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-uZ8xee0PqZ .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-uZ8xee0PqZ .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-uZ8xee0PqZ .logo-footer {
  line-height: normal;
}
.cid-uZ8xee0PqZ .copyright .list-inline {
  margin-bottom: 0;
}
.cid-uZ8xee0PqZ .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-uZ8xee0PqZ .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-uZ8xee0PqZ li {
  overflow: hidden;
}
.cid-uZ8xee0PqZ .icon-transition span {
  display: block;
}
.cid-uZ8xee0PqZ .icon-transition:hover span {
  animation: 0.3s linear top;
}
.cid-uZ8xee0PqZ .list-inline-item a {
  display: block;
}
.cid-uZ8xee0PqZ .list-inline-item:hover a {
  animation: 0.3s linear top;
}
@keyframes top {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-100%);
  }
  51% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-uZ8xee0PqZ .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZ8xee0PqZ .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-uZ8xee0PqZ .icon-transition span {
  color: #ffffff;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-uZ8xee0PqZ .social-media {
  display: flex;
  justify-content: flex-end;
}
.cid-uZ8xee0PqZ .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uZ8xee0PqZ .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-uZ8xee0PqZ .logo-footer {
    text-align: center;
  }
  .cid-uZ8xee0PqZ .social-media {
    justify-content: center;
  }
}
.cid-uZ8xeeAleA {
  background-color: transparent;
}
.cid-uZ8xeeAleA .navbar-dropdown {
  background-color: #6a2be9 !important;
  padding: 0;
}
.cid-uZ8xeeAleA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #6a2be9 !important;
  background: #6a2be9;
}
.cid-uZ8xeeAleA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZ8xeeAleA .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uZ8xeeAleA .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uZ8xeeAleA .menu_box .navbar.opened,
  .cid-uZ8xeeAleA .menu_box .navbar-collapse {
    background-color: #6a2be9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uZ8xeeAleA .navbar-dropdown {
  position: relative !important;
}
.cid-uZ8xeeAleA .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 100px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uZ8xeeAleA .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ8xeeAleA .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uZ8xeeAleA .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uZ8xeeAleA .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uZ8xeeAleA .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #b0a0ff;
  }
  .cid-uZ8xeeAleA .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uZ8xeeAleA .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uZ8xeeAleA .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uZ8xeeAleA .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uZ8xeeAleA .offcanvas-body .mbr-text,
  .cid-uZ8xeeAleA .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uZ8xeeAleA .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uZ8xeeAleA .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uZ8xeeAleA .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uZ8xeeAleA .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uZ8xeeAleA .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uZ8xeeAleA .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uZ8xeeAleA .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uZ8xeeAleA ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uZ8xeeAleA .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uZ8xeeAleA .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uZ8xeeAleA .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uZ8xeeAleA li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uZ8xeeAleA .lg_brand {
    margin: 0 1rem;
  }
  .cid-uZ8xeeAleA .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 60%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 28px;
  }
}
.cid-uZ8xeeAleA .nav-item {
  margin: 4px 15px;
}
@media (min-width: 992px) {
  .cid-uZ8xeeAleA .nav-item {
    margin: 4px 0;
  }
}
@media (max-width: 991px) {
  .cid-uZ8xeeAleA .nav-item {
    margin: 0 !important;
  }
}
.cid-uZ8xeeAleA .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uZ8xeeAleA .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  transition: all 0.3s ease-in-out;
}
.cid-uZ8xeeAleA .nav-item .nav-link:hover,
.cid-uZ8xeeAleA .nav-item .nav-link:focus {
  color: #ffffff !important;
}
.cid-uZ8xeeAleA .nav-item .nav-link:hover::before,
.cid-uZ8xeeAleA .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uZ8xeeAleA .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uZ8xeeAleA .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uZ8xeeAleA .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uZ8xeeAleA .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uZ8xeeAleA .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uZ8xeeAleA .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uZ8xeeAleA .offcanvas_box {
    display: none;
  }
}
.cid-uZ8xeeAleA .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uZ8xeeAleA .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uZ8xeeAleA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uZ8xeeAleA .container {
  display: flex;
  margin: auto;
}
.cid-uZ8xeeAleA .iconfont-wrapper {
  color: #c6f15c;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uZ8xeeAleA .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uZ8xeeAleA .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uZ8xeeAleA .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uZ8xeeAleA .navbar-nav {
    margin: 0;
  }
}
.cid-uZ8xeeAleA .dropdown-menu,
.cid-uZ8xeeAleA .navbar.opened {
  background-color: false !important;
}
.cid-uZ8xeeAleA .nav-item:focus,
.cid-uZ8xeeAleA .nav-link:focus {
  outline: none;
}
.cid-uZ8xeeAleA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZ8xeeAleA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZ8xeeAleA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZ8xeeAleA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ8xeeAleA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZ8xeeAleA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZ8xeeAleA .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uZ8xeeAleA .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uZ8xeeAleA .navbar.opened {
  transition: all 0.3s;
}
.cid-uZ8xeeAleA .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uZ8xeeAleA .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-uZ8xeeAleA .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-uZ8xeeAleA .navbar.collapsed {
  justify-content: center;
}
.cid-uZ8xeeAleA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZ8xeeAleA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uZ8xeeAleA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZ8xeeAleA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZ8xeeAleA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uZ8xeeAleA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uZ8xeeAleA .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uZ8xeeAleA .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uZ8xeeAleA .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uZ8xeeAleA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZ8xeeAleA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZ8xeeAleA .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uZ8xeeAleA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZ8xeeAleA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uZ8xeeAleA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZ8xeeAleA .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uZ8xeeAleA .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uZ8xeeAleA .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uZ8xeeAleA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uZ8xeeAleA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZ8xeeAleA .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uZ8xeeAleA .navbar.navbar-short {
  min-height: 60px;
}
.cid-uZ8xeeAleA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uZ8xeeAleA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uZ8xeeAleA .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uZ8xeeAleA .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uZ8xeeAleA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZ8xeeAleA .dropdown-item.active,
.cid-uZ8xeeAleA .dropdown-item:active {
  background-color: transparent;
}
.cid-uZ8xeeAleA .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uZ8xeeAleA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZ8xeeAleA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZ8xeeAleA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ8xeeAleA ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uZ8xeeAleA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uZ8xeeAleA button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #6a2be9;
  background: #c6f15c;
}
.cid-uZ8xeeAleA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uZ8xeeAleA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uZ8xeeAleA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ8xeeAleA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ8xeeAleA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uZ8xeeAleA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ8xeeAleA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZ8xeeAleA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZ8xeeAleA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ8xeeAleA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uZ8xeeAleA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uZ8xeeAleA .navbar {
    height: 70px;
  }
  .cid-uZ8xeeAleA .navbar.opened {
    height: auto;
  }
  .cid-uZ8xeeAleA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZ8xeeAleA .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uZ8xeeAleA .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uZ8xeeAleA .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uZ8xeeAleA .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uZ8xeeAleA .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 120px;
  padding: 12px 24px;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-uZ8xeeAleA .mbr-section-btn-main .btn {
    padding: 12px;
  }
}
.cid-uZ8xeeAleA .navbar-caption:hover {
  color: #6500e0;
}
@media (min-width: 992px) {
  .cid-uZ8xeeAleA .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uZ8xeeAleA .text_widget {
  margin-bottom: 32px;
}
.cid-uZ8xeeAleA .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uZ8xeeAleA .text_widget a:hover,
.cid-uZ8xeeAleA .text_widget a:focus {
  opacity: .8;
}
.cid-uZ8xeeAleA .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uZ8xeeAleA .navbar-caption {
  color: #ffffff;
}
.cid-uZ8xeeAleA .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uZ8xeeAleA .mbr-section-subtitle,
.cid-uZ8xeeAleA .text_widget,
.cid-uZ8xeeAleA .mbr-section-btn {
  text-align: center;
}
.cid-uZ8xeeAleA a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uZ8xoLNyOw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #edefeb;
}
.cid-uZ8xoLNyOw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8xoLNyOw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uZ8xoLNyOw .card-content-text {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .cid-uZ8xoLNyOw .card-content-text {
    padding: 0 2.25rem 2.25rem 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uZ8xoLNyOw .card-content-text {
    padding: 1rem 4rem 4rem 4rem;
  }
}
.cid-uZ8xoLNyOw .card-wrapper {
  background: #ffffff;
}
.cid-uZ8xoLNyOw .mbr-text,
.cid-uZ8xoLNyOw .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uZ8xoLNyOw .card-title,
.cid-uZ8xoLNyOw .card-box {
  text-align: left;
  color: #000000;
}
.cid-uZ8xoLNyOw .image-wrapper img {
  width: 100%;
}
.cid-uZ8xoMtkgU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff7f0;
}
.cid-uZ8xoMtkgU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8xoMtkgU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ8xoMtkgU .underline {
  text-decoration: underline;
}
.cid-uZ8xoMtkgU .items {
  background: #ffffff;
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .cid-uZ8xoMtkgU .items {
    padding: 3rem 1rem;
  }
}
.cid-uZ8xoMtkgU .card {
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  margin-bottom: 2rem;
}
.cid-uZ8xoMtkgU .text-primary {
  background: #6bffc7;
}
.cid-uZ8xoMtkgU .noborder {
  border-bottom: 0;
}
.cid-uZ8xoMtkgU b,
.cid-uZ8xoMtkgU strong,
.cid-uZ8xoMtkgU a {
  font-weight: 900;
}
.cid-uZ8xoMtkgU .mbr-section-title {
  color: #17003b;
}
.cid-uZ8xoMtkgU .mbr-section-subtitle {
  color: #17003b;
}
.cid-uZ8xoMtkgU .mbr-item-title {
  text-align: center;
  color: #17003b;
}
.cid-uZ8xoMtkgU .mbr-item-text {
  text-align: center;
  color: #17003b;
}
.cid-uZ8xoMtkgU .mbr-item-title,
.cid-uZ8xoMtkgU .card {
  color: #17003b;
}
.cid-uZ8xoMtkgU .mbr-text {
  color: #17003b;
}
.cid-uZ8xoMQHYX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #17003b;
}
.cid-uZ8xoMQHYX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8xoMQHYX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ8xoMQHYX h3,
.cid-uZ8xoMQHYX a {
  font-weight: 900;
}
.cid-uZ8xoMQHYX a {
  background: #6bffc7;
}
.cid-uZ8xoMQHYX .google-map {
  height: 33rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uZ8xoMQHYX .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uZ8xoMQHYX .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uZ8xoMQHYX .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uZ8xoMQHYX .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uZ8xoMQHYX .mbr-section-title {
  color: #ffffff;
}
.cid-uZ8xoNjFTS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #17003b;
}
.cid-uZ8xoNjFTS p {
  text-align: center;
}
.cid-uZ8xoNjFTS .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-uZ8xoNjFTS .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-uZ8xoNjFTS .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-uZ8xoNjFTS .logo-footer {
  line-height: normal;
}
.cid-uZ8xoNjFTS .copyright .list-inline {
  margin-bottom: 0;
}
.cid-uZ8xoNjFTS .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-uZ8xoNjFTS .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-uZ8xoNjFTS li {
  overflow: hidden;
}
.cid-uZ8xoNjFTS .icon-transition span {
  display: block;
}
.cid-uZ8xoNjFTS .icon-transition:hover span {
  animation: 0.3s linear top;
}
.cid-uZ8xoNjFTS .list-inline-item a {
  display: block;
}
.cid-uZ8xoNjFTS .list-inline-item:hover a {
  animation: 0.3s linear top;
}
@keyframes top {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-100%);
  }
  51% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-uZ8xoNjFTS .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZ8xoNjFTS .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-uZ8xoNjFTS .icon-transition span {
  color: #ffffff;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-uZ8xoNjFTS .social-media {
  display: flex;
  justify-content: flex-end;
}
.cid-uZ8xoNjFTS .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uZ8xoNjFTS .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-uZ8xoNjFTS .logo-footer {
    text-align: center;
  }
  .cid-uZ8xoNjFTS .social-media {
    justify-content: center;
  }
}
.cid-uZ8xoNOPfY {
  background-color: transparent;
}
.cid-uZ8xoNOPfY .navbar-dropdown {
  background-color: #6a2be9 !important;
  padding: 0;
}
.cid-uZ8xoNOPfY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #6a2be9 !important;
  background: #6a2be9;
}
.cid-uZ8xoNOPfY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZ8xoNOPfY .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uZ8xoNOPfY .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uZ8xoNOPfY .menu_box .navbar.opened,
  .cid-uZ8xoNOPfY .menu_box .navbar-collapse {
    background-color: #6a2be9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uZ8xoNOPfY .navbar-dropdown {
  position: relative !important;
}
.cid-uZ8xoNOPfY .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 100px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uZ8xoNOPfY .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ8xoNOPfY .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uZ8xoNOPfY .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uZ8xoNOPfY .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uZ8xoNOPfY .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #b0a0ff;
  }
  .cid-uZ8xoNOPfY .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uZ8xoNOPfY .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uZ8xoNOPfY .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uZ8xoNOPfY .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uZ8xoNOPfY .offcanvas-body .mbr-text,
  .cid-uZ8xoNOPfY .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uZ8xoNOPfY .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uZ8xoNOPfY .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uZ8xoNOPfY .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uZ8xoNOPfY .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uZ8xoNOPfY .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uZ8xoNOPfY .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uZ8xoNOPfY .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uZ8xoNOPfY ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uZ8xoNOPfY .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uZ8xoNOPfY .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uZ8xoNOPfY .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uZ8xoNOPfY li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uZ8xoNOPfY .lg_brand {
    margin: 0 1rem;
  }
  .cid-uZ8xoNOPfY .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 60%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 28px;
  }
}
.cid-uZ8xoNOPfY .nav-item {
  margin: 4px 15px;
}
@media (min-width: 992px) {
  .cid-uZ8xoNOPfY .nav-item {
    margin: 4px 0;
  }
}
@media (max-width: 991px) {
  .cid-uZ8xoNOPfY .nav-item {
    margin: 0 !important;
  }
}
.cid-uZ8xoNOPfY .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uZ8xoNOPfY .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  transition: all 0.3s ease-in-out;
}
.cid-uZ8xoNOPfY .nav-item .nav-link:hover,
.cid-uZ8xoNOPfY .nav-item .nav-link:focus {
  color: #ffffff !important;
}
.cid-uZ8xoNOPfY .nav-item .nav-link:hover::before,
.cid-uZ8xoNOPfY .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uZ8xoNOPfY .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uZ8xoNOPfY .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uZ8xoNOPfY .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uZ8xoNOPfY .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uZ8xoNOPfY .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uZ8xoNOPfY .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uZ8xoNOPfY .offcanvas_box {
    display: none;
  }
}
.cid-uZ8xoNOPfY .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uZ8xoNOPfY .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uZ8xoNOPfY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uZ8xoNOPfY .container {
  display: flex;
  margin: auto;
}
.cid-uZ8xoNOPfY .iconfont-wrapper {
  color: #c6f15c;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uZ8xoNOPfY .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uZ8xoNOPfY .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uZ8xoNOPfY .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uZ8xoNOPfY .navbar-nav {
    margin: 0;
  }
}
.cid-uZ8xoNOPfY .dropdown-menu,
.cid-uZ8xoNOPfY .navbar.opened {
  background-color: false !important;
}
.cid-uZ8xoNOPfY .nav-item:focus,
.cid-uZ8xoNOPfY .nav-link:focus {
  outline: none;
}
.cid-uZ8xoNOPfY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZ8xoNOPfY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZ8xoNOPfY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZ8xoNOPfY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ8xoNOPfY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZ8xoNOPfY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZ8xoNOPfY .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uZ8xoNOPfY .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uZ8xoNOPfY .navbar.opened {
  transition: all 0.3s;
}
.cid-uZ8xoNOPfY .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uZ8xoNOPfY .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-uZ8xoNOPfY .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-uZ8xoNOPfY .navbar.collapsed {
  justify-content: center;
}
.cid-uZ8xoNOPfY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZ8xoNOPfY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uZ8xoNOPfY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZ8xoNOPfY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZ8xoNOPfY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uZ8xoNOPfY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uZ8xoNOPfY .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uZ8xoNOPfY .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uZ8xoNOPfY .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uZ8xoNOPfY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZ8xoNOPfY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZ8xoNOPfY .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uZ8xoNOPfY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZ8xoNOPfY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uZ8xoNOPfY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZ8xoNOPfY .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uZ8xoNOPfY .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uZ8xoNOPfY .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uZ8xoNOPfY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uZ8xoNOPfY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZ8xoNOPfY .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uZ8xoNOPfY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uZ8xoNOPfY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uZ8xoNOPfY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uZ8xoNOPfY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uZ8xoNOPfY .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uZ8xoNOPfY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZ8xoNOPfY .dropdown-item.active,
.cid-uZ8xoNOPfY .dropdown-item:active {
  background-color: transparent;
}
.cid-uZ8xoNOPfY .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uZ8xoNOPfY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZ8xoNOPfY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZ8xoNOPfY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ8xoNOPfY ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uZ8xoNOPfY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uZ8xoNOPfY button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #6a2be9;
  background: #c6f15c;
}
.cid-uZ8xoNOPfY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uZ8xoNOPfY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uZ8xoNOPfY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ8xoNOPfY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ8xoNOPfY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uZ8xoNOPfY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ8xoNOPfY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZ8xoNOPfY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZ8xoNOPfY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ8xoNOPfY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uZ8xoNOPfY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uZ8xoNOPfY .navbar {
    height: 70px;
  }
  .cid-uZ8xoNOPfY .navbar.opened {
    height: auto;
  }
  .cid-uZ8xoNOPfY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZ8xoNOPfY .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uZ8xoNOPfY .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uZ8xoNOPfY .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uZ8xoNOPfY .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uZ8xoNOPfY .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 120px;
  padding: 12px 24px;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-uZ8xoNOPfY .mbr-section-btn-main .btn {
    padding: 12px;
  }
}
.cid-uZ8xoNOPfY .navbar-caption:hover {
  color: #6500e0;
}
@media (min-width: 992px) {
  .cid-uZ8xoNOPfY .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uZ8xoNOPfY .text_widget {
  margin-bottom: 32px;
}
.cid-uZ8xoNOPfY .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uZ8xoNOPfY .text_widget a:hover,
.cid-uZ8xoNOPfY .text_widget a:focus {
  opacity: .8;
}
.cid-uZ8xoNOPfY .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uZ8xoNOPfY .navbar-caption {
  color: #ffffff;
}
.cid-uZ8xoNOPfY .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uZ8xoNOPfY .mbr-section-subtitle,
.cid-uZ8xoNOPfY .text_widget,
.cid-uZ8xoNOPfY .mbr-section-btn {
  text-align: center;
}
.cid-uZ8xoNOPfY a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uZ8xuLxJA0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #edefeb;
}
.cid-uZ8xuLxJA0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8xuLxJA0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uZ8xuLxJA0 .card-content-text {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .cid-uZ8xuLxJA0 .card-content-text {
    padding: 0 2.25rem 2.25rem 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uZ8xuLxJA0 .card-content-text {
    padding: 1rem 4rem 4rem 4rem;
  }
}
.cid-uZ8xuLxJA0 .card-wrapper {
  background: #ffffff;
}
.cid-uZ8xuLxJA0 .mbr-text,
.cid-uZ8xuLxJA0 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uZ8xuLxJA0 .card-title,
.cid-uZ8xuLxJA0 .card-box {
  text-align: left;
  color: #000000;
}
.cid-uZ8xuLxJA0 .image-wrapper img {
  width: 100%;
}
.cid-uZ8xuMd6a8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff7f0;
}
.cid-uZ8xuMd6a8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8xuMd6a8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ8xuMd6a8 .underline {
  text-decoration: underline;
}
.cid-uZ8xuMd6a8 .items {
  background: #ffffff;
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .cid-uZ8xuMd6a8 .items {
    padding: 3rem 1rem;
  }
}
.cid-uZ8xuMd6a8 .card {
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  margin-bottom: 2rem;
}
.cid-uZ8xuMd6a8 .text-primary {
  background: #6bffc7;
}
.cid-uZ8xuMd6a8 .noborder {
  border-bottom: 0;
}
.cid-uZ8xuMd6a8 b,
.cid-uZ8xuMd6a8 strong,
.cid-uZ8xuMd6a8 a {
  font-weight: 900;
}
.cid-uZ8xuMd6a8 .mbr-section-title {
  color: #17003b;
}
.cid-uZ8xuMd6a8 .mbr-section-subtitle {
  color: #17003b;
}
.cid-uZ8xuMd6a8 .mbr-item-title {
  text-align: center;
  color: #17003b;
}
.cid-uZ8xuMd6a8 .mbr-item-text {
  text-align: center;
  color: #17003b;
}
.cid-uZ8xuMd6a8 .mbr-item-title,
.cid-uZ8xuMd6a8 .card {
  color: #17003b;
}
.cid-uZ8xuMd6a8 .mbr-text {
  color: #17003b;
}
.cid-uZ8xuMSAtY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #17003b;
}
.cid-uZ8xuMSAtY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8xuMSAtY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ8xuMSAtY h3,
.cid-uZ8xuMSAtY a {
  font-weight: 900;
}
.cid-uZ8xuMSAtY a {
  background: #6bffc7;
}
.cid-uZ8xuMSAtY .google-map {
  height: 33rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uZ8xuMSAtY .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uZ8xuMSAtY .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uZ8xuMSAtY .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uZ8xuMSAtY .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uZ8xuMSAtY .mbr-section-title {
  color: #ffffff;
}
.cid-uZ8xuNud7I {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #17003b;
}
.cid-uZ8xuNud7I p {
  text-align: center;
}
.cid-uZ8xuNud7I .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-uZ8xuNud7I .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-uZ8xuNud7I .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-uZ8xuNud7I .logo-footer {
  line-height: normal;
}
.cid-uZ8xuNud7I .copyright .list-inline {
  margin-bottom: 0;
}
.cid-uZ8xuNud7I .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-uZ8xuNud7I .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-uZ8xuNud7I li {
  overflow: hidden;
}
.cid-uZ8xuNud7I .icon-transition span {
  display: block;
}
.cid-uZ8xuNud7I .icon-transition:hover span {
  animation: 0.3s linear top;
}
.cid-uZ8xuNud7I .list-inline-item a {
  display: block;
}
.cid-uZ8xuNud7I .list-inline-item:hover a {
  animation: 0.3s linear top;
}
@keyframes top {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-100%);
  }
  51% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-uZ8xuNud7I .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZ8xuNud7I .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-uZ8xuNud7I .icon-transition span {
  color: #ffffff;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-uZ8xuNud7I .social-media {
  display: flex;
  justify-content: flex-end;
}
.cid-uZ8xuNud7I .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uZ8xuNud7I .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-uZ8xuNud7I .logo-footer {
    text-align: center;
  }
  .cid-uZ8xuNud7I .social-media {
    justify-content: center;
  }
}
.cid-uZ8xuO2NPu {
  background-color: transparent;
}
.cid-uZ8xuO2NPu .navbar-dropdown {
  background-color: #6a2be9 !important;
  padding: 0;
}
.cid-uZ8xuO2NPu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #6a2be9 !important;
  background: #6a2be9;
}
.cid-uZ8xuO2NPu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZ8xuO2NPu .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uZ8xuO2NPu .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uZ8xuO2NPu .menu_box .navbar.opened,
  .cid-uZ8xuO2NPu .menu_box .navbar-collapse {
    background-color: #6a2be9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uZ8xuO2NPu .navbar-dropdown {
  position: relative !important;
}
.cid-uZ8xuO2NPu .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 100px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uZ8xuO2NPu .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ8xuO2NPu .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uZ8xuO2NPu .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uZ8xuO2NPu .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uZ8xuO2NPu .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #b0a0ff;
  }
  .cid-uZ8xuO2NPu .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uZ8xuO2NPu .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uZ8xuO2NPu .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uZ8xuO2NPu .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uZ8xuO2NPu .offcanvas-body .mbr-text,
  .cid-uZ8xuO2NPu .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uZ8xuO2NPu .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uZ8xuO2NPu .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uZ8xuO2NPu .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uZ8xuO2NPu .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uZ8xuO2NPu .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uZ8xuO2NPu .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uZ8xuO2NPu .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uZ8xuO2NPu ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uZ8xuO2NPu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uZ8xuO2NPu .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uZ8xuO2NPu .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uZ8xuO2NPu li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uZ8xuO2NPu .lg_brand {
    margin: 0 1rem;
  }
  .cid-uZ8xuO2NPu .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 60%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 28px;
  }
}
.cid-uZ8xuO2NPu .nav-item {
  margin: 4px 15px;
}
@media (min-width: 992px) {
  .cid-uZ8xuO2NPu .nav-item {
    margin: 4px 0;
  }
}
@media (max-width: 991px) {
  .cid-uZ8xuO2NPu .nav-item {
    margin: 0 !important;
  }
}
.cid-uZ8xuO2NPu .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uZ8xuO2NPu .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  transition: all 0.3s ease-in-out;
}
.cid-uZ8xuO2NPu .nav-item .nav-link:hover,
.cid-uZ8xuO2NPu .nav-item .nav-link:focus {
  color: #ffffff !important;
}
.cid-uZ8xuO2NPu .nav-item .nav-link:hover::before,
.cid-uZ8xuO2NPu .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uZ8xuO2NPu .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uZ8xuO2NPu .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uZ8xuO2NPu .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uZ8xuO2NPu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uZ8xuO2NPu .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uZ8xuO2NPu .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uZ8xuO2NPu .offcanvas_box {
    display: none;
  }
}
.cid-uZ8xuO2NPu .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uZ8xuO2NPu .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uZ8xuO2NPu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uZ8xuO2NPu .container {
  display: flex;
  margin: auto;
}
.cid-uZ8xuO2NPu .iconfont-wrapper {
  color: #c6f15c;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uZ8xuO2NPu .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uZ8xuO2NPu .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uZ8xuO2NPu .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uZ8xuO2NPu .navbar-nav {
    margin: 0;
  }
}
.cid-uZ8xuO2NPu .dropdown-menu,
.cid-uZ8xuO2NPu .navbar.opened {
  background-color: false !important;
}
.cid-uZ8xuO2NPu .nav-item:focus,
.cid-uZ8xuO2NPu .nav-link:focus {
  outline: none;
}
.cid-uZ8xuO2NPu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZ8xuO2NPu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZ8xuO2NPu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZ8xuO2NPu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ8xuO2NPu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZ8xuO2NPu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZ8xuO2NPu .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uZ8xuO2NPu .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uZ8xuO2NPu .navbar.opened {
  transition: all 0.3s;
}
.cid-uZ8xuO2NPu .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uZ8xuO2NPu .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-uZ8xuO2NPu .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-uZ8xuO2NPu .navbar.collapsed {
  justify-content: center;
}
.cid-uZ8xuO2NPu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZ8xuO2NPu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uZ8xuO2NPu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZ8xuO2NPu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZ8xuO2NPu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uZ8xuO2NPu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uZ8xuO2NPu .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uZ8xuO2NPu .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uZ8xuO2NPu .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uZ8xuO2NPu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZ8xuO2NPu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZ8xuO2NPu .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uZ8xuO2NPu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZ8xuO2NPu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uZ8xuO2NPu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZ8xuO2NPu .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uZ8xuO2NPu .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uZ8xuO2NPu .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uZ8xuO2NPu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uZ8xuO2NPu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZ8xuO2NPu .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uZ8xuO2NPu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uZ8xuO2NPu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uZ8xuO2NPu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uZ8xuO2NPu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uZ8xuO2NPu .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uZ8xuO2NPu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZ8xuO2NPu .dropdown-item.active,
.cid-uZ8xuO2NPu .dropdown-item:active {
  background-color: transparent;
}
.cid-uZ8xuO2NPu .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uZ8xuO2NPu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZ8xuO2NPu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZ8xuO2NPu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ8xuO2NPu ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uZ8xuO2NPu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uZ8xuO2NPu button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #6a2be9;
  background: #c6f15c;
}
.cid-uZ8xuO2NPu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uZ8xuO2NPu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uZ8xuO2NPu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ8xuO2NPu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ8xuO2NPu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uZ8xuO2NPu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ8xuO2NPu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZ8xuO2NPu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZ8xuO2NPu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ8xuO2NPu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uZ8xuO2NPu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uZ8xuO2NPu .navbar {
    height: 70px;
  }
  .cid-uZ8xuO2NPu .navbar.opened {
    height: auto;
  }
  .cid-uZ8xuO2NPu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZ8xuO2NPu .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uZ8xuO2NPu .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uZ8xuO2NPu .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uZ8xuO2NPu .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uZ8xuO2NPu .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 120px;
  padding: 12px 24px;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-uZ8xuO2NPu .mbr-section-btn-main .btn {
    padding: 12px;
  }
}
.cid-uZ8xuO2NPu .navbar-caption:hover {
  color: #6500e0;
}
@media (min-width: 992px) {
  .cid-uZ8xuO2NPu .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uZ8xuO2NPu .text_widget {
  margin-bottom: 32px;
}
.cid-uZ8xuO2NPu .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uZ8xuO2NPu .text_widget a:hover,
.cid-uZ8xuO2NPu .text_widget a:focus {
  opacity: .8;
}
.cid-uZ8xuO2NPu .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uZ8xuO2NPu .navbar-caption {
  color: #ffffff;
}
.cid-uZ8xuO2NPu .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uZ8xuO2NPu .mbr-section-subtitle,
.cid-uZ8xuO2NPu .text_widget,
.cid-uZ8xuO2NPu .mbr-section-btn {
  text-align: center;
}
.cid-uZ8xuO2NPu a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uZ8xBj1iMJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #edefeb;
}
.cid-uZ8xBj1iMJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8xBj1iMJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uZ8xBj1iMJ .card-content-text {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .cid-uZ8xBj1iMJ .card-content-text {
    padding: 0 2.25rem 2.25rem 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uZ8xBj1iMJ .card-content-text {
    padding: 1rem 4rem 4rem 4rem;
  }
}
.cid-uZ8xBj1iMJ .card-wrapper {
  background: #ffffff;
}
.cid-uZ8xBj1iMJ .mbr-text,
.cid-uZ8xBj1iMJ .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uZ8xBj1iMJ .card-title,
.cid-uZ8xBj1iMJ .card-box {
  text-align: left;
  color: #000000;
}
.cid-uZ8xBj1iMJ .image-wrapper img {
  width: 100%;
}
.cid-uZ8xBjuURh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff7f0;
}
.cid-uZ8xBjuURh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8xBjuURh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ8xBjuURh .underline {
  text-decoration: underline;
}
.cid-uZ8xBjuURh .items {
  background: #ffffff;
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .cid-uZ8xBjuURh .items {
    padding: 3rem 1rem;
  }
}
.cid-uZ8xBjuURh .card {
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  margin-bottom: 2rem;
}
.cid-uZ8xBjuURh .text-primary {
  background: #6bffc7;
}
.cid-uZ8xBjuURh .noborder {
  border-bottom: 0;
}
.cid-uZ8xBjuURh b,
.cid-uZ8xBjuURh strong,
.cid-uZ8xBjuURh a {
  font-weight: 900;
}
.cid-uZ8xBjuURh .mbr-section-title {
  color: #17003b;
}
.cid-uZ8xBjuURh .mbr-section-subtitle {
  color: #17003b;
}
.cid-uZ8xBjuURh .mbr-item-title {
  text-align: center;
  color: #17003b;
}
.cid-uZ8xBjuURh .mbr-item-text {
  text-align: center;
  color: #17003b;
}
.cid-uZ8xBjuURh .mbr-item-title,
.cid-uZ8xBjuURh .card {
  color: #17003b;
}
.cid-uZ8xBjuURh .mbr-text {
  color: #17003b;
}
.cid-uZ8xBjSn6Q {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #17003b;
}
.cid-uZ8xBjSn6Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8xBjSn6Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ8xBjSn6Q h3,
.cid-uZ8xBjSn6Q a {
  font-weight: 900;
}
.cid-uZ8xBjSn6Q a {
  background: #6bffc7;
}
.cid-uZ8xBjSn6Q .google-map {
  height: 33rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uZ8xBjSn6Q .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uZ8xBjSn6Q .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uZ8xBjSn6Q .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uZ8xBjSn6Q .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uZ8xBjSn6Q .mbr-section-title {
  color: #ffffff;
}
.cid-uZ8xBkipsz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #17003b;
}
.cid-uZ8xBkipsz p {
  text-align: center;
}
.cid-uZ8xBkipsz .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-uZ8xBkipsz .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-uZ8xBkipsz .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-uZ8xBkipsz .logo-footer {
  line-height: normal;
}
.cid-uZ8xBkipsz .copyright .list-inline {
  margin-bottom: 0;
}
.cid-uZ8xBkipsz .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-uZ8xBkipsz .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-uZ8xBkipsz li {
  overflow: hidden;
}
.cid-uZ8xBkipsz .icon-transition span {
  display: block;
}
.cid-uZ8xBkipsz .icon-transition:hover span {
  animation: 0.3s linear top;
}
.cid-uZ8xBkipsz .list-inline-item a {
  display: block;
}
.cid-uZ8xBkipsz .list-inline-item:hover a {
  animation: 0.3s linear top;
}
@keyframes top {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-100%);
  }
  51% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-uZ8xBkipsz .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZ8xBkipsz .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-uZ8xBkipsz .icon-transition span {
  color: #ffffff;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-uZ8xBkipsz .social-media {
  display: flex;
  justify-content: flex-end;
}
.cid-uZ8xBkipsz .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uZ8xBkipsz .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-uZ8xBkipsz .logo-footer {
    text-align: center;
  }
  .cid-uZ8xBkipsz .social-media {
    justify-content: center;
  }
}
.cid-uZ8xBkL2aj {
  background-color: transparent;
}
.cid-uZ8xBkL2aj .navbar-dropdown {
  background-color: #6a2be9 !important;
  padding: 0;
}
.cid-uZ8xBkL2aj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #6a2be9 !important;
  background: #6a2be9;
}
.cid-uZ8xBkL2aj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZ8xBkL2aj .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uZ8xBkL2aj .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uZ8xBkL2aj .menu_box .navbar.opened,
  .cid-uZ8xBkL2aj .menu_box .navbar-collapse {
    background-color: #6a2be9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uZ8xBkL2aj .navbar-dropdown {
  position: relative !important;
}
.cid-uZ8xBkL2aj .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 100px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-uZ8xBkL2aj .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ8xBkL2aj .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uZ8xBkL2aj .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uZ8xBkL2aj .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uZ8xBkL2aj .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #b0a0ff;
  }
  .cid-uZ8xBkL2aj .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uZ8xBkL2aj .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uZ8xBkL2aj .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uZ8xBkL2aj .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uZ8xBkL2aj .offcanvas-body .mbr-text,
  .cid-uZ8xBkL2aj .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uZ8xBkL2aj .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uZ8xBkL2aj .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uZ8xBkL2aj .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uZ8xBkL2aj .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uZ8xBkL2aj .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uZ8xBkL2aj .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uZ8xBkL2aj .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uZ8xBkL2aj ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uZ8xBkL2aj .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uZ8xBkL2aj .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uZ8xBkL2aj .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uZ8xBkL2aj li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uZ8xBkL2aj .lg_brand {
    margin: 0 1rem;
  }
  .cid-uZ8xBkL2aj .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 60%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 28px;
  }
}
.cid-uZ8xBkL2aj .nav-item {
  margin: 4px 15px;
}
@media (min-width: 992px) {
  .cid-uZ8xBkL2aj .nav-item {
    margin: 4px 0;
  }
}
@media (max-width: 991px) {
  .cid-uZ8xBkL2aj .nav-item {
    margin: 0 !important;
  }
}
.cid-uZ8xBkL2aj .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uZ8xBkL2aj .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  transition: all 0.3s ease-in-out;
}
.cid-uZ8xBkL2aj .nav-item .nav-link:hover,
.cid-uZ8xBkL2aj .nav-item .nav-link:focus {
  color: #ffffff !important;
}
.cid-uZ8xBkL2aj .nav-item .nav-link:hover::before,
.cid-uZ8xBkL2aj .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uZ8xBkL2aj .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uZ8xBkL2aj .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uZ8xBkL2aj .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uZ8xBkL2aj .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uZ8xBkL2aj .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uZ8xBkL2aj .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uZ8xBkL2aj .offcanvas_box {
    display: none;
  }
}
.cid-uZ8xBkL2aj .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uZ8xBkL2aj .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uZ8xBkL2aj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uZ8xBkL2aj .container {
  display: flex;
  margin: auto;
}
.cid-uZ8xBkL2aj .iconfont-wrapper {
  color: #c6f15c;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uZ8xBkL2aj .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uZ8xBkL2aj .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uZ8xBkL2aj .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uZ8xBkL2aj .navbar-nav {
    margin: 0;
  }
}
.cid-uZ8xBkL2aj .dropdown-menu,
.cid-uZ8xBkL2aj .navbar.opened {
  background-color: false !important;
}
.cid-uZ8xBkL2aj .nav-item:focus,
.cid-uZ8xBkL2aj .nav-link:focus {
  outline: none;
}
.cid-uZ8xBkL2aj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZ8xBkL2aj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZ8xBkL2aj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZ8xBkL2aj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ8xBkL2aj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZ8xBkL2aj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZ8xBkL2aj .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uZ8xBkL2aj .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uZ8xBkL2aj .navbar.opened {
  transition: all 0.3s;
}
.cid-uZ8xBkL2aj .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uZ8xBkL2aj .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-uZ8xBkL2aj .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-uZ8xBkL2aj .navbar.collapsed {
  justify-content: center;
}
.cid-uZ8xBkL2aj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZ8xBkL2aj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uZ8xBkL2aj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZ8xBkL2aj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZ8xBkL2aj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uZ8xBkL2aj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uZ8xBkL2aj .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uZ8xBkL2aj .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uZ8xBkL2aj .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uZ8xBkL2aj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZ8xBkL2aj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZ8xBkL2aj .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uZ8xBkL2aj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZ8xBkL2aj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uZ8xBkL2aj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZ8xBkL2aj .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uZ8xBkL2aj .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uZ8xBkL2aj .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uZ8xBkL2aj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uZ8xBkL2aj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZ8xBkL2aj .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uZ8xBkL2aj .navbar.navbar-short {
  min-height: 60px;
}
.cid-uZ8xBkL2aj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uZ8xBkL2aj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uZ8xBkL2aj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uZ8xBkL2aj .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uZ8xBkL2aj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZ8xBkL2aj .dropdown-item.active,
.cid-uZ8xBkL2aj .dropdown-item:active {
  background-color: transparent;
}
.cid-uZ8xBkL2aj .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
.cid-uZ8xBkL2aj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZ8xBkL2aj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZ8xBkL2aj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ8xBkL2aj ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uZ8xBkL2aj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uZ8xBkL2aj button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #6a2be9;
  background: #c6f15c;
}
.cid-uZ8xBkL2aj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uZ8xBkL2aj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uZ8xBkL2aj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ8xBkL2aj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ8xBkL2aj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uZ8xBkL2aj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ8xBkL2aj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZ8xBkL2aj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZ8xBkL2aj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ8xBkL2aj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uZ8xBkL2aj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uZ8xBkL2aj .navbar {
    height: 70px;
  }
  .cid-uZ8xBkL2aj .navbar.opened {
    height: auto;
  }
  .cid-uZ8xBkL2aj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZ8xBkL2aj .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uZ8xBkL2aj .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-uZ8xBkL2aj .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uZ8xBkL2aj .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uZ8xBkL2aj .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 120px;
  padding: 12px 24px;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-uZ8xBkL2aj .mbr-section-btn-main .btn {
    padding: 12px;
  }
}
.cid-uZ8xBkL2aj .navbar-caption:hover {
  color: #6500e0;
}
@media (min-width: 992px) {
  .cid-uZ8xBkL2aj .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uZ8xBkL2aj .text_widget {
  margin-bottom: 32px;
}
.cid-uZ8xBkL2aj .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uZ8xBkL2aj .text_widget a:hover,
.cid-uZ8xBkL2aj .text_widget a:focus {
  opacity: .8;
}
.cid-uZ8xBkL2aj .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uZ8xBkL2aj .navbar-caption {
  color: #ffffff;
}
.cid-uZ8xBkL2aj .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uZ8xBkL2aj .mbr-section-subtitle,
.cid-uZ8xBkL2aj .text_widget,
.cid-uZ8xBkL2aj .mbr-section-btn {
  text-align: center;
}
.cid-uZ8xBkL2aj a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
