body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.4rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.3rem;
}
/* ---- 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: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #9c88bc !important;
}
.bg-success {
  background-color: #cccccc !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #b2ccd2 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #9c88bc !important;
  border-color: #9c88bc !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #74599e !important;
  border-color: #74599e !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #74599e !important;
  border-color: #74599e !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #e96188 !important;
  border-color: #e96188 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #cccccc !important;
  border-color: #cccccc !important;
  color: #4d4d4d !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #4d4d4d !important;
  background-color: #a6a6a6 !important;
  border-color: #a6a6a6 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #4d4d4d !important;
  background-color: #a6a6a6 !important;
  border-color: #a6a6a6 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #68508e;
  color: #68508e !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #9c88bc;
  border-color: #9c88bc;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #9c88bc !important;
  border-color: #9c88bc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #c81c4d;
  color: #c81c4d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #e96188;
  border-color: #e96188;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #999999;
  color: #999999 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #4d4d4d !important;
  background-color: #cccccc;
  border-color: #cccccc;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #4d4d4d !important;
  background-color: #cccccc !important;
  border-color: #cccccc !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #9c88bc !important;
}
.text-secondary {
  color: #fac769 !important;
}
.text-success {
  color: #cccccc !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #b2ccd2 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #68508e !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #f5a208 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #999999 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c81c4d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5a208 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #72a1ac !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #cccccc;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #b2ccd2;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #9c88bc;
  border-color: #9c88bc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #9c88bc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e0daea;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 1.3rem;
}
blockquote {
  border-color: #9c88bc;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type='submit'] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #9c88bc;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #9c88bc;
  border-bottom-color: #9c88bc;
}
.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: #9c88bc !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: #fac769 !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%;
}
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='%239c88bc' %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;
}
.cid-sLxHxdwAN9 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #66458e;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sLxHxdwAN9 .nav-item,
.cid-sLxHxdwAN9 .nav-link,
.cid-sLxHxdwAN9 .navbar-caption {
  font-weight: normal;
}
.cid-sLxHxdwAN9 .nav-item:focus,
.cid-sLxHxdwAN9 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sLxHxdwAN9 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sLxHxdwAN9 .nav-item .nav-link {
    position: relative;
  }
  .cid-sLxHxdwAN9 .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #66458e;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sLxHxdwAN9 .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-sLxHxdwAN9 .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sLxHxdwAN9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLxHxdwAN9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLxHxdwAN9 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #66458e;
}
.cid-sLxHxdwAN9 .navbar.opened {
  transition: all .3s;
  background: #66458e !important;
}
.cid-sLxHxdwAN9 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sLxHxdwAN9 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sLxHxdwAN9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sLxHxdwAN9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sLxHxdwAN9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.6rem);
  }
}
.cid-sLxHxdwAN9 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sLxHxdwAN9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sLxHxdwAN9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sLxHxdwAN9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sLxHxdwAN9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sLxHxdwAN9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sLxHxdwAN9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sLxHxdwAN9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sLxHxdwAN9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sLxHxdwAN9 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sLxHxdwAN9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sLxHxdwAN9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sLxHxdwAN9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sLxHxdwAN9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sLxHxdwAN9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sLxHxdwAN9 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sLxHxdwAN9 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sLxHxdwAN9 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sLxHxdwAN9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sLxHxdwAN9 .navbar.navbar-short {
  background: #66458e !important;
  min-height: 60px;
}
.cid-sLxHxdwAN9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sLxHxdwAN9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sLxHxdwAN9 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sLxHxdwAN9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sLxHxdwAN9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sLxHxdwAN9 .dropdown-item.active,
.cid-sLxHxdwAN9 .dropdown-item:active {
  background-color: transparent;
}
.cid-sLxHxdwAN9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sLxHxdwAN9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sLxHxdwAN9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sLxHxdwAN9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-sLxHxdwAN9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-sLxHxdwAN9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #66458e;
}
.cid-sLxHxdwAN9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sLxHxdwAN9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLxHxdwAN9 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sLxHxdwAN9 .navbar-buttons {
  text-align: center;
}
.cid-sLxHxdwAN9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLxHxdwAN9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sLxHxdwAN9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sLxHxdwAN9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sLxHxdwAN9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sLxHxdwAN9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sLxHxdwAN9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sLxHxdwAN9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sLxHxdwAN9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sLxHxdwAN9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sLxHxdwAN9 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sLxHxdwAN9 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sLxHxdwAN9 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-sLxHxdwAN9 .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sLxHxdwAN9 .soc-item {
  margin: .5rem .3rem;
}
.cid-sLxHxdwAN9 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sLxHxdwAN9 a.nav-link,
.cid-sLxHxdwAN9 a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-sLxHxdwAN9 a.nav-link .mbr-iconfont-btn,
.cid-sLxHxdwAN9 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sLxHxdwAN9 a.nav-link:hover .mbr-iconfont-btn,
.cid-sLxHxdwAN9 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sLxHxdwAN9 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sLxHxdwAN9 .navbar {
    height: 77px;
  }
  .cid-sLxHxdwAN9 .navbar.opened {
    height: auto;
  }
  .cid-sLxHxdwAN9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tdaWEC4ufM {
  background-image: url("../../../assets/images/nilda1-2000x1336.jpg");
}
.cid-tdaWEC4ufM .mbr-overlay {
  background: #000000;
}
.cid-tdaWEC4ufM .mbr-section-title {
  letter-spacing: -1px;
  color: #fac769;
}
.cid-tdaWEC4ufM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tdaWEC4ufM .mbr-text,
.cid-tdaWEC4ufM .mbr-section-btn {
  color: #ffffff;
}
.cid-tLjfNLYbqp {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #66458e;
}
.cid-tLjfNLYbqp .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tLjfNLYbqp .mbr-section-btn,
  .cid-tLjfNLYbqp .mbr-section-subtitle,
  .cid-tLjfNLYbqp .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tLjfNLYbqp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLjfNLYbqp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLjfNLYbqp .mbr-section-title {
  color: #ffffff;
}
.cid-tLjfQ5Nr6l {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e0b16d;
}
.cid-tLj80QB30J {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #66458e;
}
.cid-tLj80QB30J .mbr-section-subtitle {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-tLj80QB30J .mbr-section-btn,
  .cid-tLj80QB30J .mbr-section-subtitle,
  .cid-tLj80QB30J .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tLj80QB30J .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLj80QB30J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLj7PIWFrg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #b2ccd2;
}
.cid-sLBnDz2xrN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #66458e;
}
@media (max-width: 767px) {
  .cid-sLBnDz2xrN .content {
    text-align: center;
  }
  .cid-sLBnDz2xrN .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sLBnDz2xrN .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sLBnDz2xrN .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sLBnDz2xrN .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sLBnDz2xrN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sLBnDz2xrN .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sLBnDz2xrN .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sLBnDz2xrN .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sLBnDz2xrN .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sLBnDz2xrN .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sLBnDz2xrN .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sLBnDz2xrN .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sLBnDz2xrN .copyright > p {
  text-align: center;
}
.cid-sLBnDz2xrN H5 {
  color: #ffffff;
}
.cid-sLxHxdwAN9 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #66458e;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sLxHxdwAN9 .nav-item,
.cid-sLxHxdwAN9 .nav-link,
.cid-sLxHxdwAN9 .navbar-caption {
  font-weight: normal;
}
.cid-sLxHxdwAN9 .nav-item:focus,
.cid-sLxHxdwAN9 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sLxHxdwAN9 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sLxHxdwAN9 .nav-item .nav-link {
    position: relative;
  }
  .cid-sLxHxdwAN9 .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #66458e;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sLxHxdwAN9 .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-sLxHxdwAN9 .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sLxHxdwAN9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLxHxdwAN9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLxHxdwAN9 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #66458e;
}
.cid-sLxHxdwAN9 .navbar.opened {
  transition: all .3s;
  background: #66458e !important;
}
.cid-sLxHxdwAN9 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sLxHxdwAN9 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sLxHxdwAN9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sLxHxdwAN9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sLxHxdwAN9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.6rem);
  }
}
.cid-sLxHxdwAN9 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sLxHxdwAN9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sLxHxdwAN9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sLxHxdwAN9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sLxHxdwAN9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sLxHxdwAN9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sLxHxdwAN9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sLxHxdwAN9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sLxHxdwAN9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sLxHxdwAN9 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sLxHxdwAN9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sLxHxdwAN9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sLxHxdwAN9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sLxHxdwAN9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sLxHxdwAN9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sLxHxdwAN9 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sLxHxdwAN9 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sLxHxdwAN9 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sLxHxdwAN9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sLxHxdwAN9 .navbar.navbar-short {
  background: #66458e !important;
  min-height: 60px;
}
.cid-sLxHxdwAN9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sLxHxdwAN9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sLxHxdwAN9 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sLxHxdwAN9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sLxHxdwAN9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sLxHxdwAN9 .dropdown-item.active,
.cid-sLxHxdwAN9 .dropdown-item:active {
  background-color: transparent;
}
.cid-sLxHxdwAN9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sLxHxdwAN9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sLxHxdwAN9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sLxHxdwAN9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-sLxHxdwAN9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-sLxHxdwAN9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #66458e;
}
.cid-sLxHxdwAN9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sLxHxdwAN9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLxHxdwAN9 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sLxHxdwAN9 .navbar-buttons {
  text-align: center;
}
.cid-sLxHxdwAN9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLxHxdwAN9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sLxHxdwAN9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sLxHxdwAN9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sLxHxdwAN9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sLxHxdwAN9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sLxHxdwAN9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sLxHxdwAN9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sLxHxdwAN9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sLxHxdwAN9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sLxHxdwAN9 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sLxHxdwAN9 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sLxHxdwAN9 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-sLxHxdwAN9 .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sLxHxdwAN9 .soc-item {
  margin: .5rem .3rem;
}
.cid-sLxHxdwAN9 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sLxHxdwAN9 a.nav-link,
.cid-sLxHxdwAN9 a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-sLxHxdwAN9 a.nav-link .mbr-iconfont-btn,
.cid-sLxHxdwAN9 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sLxHxdwAN9 a.nav-link:hover .mbr-iconfont-btn,
.cid-sLxHxdwAN9 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sLxHxdwAN9 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sLxHxdwAN9 .navbar {
    height: 77px;
  }
  .cid-sLxHxdwAN9 .navbar.opened {
    height: auto;
  }
  .cid-sLxHxdwAN9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sLyj3eghNV {
  padding-top: 150px;
  padding-bottom: 0px;
  background: #fac769;
}
.cid-sLyj3eghNV .google-map {
  height: 25rem;
  position: relative;
}
.cid-sLyj3eghNV .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sLyj3eghNV .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-sLyj3eghNV .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sLyj3eghNV .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sLBnDz2xrN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #66458e;
}
@media (max-width: 767px) {
  .cid-sLBnDz2xrN .content {
    text-align: center;
  }
  .cid-sLBnDz2xrN .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sLBnDz2xrN .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sLBnDz2xrN .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sLBnDz2xrN .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sLBnDz2xrN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sLBnDz2xrN .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sLBnDz2xrN .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sLBnDz2xrN .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sLBnDz2xrN .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sLBnDz2xrN .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sLBnDz2xrN .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sLBnDz2xrN .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sLBnDz2xrN .copyright > p {
  text-align: center;
}
.cid-sLBnDz2xrN H5 {
  color: #ffffff;
}
.cid-sLxHxdwAN9 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #66458e;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sLxHxdwAN9 .nav-item,
.cid-sLxHxdwAN9 .nav-link,
.cid-sLxHxdwAN9 .navbar-caption {
  font-weight: normal;
}
.cid-sLxHxdwAN9 .nav-item:focus,
.cid-sLxHxdwAN9 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sLxHxdwAN9 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sLxHxdwAN9 .nav-item .nav-link {
    position: relative;
  }
  .cid-sLxHxdwAN9 .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #66458e;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sLxHxdwAN9 .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-sLxHxdwAN9 .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sLxHxdwAN9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLxHxdwAN9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLxHxdwAN9 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #66458e;
}
.cid-sLxHxdwAN9 .navbar.opened {
  transition: all .3s;
  background: #66458e !important;
}
.cid-sLxHxdwAN9 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sLxHxdwAN9 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sLxHxdwAN9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sLxHxdwAN9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sLxHxdwAN9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.6rem);
  }
}
.cid-sLxHxdwAN9 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sLxHxdwAN9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sLxHxdwAN9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sLxHxdwAN9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sLxHxdwAN9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sLxHxdwAN9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sLxHxdwAN9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sLxHxdwAN9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sLxHxdwAN9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sLxHxdwAN9 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sLxHxdwAN9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sLxHxdwAN9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sLxHxdwAN9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sLxHxdwAN9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sLxHxdwAN9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sLxHxdwAN9 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sLxHxdwAN9 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sLxHxdwAN9 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sLxHxdwAN9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sLxHxdwAN9 .navbar.navbar-short {
  background: #66458e !important;
  min-height: 60px;
}
.cid-sLxHxdwAN9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sLxHxdwAN9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sLxHxdwAN9 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sLxHxdwAN9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sLxHxdwAN9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sLxHxdwAN9 .dropdown-item.active,
.cid-sLxHxdwAN9 .dropdown-item:active {
  background-color: transparent;
}
.cid-sLxHxdwAN9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sLxHxdwAN9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sLxHxdwAN9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sLxHxdwAN9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-sLxHxdwAN9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-sLxHxdwAN9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #66458e;
}
.cid-sLxHxdwAN9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sLxHxdwAN9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLxHxdwAN9 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sLxHxdwAN9 .navbar-buttons {
  text-align: center;
}
.cid-sLxHxdwAN9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLxHxdwAN9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sLxHxdwAN9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sLxHxdwAN9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sLxHxdwAN9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sLxHxdwAN9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sLxHxdwAN9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sLxHxdwAN9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sLxHxdwAN9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sLxHxdwAN9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sLxHxdwAN9 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sLxHxdwAN9 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sLxHxdwAN9 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-sLxHxdwAN9 .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sLxHxdwAN9 .soc-item {
  margin: .5rem .3rem;
}
.cid-sLxHxdwAN9 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sLxHxdwAN9 a.nav-link,
.cid-sLxHxdwAN9 a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-sLxHxdwAN9 a.nav-link .mbr-iconfont-btn,
.cid-sLxHxdwAN9 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sLxHxdwAN9 a.nav-link:hover .mbr-iconfont-btn,
.cid-sLxHxdwAN9 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sLxHxdwAN9 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sLxHxdwAN9 .navbar {
    height: 77px;
  }
  .cid-sLxHxdwAN9 .navbar.opened {
    height: auto;
  }
  .cid-sLxHxdwAN9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sLT86H68vs {
  overflow: hidden !important;
  padding-top: 120px;
  padding-bottom: 15px;
  background: linear-gradient(to right, #fac769 0%, #fac769 30%, #9c88bc 30%, #9c88bc 100%);
}
.cid-sLT86H68vs .animated-element {
  color: #66458e;
}
.cid-sLT86H68vs .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLT86H68vs .mbr-section-subtitle {
  color: #e0b16d;
}
@media (min-width: 992px) {
  .cid-sLT86H68vs .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sLT86H68vs .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-sLT86H68vs {
    background: #9c88bc;
  }
  .cid-sLT86H68vs .img-block {
    padding-bottom: 2rem;
  }
}
.cid-sLT86H68vs .mbr-section-title {
  color: #66458e;
}
.cid-sLT86H68vs .mbr-text,
.cid-sLT86H68vs .mbr-section-btn {
  color: #ffffff;
}
.cid-ulMHq78JQG {
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #9d789b;
}
.cid-ulMHq78JQG .mbr-section-subtitle {
  color: #767676;
}
.cid-ulMHq78JQG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ulMHq78JQG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ulMHq78JQG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ulMHq78JQG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ulMHq78JQG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #bcc2d8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #bcc2d8, #66458e);
}
.cid-ulMHq78JQG .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-ulMHq78JQG .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ulMHq78JQG .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-ulMHq78JQG .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ulMHq78JQG .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-ulMHq78JQG ul {
  font-size: 0;
}
.cid-ulMHq78JQG .mbr-gallery-filter ul {
  text-align: center;
}
.cid-ulMHq78JQG .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-ulMHq78JQG .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-ulMHq78JQG .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-ulMHq78JQG .mbr-gallery-filter ul li:first-child,
.cid-ulMHq78JQG .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-ulMHq78JQG .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-ulMHq78JQG .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-ulMHq78JQG .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-ulMHq78JQG .btn.active:after {
  animation: none;
}
.cid-ulMHq78JQG .btn:active {
  box-shadow: none !important;
}
.cid-ulMHq78JQG .btn:hover {
  background: transparent !important;
}
.cid-ulMHq78JQG .btn:hover:before {
  background: transparent !important;
}
.cid-ulMHq78JQG .btn:before {
  background-color: transparent !important;
}
.cid-ulMHq78JQG .btn:focus {
  box-shadow: none !important;
}
.cid-tLjjQQhddc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLjjQQhddc .mbr-section-subtitle {
  color: #66458e;
}
@media (max-width: 767px) {
  .cid-tLjjQQhddc .mbr-section-btn,
  .cid-tLjjQQhddc .mbr-section-subtitle,
  .cid-tLjjQQhddc .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tLjjQQhddc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLjjQQhddc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLjjQQhddc .mbr-section-title {
  color: #66458e;
}
.cid-sMXj7R8MPB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #232323;
}
@media (min-width: 992px) {
  .cid-sMXj7R8MPB .mbr-figure {
    padding-right: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sMXj7R8MPB .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-sMXj7R8MPB .mbr-text {
  text-align: center;
  color: #c1c1c1;
}
.cid-sMXlAAELxF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #9c88bc;
}
@media (min-width: 992px) {
  .cid-sMXlAAELxF .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sMXlAAELxF .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-sMXlAAELxF .mbr-text {
  text-align: center;
}
.cid-sMXlZNLPbf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #66458e;
}
@media (min-width: 992px) {
  .cid-sMXlZNLPbf .mbr-figure {
    padding-right: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sMXlZNLPbf .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-sMXlZNLPbf .mbr-text {
  text-align: center;
}
.cid-sMXm8Qfya3 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #9c88bc;
}
@media (min-width: 992px) {
  .cid-sMXm8Qfya3 .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sMXm8Qfya3 .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-sMXm8Qfya3 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-sLBnDz2xrN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #66458e;
}
@media (max-width: 767px) {
  .cid-sLBnDz2xrN .content {
    text-align: center;
  }
  .cid-sLBnDz2xrN .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sLBnDz2xrN .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sLBnDz2xrN .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sLBnDz2xrN .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sLBnDz2xrN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sLBnDz2xrN .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sLBnDz2xrN .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sLBnDz2xrN .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sLBnDz2xrN .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sLBnDz2xrN .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sLBnDz2xrN .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sLBnDz2xrN .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sLBnDz2xrN .copyright > p {
  text-align: center;
}
.cid-sLBnDz2xrN H5 {
  color: #ffffff;
}
.cid-sLxHxdwAN9 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #66458e;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sLxHxdwAN9 .nav-item,
.cid-sLxHxdwAN9 .nav-link,
.cid-sLxHxdwAN9 .navbar-caption {
  font-weight: normal;
}
.cid-sLxHxdwAN9 .nav-item:focus,
.cid-sLxHxdwAN9 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sLxHxdwAN9 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sLxHxdwAN9 .nav-item .nav-link {
    position: relative;
  }
  .cid-sLxHxdwAN9 .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #66458e;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sLxHxdwAN9 .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-sLxHxdwAN9 .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLxHxdwAN9 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sLxHxdwAN9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLxHxdwAN9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLxHxdwAN9 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #66458e;
}
.cid-sLxHxdwAN9 .navbar.opened {
  transition: all .3s;
  background: #66458e !important;
}
.cid-sLxHxdwAN9 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sLxHxdwAN9 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sLxHxdwAN9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sLxHxdwAN9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sLxHxdwAN9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4.6rem);
  }
}
.cid-sLxHxdwAN9 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sLxHxdwAN9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sLxHxdwAN9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sLxHxdwAN9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sLxHxdwAN9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sLxHxdwAN9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sLxHxdwAN9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sLxHxdwAN9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sLxHxdwAN9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sLxHxdwAN9 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sLxHxdwAN9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sLxHxdwAN9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sLxHxdwAN9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sLxHxdwAN9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sLxHxdwAN9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sLxHxdwAN9 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sLxHxdwAN9 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sLxHxdwAN9 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sLxHxdwAN9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sLxHxdwAN9 .navbar.navbar-short {
  background: #66458e !important;
  min-height: 60px;
}
.cid-sLxHxdwAN9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sLxHxdwAN9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sLxHxdwAN9 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sLxHxdwAN9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sLxHxdwAN9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sLxHxdwAN9 .dropdown-item.active,
.cid-sLxHxdwAN9 .dropdown-item:active {
  background-color: transparent;
}
.cid-sLxHxdwAN9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sLxHxdwAN9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sLxHxdwAN9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sLxHxdwAN9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-sLxHxdwAN9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-sLxHxdwAN9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #66458e;
}
.cid-sLxHxdwAN9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sLxHxdwAN9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLxHxdwAN9 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sLxHxdwAN9 .navbar-buttons {
  text-align: center;
}
.cid-sLxHxdwAN9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLxHxdwAN9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sLxHxdwAN9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sLxHxdwAN9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sLxHxdwAN9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sLxHxdwAN9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sLxHxdwAN9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sLxHxdwAN9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sLxHxdwAN9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sLxHxdwAN9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sLxHxdwAN9 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sLxHxdwAN9 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sLxHxdwAN9 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-sLxHxdwAN9 .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sLxHxdwAN9 .soc-item {
  margin: .5rem .3rem;
}
.cid-sLxHxdwAN9 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sLxHxdwAN9 a.nav-link,
.cid-sLxHxdwAN9 a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-sLxHxdwAN9 a.nav-link .mbr-iconfont-btn,
.cid-sLxHxdwAN9 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sLxHxdwAN9 a.nav-link:hover .mbr-iconfont-btn,
.cid-sLxHxdwAN9 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sLxHxdwAN9 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sLxHxdwAN9 .navbar {
    height: 77px;
  }
  .cid-sLxHxdwAN9 .navbar.opened {
    height: auto;
  }
  .cid-sLxHxdwAN9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-teX2p2YWSi {
  overflow: hidden !important;
  background: linear-gradient(to right, #e0b16d 0%, #e0b16d 30%, #9c88bc 30%, #9c88bc 100%);
}
.cid-teX2p2YWSi .animated-element {
  color: #efefef;
}
.cid-teX2p2YWSi .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-teX2p2YWSi .mbr-section-subtitle {
  color: #9c88bc;
}
@media (min-width: 992px) {
  .cid-teX2p2YWSi .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-teX2p2YWSi .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-teX2p2YWSi {
    background: #9c88bc;
  }
  .cid-teX2p2YWSi .img-block {
    padding-bottom: 2rem;
  }
}
.cid-sLZdPwSHh2 {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #9c88bc;
}
.cid-sLZdPwSHh2 .mbr-section-subtitle {
  color: #e0b16d;
}
.cid-sLZcTatODu {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #66458e;
  background: linear-gradient(90deg, #66458e, #66458e);
}
.cid-sLZcTatODu .container-fluid {
  padding: 0 3rem;
}
.cid-sLZcTatODu .table-wrap {
  margin: 0 1rem 3rem 1rem;
  border: 1px solid #fac769;
  border-radius: 3%;
  padding: 3rem;
  transition: all 0.3s ease-in-out;
}
.cid-sLZcTatODu .table-wrap:hover {
  transition: all 0.3s ease-in-out;
  background-color: #e0b16d;
}
.cid-sLZcTatODu .table-wrap:hover .table-pricing,
.cid-sLZcTatODu .table-wrap:hover .table-icon {
  color: #000000 !important;
}
.cid-sLZcTatODu .table-wrap:hover .table-heading,
.cid-sLZcTatODu .table-wrap:hover .mbr-section-subtitle {
  color: #000000 !important;
}
.cid-sLZcTatODu .section-heading {
  margin-bottom: 2rem;
}
.cid-sLZcTatODu .table-heading {
  margin-bottom: 2em;
}
.cid-sLZcTatODu .underline {
  margin-top: 1rem;
  margin-bottom: 0rem;
}
.cid-sLZcTatODu .underline .line {
  width: 6rem;
  height: 3px;
  background: linear-gradient(135deg, #9c88bc, #fac769);
  display: inline-block;
}
.cid-sLZcTatODu ul {
  word-wrap: break-word;
  padding: 0 4rem;
  margin: 0;
  list-style: none;
}
.cid-sLZcTatODu ul li {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  padding: 0.7em 0;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.cid-sLZcTatODu ul li span {
  font-size: 32px;
  color: #000000;
}
.cid-sLZcTatODu hr {
  display: none;
  background: #fac769;
}
.cid-sLZcTatODu hr {
  display: block;
}
.cid-sLZcTatODu .table-heading,
.cid-sLZcTatODu .table-pricing,
.cid-sLZcTatODu .table-icon {
  color: #a38dfd;
  text-align: left;
  transition: all 0.3s ease-in-out;
}
.cid-sLZcTatODu .mbr-section-subtitle {
  color: #767676;
  transition: all 0.3s ease-in-out;
}
.cid-sLZcTatODu .mbr-section-btn {
  padding-top: 1rem;
}
.cid-sLZcTatODu .mbr-iconfont {
  font-size: 50px;
}
@media (max-width: 1200px) {
  .cid-sLZcTatODu .table-wrap {
    margin: 1.5rem 0 0 0;
  }
}
@media (max-width: 767px) {
  .cid-sLZcTatODu .container-fluid {
    padding: 0 0rem;
  }
}
.cid-sLZcTatODu .mbr-section-subtitle,
.cid-sLZcTatODu .mbr-section-btn {
  color: #000000;
}
.cid-sLZcTatODu .table-pricing,
.cid-sLZcTatODu .table-icon {
  color: #ffffff;
}
.cid-sLZcUzjuZA {
  padding-top: 15px;
  padding-bottom: 30px;
  background: #66458e;
  background: linear-gradient(90deg, #66458e, #66458e);
}
.cid-sLZcUzjuZA .container-fluid {
  padding: 0 3rem;
}
.cid-sLZcUzjuZA .table-wrap {
  margin: 0 1rem 3rem 1rem;
  border: 1px solid #fac769;
  border-radius: 3%;
  padding: 3rem;
  transition: all 0.3s ease-in-out;
}
.cid-sLZcUzjuZA .table-wrap:hover {
  transition: all 0.3s ease-in-out;
  background-color: #e0b16d;
}
.cid-sLZcUzjuZA .table-wrap:hover .table-pricing,
.cid-sLZcUzjuZA .table-wrap:hover .table-icon {
  color: #000000 !important;
}
.cid-sLZcUzjuZA .table-wrap:hover .table-heading,
.cid-sLZcUzjuZA .table-wrap:hover .mbr-section-subtitle {
  color: #000000 !important;
}
.cid-sLZcUzjuZA .section-heading {
  margin-bottom: 2rem;
}
.cid-sLZcUzjuZA .table-heading {
  margin-bottom: 2em;
}
.cid-sLZcUzjuZA .underline {
  margin-top: 1rem;
  margin-bottom: 0rem;
}
.cid-sLZcUzjuZA .underline .line {
  width: 6rem;
  height: 3px;
  background: linear-gradient(135deg, #9c88bc, #fac769);
  display: inline-block;
}
.cid-sLZcUzjuZA ul {
  word-wrap: break-word;
  padding: 0 4rem;
  margin: 0;
  list-style: none;
}
.cid-sLZcUzjuZA ul li {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  padding: 0.7em 0;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.cid-sLZcUzjuZA ul li span {
  font-size: 32px;
  color: #000000;
}
.cid-sLZcUzjuZA hr {
  display: none;
  background: #fac769;
}
.cid-sLZcUzjuZA hr {
  display: block;
}
.cid-sLZcUzjuZA .table-heading,
.cid-sLZcUzjuZA .table-pricing,
.cid-sLZcUzjuZA .table-icon {
  color: #a38dfd;
  text-align: left;
  transition: all 0.3s ease-in-out;
}
.cid-sLZcUzjuZA .mbr-section-subtitle {
  color: #767676;
  transition: all 0.3s ease-in-out;
}
.cid-sLZcUzjuZA .mbr-section-btn {
  padding-top: 1rem;
}
.cid-sLZcUzjuZA .mbr-iconfont {
  font-size: 50px;
}
@media (max-width: 1200px) {
  .cid-sLZcUzjuZA .table-wrap {
    margin: 1.5rem 0 0 0;
  }
}
@media (max-width: 767px) {
  .cid-sLZcUzjuZA .container-fluid {
    padding: 0 0rem;
  }
}
.cid-sLZcUzjuZA .mbr-section-subtitle,
.cid-sLZcUzjuZA .mbr-section-btn {
  color: #000000;
}
.cid-sLZcUzjuZA .table-pricing,
.cid-sLZcUzjuZA .table-icon {
  color: #ffffff;
}
.cid-sLZd1fZWKD {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #9c88bc;
}
.cid-sLZd1fZWKD .plan-body .btn-bgr {
  z-index: 0;
}
.cid-sLZd1fZWKD .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-sLZd1fZWKD .list-group-item {
  padding: .75rem 0rem;
}
.cid-sLZd1fZWKD .plan-subtitle {
  color: #cccccc;
}
.cid-sLZd1fZWKD .mbr-text {
  margin: 10px 0 0 0;
  color: #cccccc;
}
.cid-sLZd1fZWKD .price-term .term {
  display: inline-block;
  background: #9c88bc;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-sLZd1fZWKD .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-sLZd1fZWKD .plan .mbr-overlay {
  background: #66458e;
  opacity: 0.9;
}
.cid-sLZd1fZWKD .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}
.cid-sLZd1fZWKD .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-sLZd1fZWKD .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-sLZd1fZWKD .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eaeaea;
}
.cid-sLZd1fZWKD .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-sLZd1fZWKD .plan .plan-body {
  position: relative;
  border-top: 1px solid #eaeaea;
}
@media (max-width: 992px) {
  .cid-sLZd1fZWKD .plan {
    margin-bottom: 30px;
  }
}
.cid-sLZd1fZWKD .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-sLZd1fZWKD .price-figure {
    font-size: 4.25rem;
  }
}
.cid-ubdWqafNbt {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-ubdWqafNbt .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ubdWqafNbt .card .card-wrapper {
  background: #ffffff;
  height: 1%;
}
.cid-ubdWqafNbt .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-ubdWqafNbt .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-ubdWqafNbt .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-ubdWqafNbt .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-ubdWqafNbt .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-ubdWqafNbt .mbr-card-text {
  margin: 0;
}
.cid-ubdWqafNbt .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubdWqafNbt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sLBnDz2xrN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #66458e;
}
@media (max-width: 767px) {
  .cid-sLBnDz2xrN .content {
    text-align: center;
  }
  .cid-sLBnDz2xrN .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sLBnDz2xrN .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sLBnDz2xrN .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sLBnDz2xrN .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sLBnDz2xrN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sLBnDz2xrN .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sLBnDz2xrN .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sLBnDz2xrN .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sLBnDz2xrN .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sLBnDz2xrN .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sLBnDz2xrN .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sLBnDz2xrN .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sLBnDz2xrN .copyright > p {
  text-align: center;
}
.cid-sLBnDz2xrN H5 {
  color: #ffffff;
}
