body {
  font-family: Sora;
}
.display-1 {
  font-family: 'Viaoda Libre', display;
  font-size: 4.625rem;
  line-height: 1.075;
  letter-spacing: .15px;
}
.display-1 > .mbr-iconfont {
  font-size: 5.78125rem;
}
.display-2 {
  font-family: 'Viaoda Libre', display;
  font-size: 3.125rem;
  line-height: 1.075;
  letter-spacing: .46px;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  line-height: 2;
  letter-spacing: .37px;
}
.display-4 > .mbr-iconfont {
  font-size: 1.125rem;
}
.display-5 {
  font-family: 'Viaoda Libre', display;
  font-size: 1.875rem;
  line-height: 1.375;
  letter-spacing: .09px;
}
.display-5 > .mbr-iconfont {
  font-size: 2.34375rem;
}
.display-7 {
  font-family: 'Sora', sans-serif;
  font-size: 1.31rem;
  line-height: 1.5;
  letter-spacing: .37px;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6375rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.7rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.2375rem;
    font-size: calc( 2.26875rem + (4.625 - 2.26875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26875rem + (4.625 - 2.26875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.5rem;
    font-size: calc( 1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.048rem;
    font-size: calc( 1.1085rem + (1.31 - 1.1085) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.1085rem + (1.31 - 1.1085) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 14px 40px;
  border-radius: 0;
}
.btn-sm {
  padding: 12px 31px;
  border-radius: 0;
}
.btn-md {
  padding: 14px 40px;
  border-radius: 0;
}
.btn-lg {
  padding: 14px 40px;
  border-radius: 0;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #272727 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #aa20cc !important;
}
.bg-danger {
  background-color: #1b1b1b !important;
}
.btn-primary,
.btn-primary:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #f7bd50;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  border-color: #f7bd50 !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before,
.btn-primary.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #f7bd50 !important;
  border-color: #f7bd50 !important;
}
.btn-secondary,
.btn-secondary:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #f7bd50 !important;
  border-color: #f7bd50 !important;
  color: #ffffff !important;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #ffffff;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #808080 !important;
  border-color: #ffffff !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before,
.btn-secondary.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info,
.btn-info:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #f7bd50;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  border-color: #f7bd50 !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before,
.btn-info.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #f7bd50 !important;
  border-color: #f7bd50 !important;
}
.btn-success,
.btn-success:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #272727 !important;
  border-color: #272727 !important;
  color: #ffffff !important;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #ffffff;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #808080 !important;
  border-color: #ffffff !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before,
.btn-success.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning,
.btn-warning:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #aa20cc !important;
  border-color: #aa20cc !important;
  color: #ffffff !important;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #272727;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  border-color: #272727 !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before,
.btn-warning.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #272727 !important;
  border-color: #272727 !important;
}
.btn-danger,
.btn-danger:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #1b1b1b !important;
  border-color: #1b1b1b !important;
  color: #ffffff !important;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #272727;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  border-color: #272727 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before,
.btn-danger.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #272727 !important;
  border-color: #272727 !important;
}
.btn-white,
.btn-white:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #cac8bc;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #ffffff !important;
  border-color: #cac8bc !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before,
.btn-white.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #cac8bc !important;
  border-color: #cac8bc !important;
}
.btn-black,
.btn-black:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #282727 !important;
  border-color: #282727 !important;
  color: #ffffff !important;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #000000;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before,
.btn-black.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn[class*="outline"] {
  border: 0;
  border-bottom: 1px solid;
  padding: 0 0 4px 0;
}
.btn[class*="outline"].btn-lg {
  padding: 0 0 5px 0;
}
.btn-primary-outline {
  border-color: #ffffff;
  color: #ffffff;
  background-color: transparent;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #f7bd50;
  color: #f7bd50;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  background-color: transparent !important;
  color: #f0a00b;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f7bd50 !important;
  border-color: #f7bd50 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  background-color: transparent !important;
  color: #d9d9d9;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #272727;
  color: #272727;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  background-color: transparent !important;
  color: #010101;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #272727 !important;
  border-color: #272727 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #aa20cc;
  color: #aa20cc;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  background-color: transparent !important;
  color: #73168a;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #aa20cc !important;
  border-color: #aa20cc !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #1b1b1b;
  color: #1b1b1b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  background-color: transparent !important;
  color: #000000;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #1b1b1b !important;
  border-color: #1b1b1b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #282727;
  color: #282727;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  background-color: transparent !important;
  color: #010101;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #282727 !important;
  border-color: #282727 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  background-color: transparent !important;
  color: #d4d4d4;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #f7bd50 !important;
}
.text-success {
  color: #272727 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #aa20cc !important;
}
.text-danger {
  color: #1b1b1b !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #282727 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #d7900a !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #611274 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
.nav-tabs .nav-link.active {
  color: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #282727;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #aa20cc;
}
.alert-danger {
  background-color: #1b1b1b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #dadada;
}
.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: #ebc2f6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #cdcdcd;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  line-height: 2;
  letter-spacing: .37px;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.125rem;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  line-height: 2;
  letter-spacing: .37px;
  font-weight: 400;
  color: #ef8e81 !important;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.125rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.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: #ffffff;
  border-bottom-color: #ffffff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffffff !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: #f7bd50 !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='%23ffffff' %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-se3MVcevFk .nav-item:focus,
.cid-se3MVcevFk .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-se3MVcevFk .nav-item {
    position: relative;
  }
}
.cid-se3MVcevFk .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-se3MVcevFk .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
  background: linear-gradient(#5b3478, #ffffff);
}
.cid-se3MVcevFk .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
  background: linear-gradient(#5b3478, #ffffff) !important;
}
.cid-se3MVcevFk .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-se3MVcevFk .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-se3MVcevFk .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-se3MVcevFk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-se3MVcevFk .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se3MVcevFk .navbar.collapsed .navbar-collapse.show,
.cid-se3MVcevFk .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-se3MVcevFk .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-se3MVcevFk .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-se3MVcevFk .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-se3MVcevFk .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-se3MVcevFk .navbar.collapsed .right-menu,
.cid-se3MVcevFk .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-se3MVcevFk .navbar .navbar-collapse.show,
  .cid-se3MVcevFk .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-se3MVcevFk .navbar .navbar-collapse.show .brand-container,
  .cid-se3MVcevFk .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-se3MVcevFk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-se3MVcevFk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-se3MVcevFk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-se3MVcevFk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-se3MVcevFk .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-se3MVcevFk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-se3MVcevFk .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-se3MVcevFk .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-se3MVcevFk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-se3MVcevFk .navbar .right-menu,
  .cid-se3MVcevFk .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-se3MVcevFk .navbar.navbar-short {
  min-height: 60px;
}
.cid-se3MVcevFk .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#5b3478, #ffffff) !important;
}
.cid-se3MVcevFk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-se3MVcevFk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-se3MVcevFk .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-se3MVcevFk .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-se3MVcevFk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-se3MVcevFk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-se3MVcevFk .dropdown-item.active,
.cid-se3MVcevFk .dropdown-item:active {
  background-color: transparent;
}
.cid-se3MVcevFk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-se3MVcevFk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-se3MVcevFk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-se3MVcevFk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-se3MVcevFk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-se3MVcevFk ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-se3MVcevFk ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-se3MVcevFk .navbar-buttons {
  margin-left: auto;
}
.cid-se3MVcevFk button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-se3MVcevFk button.navbar-toggler:hover {
  outline: none;
}
.cid-se3MVcevFk button.navbar-toggler:active {
  outline: none;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-se3MVcevFk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se3MVcevFk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-se3MVcevFk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-se3MVcevFk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se3MVcevFk a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-se3MVcevFk a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-se3MVcevFk a.nav-link:hover:before {
  transform: scale(1);
}
.cid-se3MVcevFk .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-se3MVcevFk .right-menu,
.cid-se3MVcevFk .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-se3MVcevFk .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se3MVcevFk .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se3MVcevFk .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-se3MVcevFk .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-se3MVcevFk .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-se3MVcevFk .card-wrapper {
  z-index: 3;
}
.cid-se3MVcevFk .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-se3MVcevFk .navbar-collapse {
    padding-top: 0;
  }
}
.cid-se3MVcevFk .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-se3MVcevFk .navbar-brand img {
  width: auto !important;
}
.cid-tyHVFq2dAf {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tyHVFq2dAf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyHVFq2dAf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tyHVFq2dAf .container {
    padding: 0 30px;
  }
}
.cid-tyHVFq2dAf .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tyHVFq2dAf .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tM7cTAddi2 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tM7cTAddi2 .row {
    text-align: center;
  }
}
.cid-tM7cTAddi2 .section-head {
  margin-bottom: 2.3rem;
}
.cid-tM7cTAddi2 .paragraph {
  margin-bottom: 2rem;
}
.cid-tM7cTAddi2 .mbr-text {
  text-align: center;
}
.cid-tM7cTAddi2 .mbr-section-title {
  text-align: right;
}
.cid-tyI8y9UEvC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tyI8y9UEvC .mbr-text,
.cid-tyI8y9UEvC .mbr-section-btn {
  color: #bbbbbb;
}
.cid-tyI8y9UEvC img {
  border-radius: 1rem;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tyI8y9UEvC .btn-col {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .cid-tyI8y9UEvC .btn-col {
    text-align: center;
  }
}
.cid-tyI8y9UEvC .wrapper {
  display: flex;
  background: white;
  padding: 1rem 2rem;
  width: 90%;
  flex-wrap: wrap;
  margin: auto;
  margin-top: -3rem;
  z-index: 4;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tyI8y9UEvC .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tyI8y9UEvC .mbr-section-title {
  color: #31363b;
  text-align: right;
}
.cid-tyI8y9UEvC .mbr-section-subtitle {
  color: #ffffff;
  text-align: right;
}
@media (min-width: 992px) {
  .cid-tyI8y9UEvC .col-lg-2 {
    flex: 0 0 20%;
    max-width: 20%;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
}
.cid-tLAMj3z8ID {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tLAMj3z8ID .row {
    text-align: center;
  }
}
.cid-tLAMj3z8ID .section-head {
  margin-bottom: 2.3rem;
}
.cid-tLAMj3z8ID .paragraph {
  margin-bottom: 2rem;
}
.cid-tLAMj3z8ID .mbr-text {
  text-align: center;
}
.cid-tLAMj3z8ID .mbr-section-title {
  text-align: center;
  color: #7b4c5d;
}
.cid-tJb8AmYeOX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tJb8AmYeOX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tJb8AmYeOX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJb8AmYeOX .carousel-inner {
  position: relative;
  width: 100%;
  overflow: visible !important;
}
.cid-tJb8AmYeOX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tJb8AmYeOX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tJb8AmYeOX .row > .row {
  display: block;
}
.cid-tJb8AmYeOX .mbr-gallery-item {
  width: 100%;
}
.cid-tJb8AmYeOX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #8a4b98;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
  border-radius: 30px;
}
.cid-tJb8AmYeOX .mbr-gallery-item > div {
  position: relative;
  transition: 0.5s;
  margin: 0.3rem;
  border-radius: 30px;
  overflow: hidden;
}
.cid-tJb8AmYeOX .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tJb8AmYeOX .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tJb8AmYeOX .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #ffffff;
  z-index: 2;
}
.cid-tJb8AmYeOX .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #8a4b98 !important;
  opacity: 0.7;
  transition: 0.2s background ease-in-out;
  border-radius: 0 0 30px 30px;
}
.cid-tJb8AmYeOX .container {
  max-width: 1200px;
  padding: 0.7rem;
}
.cid-tJb8AmYeOX .mbr-gallery-item > div:hover {
  transform: translate(1rem, 1rem);
}
@media (max-width: 767px) {
  .cid-tJb8AmYeOX {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .cid-tJb8AmYeOX .col-sm-12 {
    padding: 0 !important;
  }
}
.cid-uZ4acftWLa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uZ4acftWLa .mbr-section-head {
  margin-bottom: 50px;
}
.cid-uZ4acftWLa .mbr-section-title {
  color: #3c075e;
  text-align: center;
}
.cid-uZ4acftWLa .mbr-section-subtitle {
  color: #303030;
  margin-top: 10px;
}
.cid-uZ4acftWLa .embla {
  position: relative;
  width: 100%;
}
.cid-uZ4acftWLa .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uZ4acftWLa .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uZ4acftWLa .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uZ4acftWLa .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uZ4acftWLa .embla__slide {
  position: relative;
  display: flex;
  justify-content: center;
  min-width: calc(100vw / 3 - 60px);
  width: calc(100vw / 3 - 60px);
  margin: 0 30px;
}
@media (max-width: 991px) {
  .cid-uZ4acftWLa .embla__slide {
    min-width: 50%;
    width: 50%;
  }
}
@media (max-width: 768px) {
  .cid-uZ4acftWLa .embla__slide {
    min-width: 100%;
    width: 100%;
  }
}
.cid-uZ4acftWLa .item:focus,
.cid-uZ4acftWLa span:focus {
  outline: none;
}
.cid-uZ4acftWLa .slide-content {
  position: relative;
  border-radius: 0;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uZ4acftWLa .item-img {
  width: 100%;
}
.cid-uZ4acftWLa .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: calc(408 / (114 * 3));
}
.cid-uZ4acftWLa .embla__button--next,
.cid-uZ4acftWLa .embla__button--prev {
  display: flex;
}
.cid-uZ4acftWLa .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(155, 141, 183, 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;
  display: none;
}
@media (max-width: 768px) {
  .cid-uZ4acftWLa .embla__button {
    display: none;
  }
}
.cid-uZ4acftWLa .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uZ4acftWLa .embla__button:hover {
  background: #9b8db7;
  color: #FFFFFF;
}
.cid-uZ4acftWLa .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ4acftWLa .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uZ4acftWLa .embla__button {
    top: auto;
  }
}
.cid-uZ4f0OCxAE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uZ4f0OCxAE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uZ4f0OCxAE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ4f0OCxAE .carousel-inner {
  position: relative;
  width: 100%;
  overflow: visible !important;
}
.cid-uZ4f0OCxAE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ4f0OCxAE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uZ4f0OCxAE .row > .row {
  display: block;
}
.cid-uZ4f0OCxAE .mbr-gallery-item {
  width: 100%;
}
.cid-uZ4f0OCxAE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #8a4b98;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
  border-radius: 30px;
}
.cid-uZ4f0OCxAE .mbr-gallery-item > div {
  position: relative;
  transition: 0.5s;
  margin: 0.3rem;
  border-radius: 30px;
  overflow: hidden;
}
.cid-uZ4f0OCxAE .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uZ4f0OCxAE .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uZ4f0OCxAE .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #ffffff;
  z-index: 2;
}
.cid-uZ4f0OCxAE .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #8a4b98 !important;
  opacity: 0.7;
  transition: 0.2s background ease-in-out;
  border-radius: 0 0 30px 30px;
}
.cid-uZ4f0OCxAE .container {
  max-width: 1200px;
  padding: 0.7rem;
}
.cid-uZ4f0OCxAE .mbr-gallery-item > div:hover {
  transform: translate(1rem, 1rem);
}
@media (max-width: 767px) {
  .cid-uZ4f0OCxAE {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .cid-uZ4f0OCxAE .col-sm-12 {
    padding: 0 !important;
  }
}
.cid-uZsDYIR6U3 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uZsDYIR6U3 img,
.cid-uZsDYIR6U3 .item-img {
  width: 100%;
}
.cid-uZsDYIR6U3 .item-img {
  margin-bottom: 30px;
}
.cid-uZsDYIR6U3 .mbr-section-head h5 {
  margin-bottom: 30px;
}
.cid-uZsDYIR6U3 .item-content {
  padding: 0;
}
.cid-uZsDYIR6U3 .item:focus,
.cid-uZsDYIR6U3 span:focus {
  outline: none;
}
.cid-uZsDYIR6U3 .item {
  cursor: pointer;
  margin-bottom: 30px;
}
.cid-uZsDYIR6U3 .item:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .cid-uZsDYIR6U3 .item:nth-child(2n+1):nth-last-child(2) {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-uZsDYIR6U3 .item:nth-child(3n+1):nth-last-child(3),
  .cid-uZsDYIR6U3 .item:nth-child(3n+2):nth-last-child(2) {
    margin-bottom: 0;
  }
}
.cid-uZsDYIR6U3 .mb-6 {
  margin-bottom: 60px;
}
.cid-uZsDYIR6U3 .list-item-header {
  margin-bottom: 10px;
}
.cid-uZsDYIR6U3 .list-block:not(:last-child) {
  margin-bottom: 30px;
}
.cid-uZsDYIR6U3 .item-wrapper {
  background-color: transparent;
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uZsDYIR6U3 .mbr-section-title {
  color: #ebc6b8;
  text-align: center;
}
.cid-uZsDYIR6U3 .mbr-text {
  text-align: left;
  margin: 0;
  padding: 0;
}
.cid-uZsDYIR6U3 LI {
  color: #4479d9;
}
.cid-uZsDYIR6U3 p {
  margin: 0;
}
.cid-uZsDYIR6U3 .list-group .list-item {
  color: #9fdbf8;
}
.cid-uZsDYIR6U3 .list-group .list-item-header {
  color: #e9ddd8;
  text-align: left;
}
.cid-uZsDYIR6U3 .list-group .list-item,
.cid-uZsDYIR6U3 .line {
  color: #ffffff;
}
.cid-uZsDYIR6U3 .mbr-section-subtitle {
  color: #5c1060;
  text-align: center;
}
.cid-uZsDYIR6U3 .page-subtitle {
  color: #ebc6b8;
}
.cid-uZsDYIR6U3 .item-title {
  color: #aa20cc;
  text-align: center;
}
.cid-uZsDYIR6U3 .item-subtitle {
  text-align: left;
  min-height: 35px;
}
.cid-tLrGBY7N8Q {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-tLrGBY7N8Q .carousel {
  height: 800px;
}
.cid-tLrGBY7N8Q .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tLrGBY7N8Q .carousel-item,
.cid-tLrGBY7N8Q .carousel-inner {
  height: 100%;
}
.cid-tLrGBY7N8Q .mbr-overlay {
  z-index: 1;
}
.cid-tLrGBY7N8Q .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 20%;
  overflow: hidden;
  bottom: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 50px;
}
@media (max-width: 767px) {
  .cid-tLrGBY7N8Q .carousel-caption {
    height: 34%;
  }
}
.cid-tLrGBY7N8Q .carousel-control {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
  top: calc(50% + 20%/2 + 1rem);
  transform: translateY(-50%);
  left: 0;
  margin-left: 50px;
  color: #c17b71;
  opacity: 1;
}
.cid-tLrGBY7N8Q .carousel-control.carousel-control-next {
  margin-left: 100px;
}
.cid-tLrGBY7N8Q .carousel-control > span {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-tLrGBY7N8Q .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tLrGBY7N8Q .carousel-control:hover {
  opacity: 0.6;
}
.cid-tLrGBY7N8Q .item-wrapper {
  width: 100%;
}
.cid-tLrGBY7N8Q .mbr-section-subtitle,
.cid-tLrGBY7N8Q .slider-subtitle {
  margin-bottom: 30px;
}
.cid-tLrGBY7N8Q .caption-text {
  margin-bottom: 20.4px;
}
@media (max-width: 767px) {
  .cid-tLrGBY7N8Q .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tLrGBY7N8Q .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tLrGBY7N8Q .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tLrGBY7N8Q .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tLrGBY7N8Q .carousel-indicators li.active,
.cid-tLrGBY7N8Q .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tLrGBY7N8Q .carousel-indicators li::after,
.cid-tLrGBY7N8Q .carousel-indicators li::before {
  content: none;
}
.cid-tLrGBY7N8Q .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tLrGBY7N8Q .carousel-indicators {
    display: none !important;
  }
}
.cid-tLrGBY7N8Q H5 {
  color: #e9ddd8;
}
.cid-tLrGBY7N8Q .mbr-section-subtitle {
  color: #ebc6b8;
}
.cid-tLrGBY7N8Q P {
  color: #ffffff;
}
.cid-uZsL3FQSat {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/block-414x238.png");
}
.cid-uZsL3FQSat input {
  padding: 1.2rem 1.5rem;
  border: none !important;
  height: 100%;
}
.cid-uZsL3FQSat input:hover {
  border: none !important;
}
.cid-uZsL3FQSat .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZsL3FQSat .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZsL3FQSat .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uZsL3FQSat .number {
  color: #f7bd50;
  white-space: nowrap;
}
.cid-uZsL3FQSat .row {
  justify-content: center;
}
.cid-uZsL3FQSat .period {
  display: block;
}
.cid-uZsL3FQSat .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uZsL3FQSat .period {
    font-size: 0.8rem;
  }
}
.cid-uZsL3FQSat .btn {
  height: 100%;
  margin: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.cid-uZsL3FQSat .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: fit-content;
}
.cid-uZsL3FQSat .mbr-section-btn .btn {
  width: auto;
}
.cid-uZsL3FQSat .justify-content-center {
  align-items: center;
}
.cid-uZsL3FQSat .mbr-section-title {
  color: #f7bd50;
}
.cid-uZsL3FQSat .mbr-section-subtitle,
.cid-uZsL3FQSat .mbr-text {
  color: #ffffff;
}
.cid-se3MVcevFk .nav-item:focus,
.cid-se3MVcevFk .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-se3MVcevFk .nav-item {
    position: relative;
  }
}
.cid-se3MVcevFk .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-se3MVcevFk .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
  background: linear-gradient(#5b3478, #ffffff);
}
.cid-se3MVcevFk .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
  background: linear-gradient(#5b3478, #ffffff) !important;
}
.cid-se3MVcevFk .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-se3MVcevFk .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-se3MVcevFk .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-se3MVcevFk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-se3MVcevFk .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se3MVcevFk .navbar.collapsed .navbar-collapse.show,
.cid-se3MVcevFk .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-se3MVcevFk .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-se3MVcevFk .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-se3MVcevFk .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-se3MVcevFk .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-se3MVcevFk .navbar.collapsed .right-menu,
.cid-se3MVcevFk .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-se3MVcevFk .navbar .navbar-collapse.show,
  .cid-se3MVcevFk .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-se3MVcevFk .navbar .navbar-collapse.show .brand-container,
  .cid-se3MVcevFk .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-se3MVcevFk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-se3MVcevFk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-se3MVcevFk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-se3MVcevFk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-se3MVcevFk .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-se3MVcevFk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-se3MVcevFk .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-se3MVcevFk .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-se3MVcevFk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-se3MVcevFk .navbar .right-menu,
  .cid-se3MVcevFk .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-se3MVcevFk .navbar.navbar-short {
  min-height: 60px;
}
.cid-se3MVcevFk .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#5b3478, #ffffff) !important;
}
.cid-se3MVcevFk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-se3MVcevFk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-se3MVcevFk .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-se3MVcevFk .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-se3MVcevFk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-se3MVcevFk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-se3MVcevFk .dropdown-item.active,
.cid-se3MVcevFk .dropdown-item:active {
  background-color: transparent;
}
.cid-se3MVcevFk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-se3MVcevFk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-se3MVcevFk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-se3MVcevFk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-se3MVcevFk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-se3MVcevFk ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-se3MVcevFk ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-se3MVcevFk .navbar-buttons {
  margin-left: auto;
}
.cid-se3MVcevFk button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-se3MVcevFk button.navbar-toggler:hover {
  outline: none;
}
.cid-se3MVcevFk button.navbar-toggler:active {
  outline: none;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-se3MVcevFk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se3MVcevFk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-se3MVcevFk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-se3MVcevFk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se3MVcevFk a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-se3MVcevFk a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-se3MVcevFk a.nav-link:hover:before {
  transform: scale(1);
}
.cid-se3MVcevFk .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-se3MVcevFk .right-menu,
.cid-se3MVcevFk .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-se3MVcevFk .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se3MVcevFk .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se3MVcevFk .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-se3MVcevFk .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-se3MVcevFk .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-se3MVcevFk .card-wrapper {
  z-index: 3;
}
.cid-se3MVcevFk .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-se3MVcevFk .navbar-collapse {
    padding-top: 0;
  }
}
.cid-se3MVcevFk .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-se3MVcevFk .navbar-brand img {
  width: auto !important;
}
.cid-tDBPmG4C8z {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDBPmG4C8z .mbr-text,
.cid-tDBPmG4C8z .mbr-section-btn {
  color: #bbbbbb;
}
.cid-tDBPmG4C8z img {
  border-radius: 1rem;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tDBPmG4C8z .btn-col {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .cid-tDBPmG4C8z .btn-col {
    text-align: center;
  }
}
.cid-tDBPmG4C8z .wrapper {
  display: flex;
  background: white;
  padding: 1rem 2rem;
  width: 90%;
  flex-wrap: wrap;
  margin: auto;
  margin-top: -3rem;
  z-index: 4;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tDBPmG4C8z .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tDBPmG4C8z .mbr-section-title {
  color: #31363b;
  text-align: right;
}
.cid-tDBPmG4C8z .mbr-section-subtitle {
  color: #5b3478;
  text-align: right;
}
@media (min-width: 992px) {
  .cid-tDBPmG4C8z .col-lg-2 {
    flex: 0 0 20%;
    max-width: 20%;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
}
.cid-tzmnmCXhBB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzmnmCXhBB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzmnmCXhBB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzmnmCXhBB .row {
  justify-content: flex-start;
}
.cid-tzmnmCXhBB .mbr-section-title {
  color: #3c075e;
  text-align: center;
}
.cid-tzmnmCXhBB .mbr-text {
  margin-top: 36px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-tzmnmCXhBB .mbr-text {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-tzmnmCXhBB .mbr-text {
    margin-top: 20px;
  }
}
.cid-tzmnmCXhBB .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tzmnmCXhBB .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-tzmnmCXhBB .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-tzmnmCXhBB .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-tzmnmCXhBB .mbr-text,
.cid-tzmnmCXhBB .mbr-section-btn {
  color: #282727;
}
.cid-uZ6fUZN8l4 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  position: relative;
  background-color: #ffffff;
}
.cid-uZ6fUZN8l4 .mark_text {
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: #202020;
}
.cid-uZ6fUZN8l4 .mbr-section-title {
  margin-bottom: 18px;
  color: #ffffff;
}
.cid-uZ6fUZN8l4 .head_title {
  margin: 25px 0 58px;
  text-align: center;
}
.cid-uZ6fUZN8l4 .mbr-text {
  color: #ffffff;
}
.cid-uZ6fUZN8l4 .card_title {
  color: #5c1060;
  line-height: 1.2727em;
  margin-bottom: 0;
}
.cid-uZ6fUZN8l4 .card_content {
  margin: 26px 0 23px;
}
.cid-uZ6fUZN8l4 img,
.cid-uZ6fUZN8l4 .item-img {
  width: 100%;
  object-fit: cover;
  height: 400px;
}
.cid-uZ6fUZN8l4 .item {
  margin-bottom: 30px;
}
.cid-uZ6fUZN8l4 .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: visible;
}
.cid-uZ6fUZN8l4 .card_text {
  color: #ffffff;
  margin-top: 4px;
}
.cid-uZ6fUZN8l4 .item-img {
  position: relative;
}
.cid-uZ6fUZN8l4 .item-img .mbr-section-btn {
  position: absolute;
  margin-left: 3px;
  top: 53%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  opacity: 0;
  transition: opacity 0.2s ease-out, top 0.2s ease-out;
  transform: translate(-50%, -50%);
}
.cid-uZ6fUZN8l4 .item-img:hover .mbr-section-btn {
  top: 50%;
  opacity: 1;
}
.cid-tLshsa4AxP {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tLshsa4AxP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLshsa4AxP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLshsa4AxP .row {
  justify-content: flex-start;
}
.cid-tLshsa4AxP .mbr-section-title {
  color: #3c075e;
}
.cid-tLshsa4AxP .mbr-text {
  margin-top: 36px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-tLshsa4AxP .mbr-text {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-tLshsa4AxP .mbr-text {
    margin-top: 20px;
  }
}
.cid-tLshsa4AxP .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tLshsa4AxP .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-tLshsa4AxP .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-tLshsa4AxP .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-tLshsa4AxP .mbr-text,
.cid-tLshsa4AxP .mbr-section-btn {
  color: #282727;
}
.cid-tLrONgn9Tg {
  padding-top: 0;
  padding-bottom: 0;
}
.cid-tLrONgn9Tg .carousel {
  width: 100%;
}
.cid-tLrONgn9Tg .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-tLrONgn9Tg .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-tLrONgn9Tg .mbr-overlay {
  z-index: 1;
}
.cid-tLrONgn9Tg .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 20%;
  overflow: hidden;
  bottom: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 50px;
}
@media (max-width: 767px) {
  .cid-tLrONgn9Tg .carousel-caption {
    height: 34%;
  }
}
.cid-tLrONgn9Tg .carousel-control {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
  top: calc(50% + 20%/2 + 1rem);
  transform: translateY(-50%);
  left: 0;
  margin-left: 50px;
  color: #c17b71;
  opacity: 1;
}
.cid-tLrONgn9Tg .carousel-control.carousel-control-next {
  margin-left: 100px;
}
.cid-tLrONgn9Tg .carousel-control > span {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-tLrONgn9Tg .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tLrONgn9Tg .carousel-control:hover {
  opacity: 0.6;
}
.cid-tLrONgn9Tg .item-wrapper {
  width: 100%;
}
.cid-tLrONgn9Tg .mbr-section-subtitle,
.cid-tLrONgn9Tg .slider-subtitle {
  margin-bottom: 30px;
}
.cid-tLrONgn9Tg .caption-text {
  margin-bottom: 20.4px;
}
@media (max-width: 767px) {
  .cid-tLrONgn9Tg .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tLrONgn9Tg .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tLrONgn9Tg .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tLrONgn9Tg .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tLrONgn9Tg .carousel-indicators li.active,
.cid-tLrONgn9Tg .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tLrONgn9Tg .carousel-indicators li::after,
.cid-tLrONgn9Tg .carousel-indicators li::before {
  content: none;
}
.cid-tLrONgn9Tg .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tLrONgn9Tg .carousel-indicators {
    display: none !important;
  }
}
.cid-tLrONgn9Tg H5 {
  color: #e9ddd8;
}
.cid-tLrONgn9Tg .mbr-section-subtitle {
  color: #ebc6b8;
}
.cid-tLrONgn9Tg P {
  color: #ffffff;
}
.cid-tLAVvk9ODD .nav-item:focus,
.cid-tLAVvk9ODD .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tLAVvk9ODD .nav-item {
    position: relative;
  }
}
.cid-tLAVvk9ODD .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-tLAVvk9ODD .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
  background: linear-gradient(#5b3478, #ffffff);
}
.cid-tLAVvk9ODD .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
  background: linear-gradient(#5b3478, #ffffff) !important;
}
.cid-tLAVvk9ODD .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-tLAVvk9ODD .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-tLAVvk9ODD .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tLAVvk9ODD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tLAVvk9ODD .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tLAVvk9ODD .navbar.collapsed .navbar-collapse.show,
.cid-tLAVvk9ODD .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tLAVvk9ODD .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tLAVvk9ODD .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tLAVvk9ODD .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLAVvk9ODD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLAVvk9ODD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLAVvk9ODD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLAVvk9ODD .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-tLAVvk9ODD .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tLAVvk9ODD .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-tLAVvk9ODD .navbar.collapsed .right-menu,
.cid-tLAVvk9ODD .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tLAVvk9ODD .navbar .navbar-collapse.show,
  .cid-tLAVvk9ODD .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-tLAVvk9ODD .navbar .navbar-collapse.show .brand-container,
  .cid-tLAVvk9ODD .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tLAVvk9ODD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLAVvk9ODD .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLAVvk9ODD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLAVvk9ODD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLAVvk9ODD .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-tLAVvk9ODD .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLAVvk9ODD .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-tLAVvk9ODD .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tLAVvk9ODD .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-tLAVvk9ODD .navbar .right-menu,
  .cid-tLAVvk9ODD .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tLAVvk9ODD .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLAVvk9ODD .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#5b3478, #ffffff) !important;
}
.cid-tLAVvk9ODD .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLAVvk9ODD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tLAVvk9ODD .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-tLAVvk9ODD .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tLAVvk9ODD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLAVvk9ODD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLAVvk9ODD .dropdown-item.active,
.cid-tLAVvk9ODD .dropdown-item:active {
  background-color: transparent;
}
.cid-tLAVvk9ODD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLAVvk9ODD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-tLAVvk9ODD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLAVvk9ODD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLAVvk9ODD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLAVvk9ODD ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tLAVvk9ODD ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tLAVvk9ODD .navbar-buttons {
  margin-left: auto;
}
.cid-tLAVvk9ODD button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-tLAVvk9ODD button.navbar-toggler:hover {
  outline: none;
}
.cid-tLAVvk9ODD button.navbar-toggler:active {
  outline: none;
}
.cid-tLAVvk9ODD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tLAVvk9ODD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLAVvk9ODD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLAVvk9ODD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLAVvk9ODD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLAVvk9ODD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLAVvk9ODD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-tLAVvk9ODD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-tLAVvk9ODD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLAVvk9ODD a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-tLAVvk9ODD a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-tLAVvk9ODD a.nav-link:hover:before {
  transform: scale(1);
}
.cid-tLAVvk9ODD .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tLAVvk9ODD .right-menu,
.cid-tLAVvk9ODD .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tLAVvk9ODD .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tLAVvk9ODD .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tLAVvk9ODD .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tLAVvk9ODD .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tLAVvk9ODD .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tLAVvk9ODD .card-wrapper {
  z-index: 3;
}
.cid-tLAVvk9ODD .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tLAVvk9ODD .navbar-collapse {
    padding-top: 0;
  }
}
.cid-tLAVvk9ODD .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-tLAVvk9ODD .navbar-brand img {
  width: auto !important;
}
.cid-tLAVvlA5hg {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLAVvlA5hg .mbr-text,
.cid-tLAVvlA5hg .mbr-section-btn {
  color: #bbbbbb;
}
.cid-tLAVvlA5hg img {
  border-radius: 1rem;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tLAVvlA5hg .btn-col {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .cid-tLAVvlA5hg .btn-col {
    text-align: center;
  }
}
.cid-tLAVvlA5hg .wrapper {
  display: flex;
  background: white;
  padding: 1rem 2rem;
  width: 90%;
  flex-wrap: wrap;
  margin: auto;
  margin-top: -3rem;
  z-index: 4;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tLAVvlA5hg .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tLAVvlA5hg .mbr-section-title {
  color: #31363b;
  text-align: right;
}
.cid-tLAVvlA5hg .mbr-section-subtitle {
  color: #5b3478;
  text-align: right;
}
@media (min-width: 992px) {
  .cid-tLAVvlA5hg .col-lg-2 {
    flex: 0 0 20%;
    max-width: 20%;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
}
.cid-tM0ucg5fwE {
  padding-top: 75px;
  padding-bottom: 150px;
  background-color: #ffffff;
}
.cid-tM0ucg5fwE .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tM0ucg5fwE H4 {
  color: #8a4b98;
  text-align: center;
}
.cid-tLAVvnmwDx {
  padding-top: 0;
  padding-bottom: 0;
}
.cid-tLAVvnmwDx .carousel {
  width: 100%;
}
.cid-tLAVvnmwDx .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-tLAVvnmwDx .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-tLAVvnmwDx .mbr-overlay {
  z-index: 1;
}
.cid-tLAVvnmwDx .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 20%;
  overflow: hidden;
  bottom: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 50px;
}
@media (max-width: 767px) {
  .cid-tLAVvnmwDx .carousel-caption {
    height: 34%;
  }
}
.cid-tLAVvnmwDx .carousel-control {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
  top: calc(50% + 20%/2 + 1rem);
  transform: translateY(-50%);
  left: 0;
  margin-left: 50px;
  color: #c17b71;
  opacity: 1;
}
.cid-tLAVvnmwDx .carousel-control.carousel-control-next {
  margin-left: 100px;
}
.cid-tLAVvnmwDx .carousel-control > span {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-tLAVvnmwDx .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tLAVvnmwDx .carousel-control:hover {
  opacity: 0.6;
}
.cid-tLAVvnmwDx .item-wrapper {
  width: 100%;
}
.cid-tLAVvnmwDx .mbr-section-subtitle,
.cid-tLAVvnmwDx .slider-subtitle {
  margin-bottom: 30px;
}
.cid-tLAVvnmwDx .caption-text {
  margin-bottom: 20.4px;
}
@media (max-width: 767px) {
  .cid-tLAVvnmwDx .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tLAVvnmwDx .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tLAVvnmwDx .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tLAVvnmwDx .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tLAVvnmwDx .carousel-indicators li.active,
.cid-tLAVvnmwDx .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tLAVvnmwDx .carousel-indicators li::after,
.cid-tLAVvnmwDx .carousel-indicators li::before {
  content: none;
}
.cid-tLAVvnmwDx .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tLAVvnmwDx .carousel-indicators {
    display: none !important;
  }
}
.cid-tLAVvnmwDx H5 {
  color: #e9ddd8;
}
.cid-tLAVvnmwDx .mbr-section-subtitle {
  color: #ebc6b8;
}
.cid-tLAVvnmwDx P {
  color: #ffffff;
}
.cid-tHj183Dc7E .nav-item:focus,
.cid-tHj183Dc7E .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tHj183Dc7E .nav-item {
    position: relative;
  }
}
.cid-tHj183Dc7E .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-tHj183Dc7E .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
  background: linear-gradient(#5b3478, #ffffff);
}
.cid-tHj183Dc7E .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
  background: linear-gradient(#5b3478, #ffffff) !important;
}
.cid-tHj183Dc7E .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-tHj183Dc7E .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-tHj183Dc7E .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tHj183Dc7E .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tHj183Dc7E .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHj183Dc7E .navbar.collapsed .navbar-collapse.show,
.cid-tHj183Dc7E .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tHj183Dc7E .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tHj183Dc7E .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tHj183Dc7E .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tHj183Dc7E .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tHj183Dc7E .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tHj183Dc7E .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tHj183Dc7E .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-tHj183Dc7E .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tHj183Dc7E .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-tHj183Dc7E .navbar.collapsed .right-menu,
.cid-tHj183Dc7E .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tHj183Dc7E .navbar .navbar-collapse.show,
  .cid-tHj183Dc7E .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-tHj183Dc7E .navbar .navbar-collapse.show .brand-container,
  .cid-tHj183Dc7E .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tHj183Dc7E .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tHj183Dc7E .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tHj183Dc7E .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tHj183Dc7E .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tHj183Dc7E .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-tHj183Dc7E .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tHj183Dc7E .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-tHj183Dc7E .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tHj183Dc7E .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-tHj183Dc7E .navbar .right-menu,
  .cid-tHj183Dc7E .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tHj183Dc7E .navbar.navbar-short {
  min-height: 60px;
}
.cid-tHj183Dc7E .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#5b3478, #ffffff) !important;
}
.cid-tHj183Dc7E .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tHj183Dc7E .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tHj183Dc7E .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-tHj183Dc7E .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tHj183Dc7E .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tHj183Dc7E .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tHj183Dc7E .dropdown-item.active,
.cid-tHj183Dc7E .dropdown-item:active {
  background-color: transparent;
}
.cid-tHj183Dc7E .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tHj183Dc7E .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-tHj183Dc7E .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tHj183Dc7E .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tHj183Dc7E .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHj183Dc7E ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tHj183Dc7E ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tHj183Dc7E .navbar-buttons {
  margin-left: auto;
}
.cid-tHj183Dc7E button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-tHj183Dc7E button.navbar-toggler:hover {
  outline: none;
}
.cid-tHj183Dc7E button.navbar-toggler:active {
  outline: none;
}
.cid-tHj183Dc7E button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tHj183Dc7E button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tHj183Dc7E button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tHj183Dc7E button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tHj183Dc7E button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tHj183Dc7E nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tHj183Dc7E nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-tHj183Dc7E nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-tHj183Dc7E nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tHj183Dc7E a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-tHj183Dc7E a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-tHj183Dc7E a.nav-link:hover:before {
  transform: scale(1);
}
.cid-tHj183Dc7E .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tHj183Dc7E .right-menu,
.cid-tHj183Dc7E .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tHj183Dc7E .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHj183Dc7E .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHj183Dc7E .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tHj183Dc7E .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tHj183Dc7E .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tHj183Dc7E .card-wrapper {
  z-index: 3;
}
.cid-tHj183Dc7E .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tHj183Dc7E .navbar-collapse {
    padding-top: 0;
  }
}
.cid-tHj183Dc7E .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-tHj183Dc7E .navbar-brand img {
  width: auto !important;
}
.cid-tHj184tRLN {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tHj184tRLN .mbr-section-head {
  margin-bottom: 50px;
}
.cid-tHj184tRLN .mbr-section-title {
  color: #3c075e;
  text-align: center;
}
.cid-tHj184tRLN .mbr-section-subtitle {
  color: #303030;
  margin-top: 10px;
}
.cid-tHj184tRLN .embla {
  position: relative;
  width: 100%;
}
.cid-tHj184tRLN .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tHj184tRLN .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tHj184tRLN .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tHj184tRLN .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tHj184tRLN .embla__slide {
  position: relative;
  display: flex;
  justify-content: center;
  min-width: calc(100vw / 3 - 60px);
  width: calc(100vw / 3 - 60px);
  margin: 0 30px;
  border: 1px solid #eaeaea;
}
@media (max-width: 991px) {
  .cid-tHj184tRLN .embla__slide {
    min-width: 50%;
    width: 50%;
  }
}
@media (max-width: 768px) {
  .cid-tHj184tRLN .embla__slide {
    min-width: 100%;
    width: 100%;
  }
}
.cid-tHj184tRLN .item:focus,
.cid-tHj184tRLN span:focus {
  outline: none;
}
.cid-tHj184tRLN .slide-content {
  position: relative;
  border-radius: 0;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tHj184tRLN .item-img {
  width: 100%;
}
.cid-tHj184tRLN .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: calc(408 / (114 * 5));
}
.cid-tHj184tRLN .embla__button--next,
.cid-tHj184tRLN .embla__button--prev {
  display: flex;
}
.cid-tHj184tRLN .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(155, 141, 183, 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;
  display: none;
}
@media (max-width: 768px) {
  .cid-tHj184tRLN .embla__button {
    display: none;
  }
}
.cid-tHj184tRLN .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tHj184tRLN .embla__button:hover {
  background: #9b8db7;
  color: #FFFFFF;
}
.cid-tHj184tRLN .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tHj184tRLN .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tHj184tRLN .embla__button {
    top: auto;
  }
}
.cid-uYZwIIBAGF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uYZwIIBAGF .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uYZwIIBAGF .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uYZwIIBAGF .carousel-inner {
  position: relative;
  width: 100%;
  overflow: visible !important;
}
.cid-uYZwIIBAGF .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uYZwIIBAGF .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uYZwIIBAGF .row > .row {
  display: block;
}
.cid-uYZwIIBAGF .mbr-gallery-item {
  width: 100%;
}
.cid-uYZwIIBAGF .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #8a4b98;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
  border-radius: 30px;
}
.cid-uYZwIIBAGF .mbr-gallery-item > div {
  position: relative;
  transition: 0.5s;
  margin: 0.3rem;
  border-radius: 30px;
  overflow: hidden;
}
.cid-uYZwIIBAGF .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uYZwIIBAGF .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uYZwIIBAGF .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #ffffff;
  z-index: 2;
}
.cid-uYZwIIBAGF .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #8a4b98 !important;
  opacity: 0.7;
  transition: 0.2s background ease-in-out;
  border-radius: 0 0 30px 30px;
}
.cid-uYZwIIBAGF .container {
  max-width: 1200px;
  padding: 0.7rem;
}
.cid-uYZwIIBAGF .mbr-gallery-item > div:hover {
  transform: translate(1rem, 1rem);
}
@media (max-width: 767px) {
  .cid-uYZwIIBAGF {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .cid-uYZwIIBAGF .col-sm-12 {
    padding: 0 !important;
  }
}
.cid-uYZwM0Uspe {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uYZwM0Uspe .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uYZwM0Uspe .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uYZwM0Uspe .carousel-inner {
  position: relative;
  width: 100%;
  overflow: visible !important;
}
.cid-uYZwM0Uspe .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uYZwM0Uspe .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uYZwM0Uspe .row > .row {
  display: block;
}
.cid-uYZwM0Uspe .mbr-gallery-item {
  width: 100%;
}
.cid-uYZwM0Uspe .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #8a4b98;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
  border-radius: 30px;
}
.cid-uYZwM0Uspe .mbr-gallery-item > div {
  position: relative;
  transition: 0.5s;
  margin: 0.3rem;
  border-radius: 30px;
  overflow: hidden;
}
.cid-uYZwM0Uspe .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uYZwM0Uspe .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uYZwM0Uspe .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #ffffff;
  z-index: 2;
}
.cid-uYZwM0Uspe .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #8a4b98 !important;
  opacity: 0.7;
  transition: 0.2s background ease-in-out;
  border-radius: 0 0 30px 30px;
}
.cid-uYZwM0Uspe .container {
  max-width: 1200px;
  padding: 0.7rem;
}
.cid-uYZwM0Uspe .mbr-gallery-item > div:hover {
  transform: translate(1rem, 1rem);
}
@media (max-width: 767px) {
  .cid-uYZwM0Uspe {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .cid-uYZwM0Uspe .col-sm-12 {
    padding: 0 !important;
  }
}
.cid-tLZBN8xgUX {
  padding-top: 0;
  padding-bottom: 0;
}
.cid-tLZBN8xgUX .carousel {
  width: 100%;
}
.cid-tLZBN8xgUX .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-tLZBN8xgUX .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-tLZBN8xgUX .mbr-overlay {
  z-index: 1;
}
.cid-tLZBN8xgUX .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 20%;
  overflow: hidden;
  bottom: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 50px;
}
@media (max-width: 767px) {
  .cid-tLZBN8xgUX .carousel-caption {
    height: 34%;
  }
}
.cid-tLZBN8xgUX .carousel-control {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
  top: calc(50% + 20%/2 + 1rem);
  transform: translateY(-50%);
  left: 0;
  margin-left: 50px;
  color: #c17b71;
  opacity: 1;
}
.cid-tLZBN8xgUX .carousel-control.carousel-control-next {
  margin-left: 100px;
}
.cid-tLZBN8xgUX .carousel-control > span {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-tLZBN8xgUX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tLZBN8xgUX .carousel-control:hover {
  opacity: 0.6;
}
.cid-tLZBN8xgUX .item-wrapper {
  width: 100%;
}
.cid-tLZBN8xgUX .mbr-section-subtitle,
.cid-tLZBN8xgUX .slider-subtitle {
  margin-bottom: 30px;
}
.cid-tLZBN8xgUX .caption-text {
  margin-bottom: 20.4px;
}
@media (max-width: 767px) {
  .cid-tLZBN8xgUX .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tLZBN8xgUX .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tLZBN8xgUX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tLZBN8xgUX .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tLZBN8xgUX .carousel-indicators li.active,
.cid-tLZBN8xgUX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tLZBN8xgUX .carousel-indicators li::after,
.cid-tLZBN8xgUX .carousel-indicators li::before {
  content: none;
}
.cid-tLZBN8xgUX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tLZBN8xgUX .carousel-indicators {
    display: none !important;
  }
}
.cid-tLZBN8xgUX H5 {
  color: #e9ddd8;
}
.cid-tLZBN8xgUX .mbr-section-subtitle {
  color: #ebc6b8;
}
.cid-tLZBN8xgUX P {
  color: #ffffff;
}
.cid-tH86qEQJ4w .nav-item:focus,
.cid-tH86qEQJ4w .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tH86qEQJ4w .nav-item {
    position: relative;
  }
}
.cid-tH86qEQJ4w .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-tH86qEQJ4w .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
  background: linear-gradient(#5b3478, #ffffff);
}
.cid-tH86qEQJ4w .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
  background: linear-gradient(#5b3478, #ffffff) !important;
}
.cid-tH86qEQJ4w .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-tH86qEQJ4w .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-tH86qEQJ4w .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tH86qEQJ4w .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tH86qEQJ4w .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tH86qEQJ4w .navbar.collapsed .navbar-collapse.show,
.cid-tH86qEQJ4w .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tH86qEQJ4w .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tH86qEQJ4w .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tH86qEQJ4w .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tH86qEQJ4w .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tH86qEQJ4w .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tH86qEQJ4w .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tH86qEQJ4w .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-tH86qEQJ4w .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tH86qEQJ4w .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-tH86qEQJ4w .navbar.collapsed .right-menu,
.cid-tH86qEQJ4w .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tH86qEQJ4w .navbar .navbar-collapse.show,
  .cid-tH86qEQJ4w .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-tH86qEQJ4w .navbar .navbar-collapse.show .brand-container,
  .cid-tH86qEQJ4w .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tH86qEQJ4w .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tH86qEQJ4w .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tH86qEQJ4w .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tH86qEQJ4w .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tH86qEQJ4w .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-tH86qEQJ4w .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tH86qEQJ4w .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-tH86qEQJ4w .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tH86qEQJ4w .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-tH86qEQJ4w .navbar .right-menu,
  .cid-tH86qEQJ4w .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tH86qEQJ4w .navbar.navbar-short {
  min-height: 60px;
}
.cid-tH86qEQJ4w .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#5b3478, #ffffff) !important;
}
.cid-tH86qEQJ4w .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tH86qEQJ4w .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tH86qEQJ4w .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-tH86qEQJ4w .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tH86qEQJ4w .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tH86qEQJ4w .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tH86qEQJ4w .dropdown-item.active,
.cid-tH86qEQJ4w .dropdown-item:active {
  background-color: transparent;
}
.cid-tH86qEQJ4w .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tH86qEQJ4w .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-tH86qEQJ4w .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tH86qEQJ4w .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tH86qEQJ4w .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tH86qEQJ4w ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tH86qEQJ4w ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tH86qEQJ4w .navbar-buttons {
  margin-left: auto;
}
.cid-tH86qEQJ4w button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-tH86qEQJ4w button.navbar-toggler:hover {
  outline: none;
}
.cid-tH86qEQJ4w button.navbar-toggler:active {
  outline: none;
}
.cid-tH86qEQJ4w button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tH86qEQJ4w button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tH86qEQJ4w button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tH86qEQJ4w button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tH86qEQJ4w button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tH86qEQJ4w nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tH86qEQJ4w nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-tH86qEQJ4w nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-tH86qEQJ4w nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tH86qEQJ4w a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-tH86qEQJ4w a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-tH86qEQJ4w a.nav-link:hover:before {
  transform: scale(1);
}
.cid-tH86qEQJ4w .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tH86qEQJ4w .right-menu,
.cid-tH86qEQJ4w .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tH86qEQJ4w .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tH86qEQJ4w .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tH86qEQJ4w .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tH86qEQJ4w .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tH86qEQJ4w .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tH86qEQJ4w .card-wrapper {
  z-index: 3;
}
.cid-tH86qEQJ4w .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tH86qEQJ4w .navbar-collapse {
    padding-top: 0;
  }
}
.cid-tH86qEQJ4w .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-tH86qEQJ4w .navbar-brand img {
  width: auto !important;
}
.cid-tH86qFk0e2 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tH86qFk0e2 .mbr-section-head {
  margin-bottom: 50px;
}
.cid-tH86qFk0e2 .mbr-section-title {
  color: #3c075e;
  text-align: center;
}
.cid-tH86qFk0e2 .mbr-section-subtitle {
  color: #303030;
  margin-top: 10px;
}
.cid-tH86qFk0e2 .embla {
  position: relative;
  width: 100%;
}
.cid-tH86qFk0e2 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tH86qFk0e2 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tH86qFk0e2 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tH86qFk0e2 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tH86qFk0e2 .embla__slide {
  position: relative;
  display: flex;
  justify-content: center;
  min-width: calc(100vw / 3 - 60px);
  width: calc(100vw / 3 - 60px);
  margin: 0 30px;
  border: 1px solid #eaeaea;
}
@media (max-width: 991px) {
  .cid-tH86qFk0e2 .embla__slide {
    min-width: 50%;
    width: 50%;
  }
}
@media (max-width: 768px) {
  .cid-tH86qFk0e2 .embla__slide {
    min-width: 100%;
    width: 100%;
  }
}
.cid-tH86qFk0e2 .item:focus,
.cid-tH86qFk0e2 span:focus {
  outline: none;
}
.cid-tH86qFk0e2 .slide-content {
  position: relative;
  border-radius: 0;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tH86qFk0e2 .item-img {
  width: 100%;
}
.cid-tH86qFk0e2 .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: calc(408 / (114 * 5));
}
.cid-tH86qFk0e2 .embla__button--next,
.cid-tH86qFk0e2 .embla__button--prev {
  display: flex;
}
.cid-tH86qFk0e2 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(155, 141, 183, 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;
  display: none;
}
@media (max-width: 768px) {
  .cid-tH86qFk0e2 .embla__button {
    display: none;
  }
}
.cid-tH86qFk0e2 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tH86qFk0e2 .embla__button:hover {
  background: #9b8db7;
  color: #FFFFFF;
}
.cid-tH86qFk0e2 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tH86qFk0e2 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tH86qFk0e2 .embla__button {
    top: auto;
  }
}
.cid-uZ46StjfVx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uZ46StjfVx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uZ46StjfVx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ46StjfVx .carousel-inner {
  position: relative;
  width: 100%;
  overflow: visible !important;
}
.cid-uZ46StjfVx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ46StjfVx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uZ46StjfVx .row > .row {
  display: block;
}
.cid-uZ46StjfVx .mbr-gallery-item {
  width: 100%;
}
.cid-uZ46StjfVx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #8a4b98;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
  border-radius: 30px;
}
.cid-uZ46StjfVx .mbr-gallery-item > div {
  position: relative;
  transition: 0.5s;
  margin: 0.3rem;
  border-radius: 30px;
  overflow: hidden;
}
.cid-uZ46StjfVx .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uZ46StjfVx .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uZ46StjfVx .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #ffffff;
  z-index: 2;
}
.cid-uZ46StjfVx .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #8a4b98 !important;
  opacity: 0.7;
  transition: 0.2s background ease-in-out;
  border-radius: 0 0 30px 30px;
}
.cid-uZ46StjfVx .container {
  max-width: 1200px;
  padding: 0.7rem;
}
.cid-uZ46StjfVx .mbr-gallery-item > div:hover {
  transform: translate(1rem, 1rem);
}
@media (max-width: 767px) {
  .cid-uZ46StjfVx {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .cid-uZ46StjfVx .col-sm-12 {
    padding: 0 !important;
  }
}
.cid-uZ46Ts6wdX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uZ46Ts6wdX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uZ46Ts6wdX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ46Ts6wdX .carousel-inner {
  position: relative;
  width: 100%;
  overflow: visible !important;
}
.cid-uZ46Ts6wdX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ46Ts6wdX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uZ46Ts6wdX .row > .row {
  display: block;
}
.cid-uZ46Ts6wdX .mbr-gallery-item {
  width: 100%;
}
.cid-uZ46Ts6wdX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #8a4b98;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
  border-radius: 30px;
}
.cid-uZ46Ts6wdX .mbr-gallery-item > div {
  position: relative;
  transition: 0.5s;
  margin: 0.3rem;
  border-radius: 30px;
  overflow: hidden;
}
.cid-uZ46Ts6wdX .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uZ46Ts6wdX .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uZ46Ts6wdX .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #ffffff;
  z-index: 2;
}
.cid-uZ46Ts6wdX .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #8a4b98 !important;
  opacity: 0.7;
  transition: 0.2s background ease-in-out;
  border-radius: 0 0 30px 30px;
}
.cid-uZ46Ts6wdX .container {
  max-width: 1200px;
  padding: 0.7rem;
}
.cid-uZ46Ts6wdX .mbr-gallery-item > div:hover {
  transform: translate(1rem, 1rem);
}
@media (max-width: 767px) {
  .cid-uZ46Ts6wdX {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .cid-uZ46Ts6wdX .col-sm-12 {
    padding: 0 !important;
  }
}
.cid-tLZAPjuXkZ {
  padding-top: 0;
  padding-bottom: 0;
}
.cid-tLZAPjuXkZ .carousel {
  width: 100%;
}
.cid-tLZAPjuXkZ .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-tLZAPjuXkZ .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-tLZAPjuXkZ .mbr-overlay {
  z-index: 1;
}
.cid-tLZAPjuXkZ .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 20%;
  overflow: hidden;
  bottom: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 50px;
}
@media (max-width: 767px) {
  .cid-tLZAPjuXkZ .carousel-caption {
    height: 34%;
  }
}
.cid-tLZAPjuXkZ .carousel-control {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
  top: calc(50% + 20%/2 + 1rem);
  transform: translateY(-50%);
  left: 0;
  margin-left: 50px;
  color: #c17b71;
  opacity: 1;
}
.cid-tLZAPjuXkZ .carousel-control.carousel-control-next {
  margin-left: 100px;
}
.cid-tLZAPjuXkZ .carousel-control > span {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-tLZAPjuXkZ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tLZAPjuXkZ .carousel-control:hover {
  opacity: 0.6;
}
.cid-tLZAPjuXkZ .item-wrapper {
  width: 100%;
}
.cid-tLZAPjuXkZ .mbr-section-subtitle,
.cid-tLZAPjuXkZ .slider-subtitle {
  margin-bottom: 30px;
}
.cid-tLZAPjuXkZ .caption-text {
  margin-bottom: 20.4px;
}
@media (max-width: 767px) {
  .cid-tLZAPjuXkZ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tLZAPjuXkZ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tLZAPjuXkZ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tLZAPjuXkZ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tLZAPjuXkZ .carousel-indicators li.active,
.cid-tLZAPjuXkZ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tLZAPjuXkZ .carousel-indicators li::after,
.cid-tLZAPjuXkZ .carousel-indicators li::before {
  content: none;
}
.cid-tLZAPjuXkZ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tLZAPjuXkZ .carousel-indicators {
    display: none !important;
  }
}
.cid-tLZAPjuXkZ H5 {
  color: #e9ddd8;
}
.cid-tLZAPjuXkZ .mbr-section-subtitle {
  color: #ebc6b8;
}
.cid-tLZAPjuXkZ P {
  color: #ffffff;
}
.cid-uZ3YbXPT8B .nav-item:focus,
.cid-uZ3YbXPT8B .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uZ3YbXPT8B .nav-item {
    position: relative;
  }
}
.cid-uZ3YbXPT8B .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uZ3YbXPT8B .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
  background: linear-gradient(#5b3478, #ffffff);
}
.cid-uZ3YbXPT8B .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
  background: linear-gradient(#5b3478, #ffffff) !important;
}
.cid-uZ3YbXPT8B .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uZ3YbXPT8B .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-uZ3YbXPT8B .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uZ3YbXPT8B .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uZ3YbXPT8B .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uZ3YbXPT8B .navbar.collapsed .navbar-collapse.show,
.cid-uZ3YbXPT8B .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uZ3YbXPT8B .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uZ3YbXPT8B .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uZ3YbXPT8B .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uZ3YbXPT8B .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZ3YbXPT8B .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZ3YbXPT8B .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uZ3YbXPT8B .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-uZ3YbXPT8B .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uZ3YbXPT8B .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-uZ3YbXPT8B .navbar.collapsed .right-menu,
.cid-uZ3YbXPT8B .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uZ3YbXPT8B .navbar .navbar-collapse.show,
  .cid-uZ3YbXPT8B .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-uZ3YbXPT8B .navbar .navbar-collapse.show .brand-container,
  .cid-uZ3YbXPT8B .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uZ3YbXPT8B .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZ3YbXPT8B .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uZ3YbXPT8B .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZ3YbXPT8B .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uZ3YbXPT8B .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-uZ3YbXPT8B .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uZ3YbXPT8B .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-uZ3YbXPT8B .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uZ3YbXPT8B .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uZ3YbXPT8B .navbar .right-menu,
  .cid-uZ3YbXPT8B .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uZ3YbXPT8B .navbar.navbar-short {
  min-height: 60px;
}
.cid-uZ3YbXPT8B .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#5b3478, #ffffff) !important;
}
.cid-uZ3YbXPT8B .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uZ3YbXPT8B .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uZ3YbXPT8B .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-uZ3YbXPT8B .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uZ3YbXPT8B .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uZ3YbXPT8B .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZ3YbXPT8B .dropdown-item.active,
.cid-uZ3YbXPT8B .dropdown-item:active {
  background-color: transparent;
}
.cid-uZ3YbXPT8B .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uZ3YbXPT8B .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-uZ3YbXPT8B .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uZ3YbXPT8B .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZ3YbXPT8B .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ3YbXPT8B ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uZ3YbXPT8B ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uZ3YbXPT8B .navbar-buttons {
  margin-left: auto;
}
.cid-uZ3YbXPT8B button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-uZ3YbXPT8B button.navbar-toggler:hover {
  outline: none;
}
.cid-uZ3YbXPT8B button.navbar-toggler:active {
  outline: none;
}
.cid-uZ3YbXPT8B button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uZ3YbXPT8B button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uZ3YbXPT8B button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uZ3YbXPT8B button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uZ3YbXPT8B button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uZ3YbXPT8B nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZ3YbXPT8B nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uZ3YbXPT8B nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uZ3YbXPT8B nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZ3YbXPT8B a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-uZ3YbXPT8B a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-uZ3YbXPT8B a.nav-link:hover:before {
  transform: scale(1);
}
.cid-uZ3YbXPT8B .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uZ3YbXPT8B .right-menu,
.cid-uZ3YbXPT8B .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uZ3YbXPT8B .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uZ3YbXPT8B .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uZ3YbXPT8B .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uZ3YbXPT8B .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uZ3YbXPT8B .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uZ3YbXPT8B .card-wrapper {
  z-index: 3;
}
.cid-uZ3YbXPT8B .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uZ3YbXPT8B .navbar-collapse {
    padding-top: 0;
  }
}
.cid-uZ3YbXPT8B .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-uZ3YbXPT8B .navbar-brand img {
  width: auto !important;
}
.cid-uZ3Yc0i0E5 {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uZ3Yc0i0E5 .mbr-section-head {
  margin-bottom: 50px;
}
.cid-uZ3Yc0i0E5 .mbr-section-title {
  color: #3c075e;
  text-align: center;
}
.cid-uZ3Yc0i0E5 .mbr-section-subtitle {
  color: #303030;
  margin-top: 10px;
}
.cid-uZ3Yc0i0E5 .embla {
  position: relative;
  width: 100%;
}
.cid-uZ3Yc0i0E5 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uZ3Yc0i0E5 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uZ3Yc0i0E5 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uZ3Yc0i0E5 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uZ3Yc0i0E5 .embla__slide {
  position: relative;
  display: flex;
  justify-content: center;
  min-width: calc(100vw / 3 - 60px);
  width: calc(100vw / 3 - 60px);
  margin: 0 30px;
  border: 1px solid #eaeaea;
}
@media (max-width: 991px) {
  .cid-uZ3Yc0i0E5 .embla__slide {
    min-width: 50%;
    width: 50%;
  }
}
@media (max-width: 768px) {
  .cid-uZ3Yc0i0E5 .embla__slide {
    min-width: 100%;
    width: 100%;
  }
}
.cid-uZ3Yc0i0E5 .item:focus,
.cid-uZ3Yc0i0E5 span:focus {
  outline: none;
}
.cid-uZ3Yc0i0E5 .slide-content {
  position: relative;
  border-radius: 0;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uZ3Yc0i0E5 .item-img {
  width: 100%;
}
.cid-uZ3Yc0i0E5 .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: calc(408 / (114 * 5));
}
.cid-uZ3Yc0i0E5 .embla__button--next,
.cid-uZ3Yc0i0E5 .embla__button--prev {
  display: flex;
}
.cid-uZ3Yc0i0E5 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(155, 141, 183, 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;
  display: none;
}
@media (max-width: 768px) {
  .cid-uZ3Yc0i0E5 .embla__button {
    display: none;
  }
}
.cid-uZ3Yc0i0E5 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uZ3Yc0i0E5 .embla__button:hover {
  background: #9b8db7;
  color: #FFFFFF;
}
.cid-uZ3Yc0i0E5 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ3Yc0i0E5 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uZ3Yc0i0E5 .embla__button {
    top: auto;
  }
}
.cid-uZ3Yc3mjaf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uZ3Yc3mjaf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uZ3Yc3mjaf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ3Yc3mjaf .carousel-inner {
  position: relative;
  width: 100%;
  overflow: visible !important;
}
.cid-uZ3Yc3mjaf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ3Yc3mjaf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uZ3Yc3mjaf .row > .row {
  display: block;
}
.cid-uZ3Yc3mjaf .mbr-gallery-item {
  width: 100%;
}
.cid-uZ3Yc3mjaf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #8a4b98;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
  border-radius: 30px;
}
.cid-uZ3Yc3mjaf .mbr-gallery-item > div {
  position: relative;
  transition: 0.5s;
  margin: 0.3rem;
  border-radius: 30px;
  overflow: hidden;
}
.cid-uZ3Yc3mjaf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uZ3Yc3mjaf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uZ3Yc3mjaf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #ffffff;
  z-index: 2;
}
.cid-uZ3Yc3mjaf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #8a4b98 !important;
  opacity: 0.7;
  transition: 0.2s background ease-in-out;
  border-radius: 0 0 30px 30px;
}
.cid-uZ3Yc3mjaf .container {
  max-width: 1200px;
  padding: 0.7rem;
}
.cid-uZ3Yc3mjaf .mbr-gallery-item > div:hover {
  transform: translate(1rem, 1rem);
}
@media (max-width: 767px) {
  .cid-uZ3Yc3mjaf {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .cid-uZ3Yc3mjaf .col-sm-12 {
    padding: 0 !important;
  }
}
.cid-uZ3Yc5fYOx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uZ3Yc5fYOx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uZ3Yc5fYOx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ3Yc5fYOx .carousel-inner {
  position: relative;
  width: 100%;
  overflow: visible !important;
}
.cid-uZ3Yc5fYOx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ3Yc5fYOx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uZ3Yc5fYOx .row > .row {
  display: block;
}
.cid-uZ3Yc5fYOx .mbr-gallery-item {
  width: 100%;
}
.cid-uZ3Yc5fYOx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #8a4b98;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
  border-radius: 30px;
}
.cid-uZ3Yc5fYOx .mbr-gallery-item > div {
  position: relative;
  transition: 0.5s;
  margin: 0.3rem;
  border-radius: 30px;
  overflow: hidden;
}
.cid-uZ3Yc5fYOx .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uZ3Yc5fYOx .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uZ3Yc5fYOx .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #ffffff;
  z-index: 2;
}
.cid-uZ3Yc5fYOx .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #8a4b98 !important;
  opacity: 0.7;
  transition: 0.2s background ease-in-out;
  border-radius: 0 0 30px 30px;
}
.cid-uZ3Yc5fYOx .container {
  max-width: 1200px;
  padding: 0.7rem;
}
.cid-uZ3Yc5fYOx .mbr-gallery-item > div:hover {
  transform: translate(1rem, 1rem);
}
@media (max-width: 767px) {
  .cid-uZ3Yc5fYOx {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .cid-uZ3Yc5fYOx .col-sm-12 {
    padding: 0 !important;
  }
}
.cid-uZ3Yc7NtJw {
  padding-top: 0;
  padding-bottom: 0;
}
.cid-uZ3Yc7NtJw .carousel {
  width: 100%;
}
.cid-uZ3Yc7NtJw .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-uZ3Yc7NtJw .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-uZ3Yc7NtJw .mbr-overlay {
  z-index: 1;
}
.cid-uZ3Yc7NtJw .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 20%;
  overflow: hidden;
  bottom: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 50px;
}
@media (max-width: 767px) {
  .cid-uZ3Yc7NtJw .carousel-caption {
    height: 34%;
  }
}
.cid-uZ3Yc7NtJw .carousel-control {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
  top: calc(50% + 20%/2 + 1rem);
  transform: translateY(-50%);
  left: 0;
  margin-left: 50px;
  color: #c17b71;
  opacity: 1;
}
.cid-uZ3Yc7NtJw .carousel-control.carousel-control-next {
  margin-left: 100px;
}
.cid-uZ3Yc7NtJw .carousel-control > span {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-uZ3Yc7NtJw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZ3Yc7NtJw .carousel-control:hover {
  opacity: 0.6;
}
.cid-uZ3Yc7NtJw .item-wrapper {
  width: 100%;
}
.cid-uZ3Yc7NtJw .mbr-section-subtitle,
.cid-uZ3Yc7NtJw .slider-subtitle {
  margin-bottom: 30px;
}
.cid-uZ3Yc7NtJw .caption-text {
  margin-bottom: 20.4px;
}
@media (max-width: 767px) {
  .cid-uZ3Yc7NtJw .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uZ3Yc7NtJw .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uZ3Yc7NtJw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uZ3Yc7NtJw .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uZ3Yc7NtJw .carousel-indicators li.active,
.cid-uZ3Yc7NtJw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uZ3Yc7NtJw .carousel-indicators li::after,
.cid-uZ3Yc7NtJw .carousel-indicators li::before {
  content: none;
}
.cid-uZ3Yc7NtJw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uZ3Yc7NtJw .carousel-indicators {
    display: none !important;
  }
}
.cid-uZ3Yc7NtJw H5 {
  color: #e9ddd8;
}
.cid-uZ3Yc7NtJw .mbr-section-subtitle {
  color: #ebc6b8;
}
.cid-uZ3Yc7NtJw P {
  color: #ffffff;
}
.cid-uZ3YgYhAfS .nav-item:focus,
.cid-uZ3YgYhAfS .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uZ3YgYhAfS .nav-item {
    position: relative;
  }
}
.cid-uZ3YgYhAfS .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uZ3YgYhAfS .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
  background: linear-gradient(#5b3478, #ffffff);
}
.cid-uZ3YgYhAfS .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
  background: linear-gradient(#5b3478, #ffffff) !important;
}
.cid-uZ3YgYhAfS .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uZ3YgYhAfS .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-uZ3YgYhAfS .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uZ3YgYhAfS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uZ3YgYhAfS .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uZ3YgYhAfS .navbar.collapsed .navbar-collapse.show,
.cid-uZ3YgYhAfS .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uZ3YgYhAfS .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uZ3YgYhAfS .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uZ3YgYhAfS .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uZ3YgYhAfS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZ3YgYhAfS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZ3YgYhAfS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uZ3YgYhAfS .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-uZ3YgYhAfS .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uZ3YgYhAfS .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-uZ3YgYhAfS .navbar.collapsed .right-menu,
.cid-uZ3YgYhAfS .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uZ3YgYhAfS .navbar .navbar-collapse.show,
  .cid-uZ3YgYhAfS .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-uZ3YgYhAfS .navbar .navbar-collapse.show .brand-container,
  .cid-uZ3YgYhAfS .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uZ3YgYhAfS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZ3YgYhAfS .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uZ3YgYhAfS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZ3YgYhAfS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uZ3YgYhAfS .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-uZ3YgYhAfS .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uZ3YgYhAfS .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-uZ3YgYhAfS .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uZ3YgYhAfS .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uZ3YgYhAfS .navbar .right-menu,
  .cid-uZ3YgYhAfS .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uZ3YgYhAfS .navbar.navbar-short {
  min-height: 60px;
}
.cid-uZ3YgYhAfS .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#5b3478, #ffffff) !important;
}
.cid-uZ3YgYhAfS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uZ3YgYhAfS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uZ3YgYhAfS .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-uZ3YgYhAfS .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uZ3YgYhAfS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uZ3YgYhAfS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZ3YgYhAfS .dropdown-item.active,
.cid-uZ3YgYhAfS .dropdown-item:active {
  background-color: transparent;
}
.cid-uZ3YgYhAfS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uZ3YgYhAfS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-uZ3YgYhAfS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uZ3YgYhAfS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZ3YgYhAfS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ3YgYhAfS ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uZ3YgYhAfS ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uZ3YgYhAfS .navbar-buttons {
  margin-left: auto;
}
.cid-uZ3YgYhAfS button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-uZ3YgYhAfS button.navbar-toggler:hover {
  outline: none;
}
.cid-uZ3YgYhAfS button.navbar-toggler:active {
  outline: none;
}
.cid-uZ3YgYhAfS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uZ3YgYhAfS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uZ3YgYhAfS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uZ3YgYhAfS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uZ3YgYhAfS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uZ3YgYhAfS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZ3YgYhAfS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uZ3YgYhAfS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uZ3YgYhAfS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZ3YgYhAfS a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-uZ3YgYhAfS a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-uZ3YgYhAfS a.nav-link:hover:before {
  transform: scale(1);
}
.cid-uZ3YgYhAfS .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uZ3YgYhAfS .right-menu,
.cid-uZ3YgYhAfS .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uZ3YgYhAfS .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uZ3YgYhAfS .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uZ3YgYhAfS .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uZ3YgYhAfS .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uZ3YgYhAfS .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uZ3YgYhAfS .card-wrapper {
  z-index: 3;
}
.cid-uZ3YgYhAfS .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uZ3YgYhAfS .navbar-collapse {
    padding-top: 0;
  }
}
.cid-uZ3YgYhAfS .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-uZ3YgYhAfS .navbar-brand img {
  width: auto !important;
}
.cid-uZ3Yh1sjfo {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uZ3Yh1sjfo .mbr-section-head {
  margin-bottom: 50px;
}
.cid-uZ3Yh1sjfo .mbr-section-title {
  color: #3c075e;
  text-align: center;
}
.cid-uZ3Yh1sjfo .mbr-section-subtitle {
  color: #303030;
  margin-top: 10px;
}
.cid-uZ3Yh1sjfo .embla {
  position: relative;
  width: 100%;
}
.cid-uZ3Yh1sjfo .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uZ3Yh1sjfo .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uZ3Yh1sjfo .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uZ3Yh1sjfo .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uZ3Yh1sjfo .embla__slide {
  position: relative;
  display: flex;
  justify-content: center;
  min-width: calc(100vw / 3 - 60px);
  width: calc(100vw / 3 - 60px);
  margin: 0 30px;
  border: 1px solid #eaeaea;
}
@media (max-width: 991px) {
  .cid-uZ3Yh1sjfo .embla__slide {
    min-width: 50%;
    width: 50%;
  }
}
@media (max-width: 768px) {
  .cid-uZ3Yh1sjfo .embla__slide {
    min-width: 100%;
    width: 100%;
  }
}
.cid-uZ3Yh1sjfo .item:focus,
.cid-uZ3Yh1sjfo span:focus {
  outline: none;
}
.cid-uZ3Yh1sjfo .slide-content {
  position: relative;
  border-radius: 0;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uZ3Yh1sjfo .item-img {
  width: 100%;
}
.cid-uZ3Yh1sjfo .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: calc(408 / (114 * 5));
}
.cid-uZ3Yh1sjfo .embla__button--next,
.cid-uZ3Yh1sjfo .embla__button--prev {
  display: flex;
}
.cid-uZ3Yh1sjfo .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(155, 141, 183, 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;
  display: none;
}
@media (max-width: 768px) {
  .cid-uZ3Yh1sjfo .embla__button {
    display: none;
  }
}
.cid-uZ3Yh1sjfo .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uZ3Yh1sjfo .embla__button:hover {
  background: #9b8db7;
  color: #FFFFFF;
}
.cid-uZ3Yh1sjfo .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ3Yh1sjfo .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uZ3Yh1sjfo .embla__button {
    top: auto;
  }
}
.cid-uZ3Yh3MjjP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uZ3Yh3MjjP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uZ3Yh3MjjP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ3Yh3MjjP .carousel-inner {
  position: relative;
  width: 100%;
  overflow: visible !important;
}
.cid-uZ3Yh3MjjP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ3Yh3MjjP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uZ3Yh3MjjP .row > .row {
  display: block;
}
.cid-uZ3Yh3MjjP .mbr-gallery-item {
  width: 100%;
}
.cid-uZ3Yh3MjjP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #8a4b98;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
  border-radius: 30px;
}
.cid-uZ3Yh3MjjP .mbr-gallery-item > div {
  position: relative;
  transition: 0.5s;
  margin: 0.3rem;
  border-radius: 30px;
  overflow: hidden;
}
.cid-uZ3Yh3MjjP .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uZ3Yh3MjjP .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uZ3Yh3MjjP .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #ffffff;
  z-index: 2;
}
.cid-uZ3Yh3MjjP .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #8a4b98 !important;
  opacity: 0.7;
  transition: 0.2s background ease-in-out;
  border-radius: 0 0 30px 30px;
}
.cid-uZ3Yh3MjjP .container {
  max-width: 1200px;
  padding: 0.7rem;
}
.cid-uZ3Yh3MjjP .mbr-gallery-item > div:hover {
  transform: translate(1rem, 1rem);
}
@media (max-width: 767px) {
  .cid-uZ3Yh3MjjP {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .cid-uZ3Yh3MjjP .col-sm-12 {
    padding: 0 !important;
  }
}
.cid-uZ3Yh64LAe {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uZ3Yh64LAe .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uZ3Yh64LAe .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ3Yh64LAe .carousel-inner {
  position: relative;
  width: 100%;
  overflow: visible !important;
}
.cid-uZ3Yh64LAe .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ3Yh64LAe .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uZ3Yh64LAe .row > .row {
  display: block;
}
.cid-uZ3Yh64LAe .mbr-gallery-item {
  width: 100%;
}
.cid-uZ3Yh64LAe .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #8a4b98;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
  border-radius: 30px;
}
.cid-uZ3Yh64LAe .mbr-gallery-item > div {
  position: relative;
  transition: 0.5s;
  margin: 0.3rem;
  border-radius: 30px;
  overflow: hidden;
}
.cid-uZ3Yh64LAe .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uZ3Yh64LAe .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uZ3Yh64LAe .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #ffffff;
  z-index: 2;
}
.cid-uZ3Yh64LAe .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #8a4b98 !important;
  opacity: 0.7;
  transition: 0.2s background ease-in-out;
  border-radius: 0 0 30px 30px;
}
.cid-uZ3Yh64LAe .container {
  max-width: 1200px;
  padding: 0.7rem;
}
.cid-uZ3Yh64LAe .mbr-gallery-item > div:hover {
  transform: translate(1rem, 1rem);
}
@media (max-width: 767px) {
  .cid-uZ3Yh64LAe {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .cid-uZ3Yh64LAe .col-sm-12 {
    padding: 0 !important;
  }
}
.cid-uZ3Yh9dabk {
  padding-top: 0;
  padding-bottom: 0;
}
.cid-uZ3Yh9dabk .carousel {
  width: 100%;
}
.cid-uZ3Yh9dabk .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-uZ3Yh9dabk .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-uZ3Yh9dabk .mbr-overlay {
  z-index: 1;
}
.cid-uZ3Yh9dabk .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 20%;
  overflow: hidden;
  bottom: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 50px;
}
@media (max-width: 767px) {
  .cid-uZ3Yh9dabk .carousel-caption {
    height: 34%;
  }
}
.cid-uZ3Yh9dabk .carousel-control {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
  top: calc(50% + 20%/2 + 1rem);
  transform: translateY(-50%);
  left: 0;
  margin-left: 50px;
  color: #c17b71;
  opacity: 1;
}
.cid-uZ3Yh9dabk .carousel-control.carousel-control-next {
  margin-left: 100px;
}
.cid-uZ3Yh9dabk .carousel-control > span {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-uZ3Yh9dabk .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZ3Yh9dabk .carousel-control:hover {
  opacity: 0.6;
}
.cid-uZ3Yh9dabk .item-wrapper {
  width: 100%;
}
.cid-uZ3Yh9dabk .mbr-section-subtitle,
.cid-uZ3Yh9dabk .slider-subtitle {
  margin-bottom: 30px;
}
.cid-uZ3Yh9dabk .caption-text {
  margin-bottom: 20.4px;
}
@media (max-width: 767px) {
  .cid-uZ3Yh9dabk .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uZ3Yh9dabk .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uZ3Yh9dabk .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uZ3Yh9dabk .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uZ3Yh9dabk .carousel-indicators li.active,
.cid-uZ3Yh9dabk .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uZ3Yh9dabk .carousel-indicators li::after,
.cid-uZ3Yh9dabk .carousel-indicators li::before {
  content: none;
}
.cid-uZ3Yh9dabk .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uZ3Yh9dabk .carousel-indicators {
    display: none !important;
  }
}
.cid-uZ3Yh9dabk H5 {
  color: #e9ddd8;
}
.cid-uZ3Yh9dabk .mbr-section-subtitle {
  color: #ebc6b8;
}
.cid-uZ3Yh9dabk P {
  color: #ffffff;
}
.cid-uZ3YjE9uvH .nav-item:focus,
.cid-uZ3YjE9uvH .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uZ3YjE9uvH .nav-item {
    position: relative;
  }
}
.cid-uZ3YjE9uvH .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uZ3YjE9uvH .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
  background: linear-gradient(#5b3478, #ffffff);
}
.cid-uZ3YjE9uvH .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
  background: linear-gradient(#5b3478, #ffffff) !important;
}
.cid-uZ3YjE9uvH .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uZ3YjE9uvH .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-uZ3YjE9uvH .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uZ3YjE9uvH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uZ3YjE9uvH .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uZ3YjE9uvH .navbar.collapsed .navbar-collapse.show,
.cid-uZ3YjE9uvH .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uZ3YjE9uvH .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uZ3YjE9uvH .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uZ3YjE9uvH .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uZ3YjE9uvH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZ3YjE9uvH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZ3YjE9uvH .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uZ3YjE9uvH .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-uZ3YjE9uvH .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uZ3YjE9uvH .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-uZ3YjE9uvH .navbar.collapsed .right-menu,
.cid-uZ3YjE9uvH .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uZ3YjE9uvH .navbar .navbar-collapse.show,
  .cid-uZ3YjE9uvH .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-uZ3YjE9uvH .navbar .navbar-collapse.show .brand-container,
  .cid-uZ3YjE9uvH .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uZ3YjE9uvH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZ3YjE9uvH .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uZ3YjE9uvH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZ3YjE9uvH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uZ3YjE9uvH .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-uZ3YjE9uvH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uZ3YjE9uvH .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-uZ3YjE9uvH .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uZ3YjE9uvH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uZ3YjE9uvH .navbar .right-menu,
  .cid-uZ3YjE9uvH .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uZ3YjE9uvH .navbar.navbar-short {
  min-height: 60px;
}
.cid-uZ3YjE9uvH .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#5b3478, #ffffff) !important;
}
.cid-uZ3YjE9uvH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uZ3YjE9uvH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uZ3YjE9uvH .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-uZ3YjE9uvH .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uZ3YjE9uvH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uZ3YjE9uvH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZ3YjE9uvH .dropdown-item.active,
.cid-uZ3YjE9uvH .dropdown-item:active {
  background-color: transparent;
}
.cid-uZ3YjE9uvH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uZ3YjE9uvH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-uZ3YjE9uvH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uZ3YjE9uvH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZ3YjE9uvH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ3YjE9uvH ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uZ3YjE9uvH ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uZ3YjE9uvH .navbar-buttons {
  margin-left: auto;
}
.cid-uZ3YjE9uvH button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-uZ3YjE9uvH button.navbar-toggler:hover {
  outline: none;
}
.cid-uZ3YjE9uvH button.navbar-toggler:active {
  outline: none;
}
.cid-uZ3YjE9uvH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uZ3YjE9uvH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uZ3YjE9uvH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uZ3YjE9uvH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uZ3YjE9uvH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uZ3YjE9uvH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZ3YjE9uvH nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uZ3YjE9uvH nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uZ3YjE9uvH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZ3YjE9uvH a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-uZ3YjE9uvH a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-uZ3YjE9uvH a.nav-link:hover:before {
  transform: scale(1);
}
.cid-uZ3YjE9uvH .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uZ3YjE9uvH .right-menu,
.cid-uZ3YjE9uvH .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uZ3YjE9uvH .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uZ3YjE9uvH .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uZ3YjE9uvH .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uZ3YjE9uvH .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uZ3YjE9uvH .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uZ3YjE9uvH .card-wrapper {
  z-index: 3;
}
.cid-uZ3YjE9uvH .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uZ3YjE9uvH .navbar-collapse {
    padding-top: 0;
  }
}
.cid-uZ3YjE9uvH .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-uZ3YjE9uvH .navbar-brand img {
  width: auto !important;
}
.cid-uZ3YjIvUfS {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uZ3YjIvUfS .mbr-section-head {
  margin-bottom: 50px;
}
.cid-uZ3YjIvUfS .mbr-section-title {
  color: #3c075e;
  text-align: center;
}
.cid-uZ3YjIvUfS .mbr-section-subtitle {
  color: #303030;
  margin-top: 10px;
}
.cid-uZ3YjIvUfS .embla {
  position: relative;
  width: 100%;
}
.cid-uZ3YjIvUfS .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uZ3YjIvUfS .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uZ3YjIvUfS .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uZ3YjIvUfS .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uZ3YjIvUfS .embla__slide {
  position: relative;
  display: flex;
  justify-content: center;
  min-width: calc(100vw / 3 - 60px);
  width: calc(100vw / 3 - 60px);
  margin: 0 30px;
  border: 1px solid #eaeaea;
}
@media (max-width: 991px) {
  .cid-uZ3YjIvUfS .embla__slide {
    min-width: 50%;
    width: 50%;
  }
}
@media (max-width: 768px) {
  .cid-uZ3YjIvUfS .embla__slide {
    min-width: 100%;
    width: 100%;
  }
}
.cid-uZ3YjIvUfS .item:focus,
.cid-uZ3YjIvUfS span:focus {
  outline: none;
}
.cid-uZ3YjIvUfS .slide-content {
  position: relative;
  border-radius: 0;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uZ3YjIvUfS .item-img {
  width: 100%;
}
.cid-uZ3YjIvUfS .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: calc(408 / (114 * 5));
}
.cid-uZ3YjIvUfS .embla__button--next,
.cid-uZ3YjIvUfS .embla__button--prev {
  display: flex;
}
.cid-uZ3YjIvUfS .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(155, 141, 183, 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;
  display: none;
}
@media (max-width: 768px) {
  .cid-uZ3YjIvUfS .embla__button {
    display: none;
  }
}
.cid-uZ3YjIvUfS .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uZ3YjIvUfS .embla__button:hover {
  background: #9b8db7;
  color: #FFFFFF;
}
.cid-uZ3YjIvUfS .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ3YjIvUfS .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uZ3YjIvUfS .embla__button {
    top: auto;
  }
}
.cid-uZ3YjKZRgC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uZ3YjKZRgC .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uZ3YjKZRgC .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ3YjKZRgC .carousel-inner {
  position: relative;
  width: 100%;
  overflow: visible !important;
}
.cid-uZ3YjKZRgC .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ3YjKZRgC .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uZ3YjKZRgC .row > .row {
  display: block;
}
.cid-uZ3YjKZRgC .mbr-gallery-item {
  width: 100%;
}
.cid-uZ3YjKZRgC .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #8a4b98;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
  border-radius: 30px;
}
.cid-uZ3YjKZRgC .mbr-gallery-item > div {
  position: relative;
  transition: 0.5s;
  margin: 0.3rem;
  border-radius: 30px;
  overflow: hidden;
}
.cid-uZ3YjKZRgC .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uZ3YjKZRgC .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uZ3YjKZRgC .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #ffffff;
  z-index: 2;
}
.cid-uZ3YjKZRgC .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #8a4b98 !important;
  opacity: 0.7;
  transition: 0.2s background ease-in-out;
  border-radius: 0 0 30px 30px;
}
.cid-uZ3YjKZRgC .container {
  max-width: 1200px;
  padding: 0.7rem;
}
.cid-uZ3YjKZRgC .mbr-gallery-item > div:hover {
  transform: translate(1rem, 1rem);
}
@media (max-width: 767px) {
  .cid-uZ3YjKZRgC {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .cid-uZ3YjKZRgC .col-sm-12 {
    padding: 0 !important;
  }
}
.cid-uZ3YjMDiRN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uZ3YjMDiRN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uZ3YjMDiRN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ3YjMDiRN .carousel-inner {
  position: relative;
  width: 100%;
  overflow: visible !important;
}
.cid-uZ3YjMDiRN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ3YjMDiRN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uZ3YjMDiRN .row > .row {
  display: block;
}
.cid-uZ3YjMDiRN .mbr-gallery-item {
  width: 100%;
}
.cid-uZ3YjMDiRN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #8a4b98;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
  border-radius: 30px;
}
.cid-uZ3YjMDiRN .mbr-gallery-item > div {
  position: relative;
  transition: 0.5s;
  margin: 0.3rem;
  border-radius: 30px;
  overflow: hidden;
}
.cid-uZ3YjMDiRN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uZ3YjMDiRN .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uZ3YjMDiRN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #ffffff;
  z-index: 2;
}
.cid-uZ3YjMDiRN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #8a4b98 !important;
  opacity: 0.7;
  transition: 0.2s background ease-in-out;
  border-radius: 0 0 30px 30px;
}
.cid-uZ3YjMDiRN .container {
  max-width: 1200px;
  padding: 0.7rem;
}
.cid-uZ3YjMDiRN .mbr-gallery-item > div:hover {
  transform: translate(1rem, 1rem);
}
@media (max-width: 767px) {
  .cid-uZ3YjMDiRN {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .cid-uZ3YjMDiRN .col-sm-12 {
    padding: 0 !important;
  }
}
.cid-uZ3YjOgByj {
  padding-top: 0;
  padding-bottom: 0;
}
.cid-uZ3YjOgByj .carousel {
  width: 100%;
}
.cid-uZ3YjOgByj .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-uZ3YjOgByj .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-uZ3YjOgByj .mbr-overlay {
  z-index: 1;
}
.cid-uZ3YjOgByj .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 20%;
  overflow: hidden;
  bottom: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 50px;
}
@media (max-width: 767px) {
  .cid-uZ3YjOgByj .carousel-caption {
    height: 34%;
  }
}
.cid-uZ3YjOgByj .carousel-control {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
  top: calc(50% + 20%/2 + 1rem);
  transform: translateY(-50%);
  left: 0;
  margin-left: 50px;
  color: #c17b71;
  opacity: 1;
}
.cid-uZ3YjOgByj .carousel-control.carousel-control-next {
  margin-left: 100px;
}
.cid-uZ3YjOgByj .carousel-control > span {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-uZ3YjOgByj .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZ3YjOgByj .carousel-control:hover {
  opacity: 0.6;
}
.cid-uZ3YjOgByj .item-wrapper {
  width: 100%;
}
.cid-uZ3YjOgByj .mbr-section-subtitle,
.cid-uZ3YjOgByj .slider-subtitle {
  margin-bottom: 30px;
}
.cid-uZ3YjOgByj .caption-text {
  margin-bottom: 20.4px;
}
@media (max-width: 767px) {
  .cid-uZ3YjOgByj .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uZ3YjOgByj .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uZ3YjOgByj .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uZ3YjOgByj .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uZ3YjOgByj .carousel-indicators li.active,
.cid-uZ3YjOgByj .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uZ3YjOgByj .carousel-indicators li::after,
.cid-uZ3YjOgByj .carousel-indicators li::before {
  content: none;
}
.cid-uZ3YjOgByj .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uZ3YjOgByj .carousel-indicators {
    display: none !important;
  }
}
.cid-uZ3YjOgByj H5 {
  color: #e9ddd8;
}
.cid-uZ3YjOgByj .mbr-section-subtitle {
  color: #ebc6b8;
}
.cid-uZ3YjOgByj P {
  color: #ffffff;
}
.cid-tH8xoKrXVF .nav-item:focus,
.cid-tH8xoKrXVF .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tH8xoKrXVF .nav-item {
    position: relative;
  }
}
.cid-tH8xoKrXVF .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-tH8xoKrXVF .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
  background: linear-gradient(#5b3478, #ffffff);
}
.cid-tH8xoKrXVF .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
  background: linear-gradient(#5b3478, #ffffff) !important;
}
.cid-tH8xoKrXVF .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-tH8xoKrXVF .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-tH8xoKrXVF .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tH8xoKrXVF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tH8xoKrXVF .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tH8xoKrXVF .navbar.collapsed .navbar-collapse.show,
.cid-tH8xoKrXVF .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tH8xoKrXVF .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tH8xoKrXVF .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tH8xoKrXVF .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tH8xoKrXVF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tH8xoKrXVF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tH8xoKrXVF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tH8xoKrXVF .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-tH8xoKrXVF .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tH8xoKrXVF .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-tH8xoKrXVF .navbar.collapsed .right-menu,
.cid-tH8xoKrXVF .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tH8xoKrXVF .navbar .navbar-collapse.show,
  .cid-tH8xoKrXVF .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-tH8xoKrXVF .navbar .navbar-collapse.show .brand-container,
  .cid-tH8xoKrXVF .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tH8xoKrXVF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tH8xoKrXVF .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tH8xoKrXVF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tH8xoKrXVF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tH8xoKrXVF .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-tH8xoKrXVF .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tH8xoKrXVF .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-tH8xoKrXVF .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tH8xoKrXVF .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-tH8xoKrXVF .navbar .right-menu,
  .cid-tH8xoKrXVF .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tH8xoKrXVF .navbar.navbar-short {
  min-height: 60px;
}
.cid-tH8xoKrXVF .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#5b3478, #ffffff) !important;
}
.cid-tH8xoKrXVF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tH8xoKrXVF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tH8xoKrXVF .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-tH8xoKrXVF .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tH8xoKrXVF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tH8xoKrXVF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tH8xoKrXVF .dropdown-item.active,
.cid-tH8xoKrXVF .dropdown-item:active {
  background-color: transparent;
}
.cid-tH8xoKrXVF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tH8xoKrXVF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-tH8xoKrXVF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tH8xoKrXVF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tH8xoKrXVF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tH8xoKrXVF ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tH8xoKrXVF ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tH8xoKrXVF .navbar-buttons {
  margin-left: auto;
}
.cid-tH8xoKrXVF button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-tH8xoKrXVF button.navbar-toggler:hover {
  outline: none;
}
.cid-tH8xoKrXVF button.navbar-toggler:active {
  outline: none;
}
.cid-tH8xoKrXVF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tH8xoKrXVF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tH8xoKrXVF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tH8xoKrXVF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tH8xoKrXVF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tH8xoKrXVF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tH8xoKrXVF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-tH8xoKrXVF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-tH8xoKrXVF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tH8xoKrXVF a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-tH8xoKrXVF a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-tH8xoKrXVF a.nav-link:hover:before {
  transform: scale(1);
}
.cid-tH8xoKrXVF .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tH8xoKrXVF .right-menu,
.cid-tH8xoKrXVF .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tH8xoKrXVF .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tH8xoKrXVF .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tH8xoKrXVF .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tH8xoKrXVF .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tH8xoKrXVF .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tH8xoKrXVF .card-wrapper {
  z-index: 3;
}
.cid-tH8xoKrXVF .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tH8xoKrXVF .navbar-collapse {
    padding-top: 0;
  }
}
.cid-tH8xoKrXVF .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-tH8xoKrXVF .navbar-brand img {
  width: auto !important;
}
.cid-tH8xoKQqcH {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tH8xoKQqcH .mbr-section-head {
  margin-bottom: 50px;
}
.cid-tH8xoKQqcH .mbr-section-title {
  color: #3c075e;
  text-align: center;
}
.cid-tH8xoKQqcH .mbr-section-subtitle {
  color: #303030;
  margin-top: 10px;
}
.cid-tH8xoKQqcH .embla {
  position: relative;
  width: 100%;
}
.cid-tH8xoKQqcH .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tH8xoKQqcH .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tH8xoKQqcH .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tH8xoKQqcH .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tH8xoKQqcH .embla__slide {
  position: relative;
  display: flex;
  justify-content: center;
  min-width: calc(100vw / 3 - 60px);
  width: calc(100vw / 3 - 60px);
  margin: 0 30px;
  border: 1px solid #eaeaea;
}
@media (max-width: 991px) {
  .cid-tH8xoKQqcH .embla__slide {
    min-width: 50%;
    width: 50%;
  }
}
@media (max-width: 768px) {
  .cid-tH8xoKQqcH .embla__slide {
    min-width: 100%;
    width: 100%;
  }
}
.cid-tH8xoKQqcH .item:focus,
.cid-tH8xoKQqcH span:focus {
  outline: none;
}
.cid-tH8xoKQqcH .slide-content {
  position: relative;
  border-radius: 0;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tH8xoKQqcH .item-img {
  width: 100%;
}
.cid-tH8xoKQqcH .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: calc(408 / (114 * 5));
}
.cid-tH8xoKQqcH .embla__button--next,
.cid-tH8xoKQqcH .embla__button--prev {
  display: flex;
}
.cid-tH8xoKQqcH .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(155, 141, 183, 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;
  display: none;
}
@media (max-width: 768px) {
  .cid-tH8xoKQqcH .embla__button {
    display: none;
  }
}
.cid-tH8xoKQqcH .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tH8xoKQqcH .embla__button:hover {
  background: #9b8db7;
  color: #FFFFFF;
}
.cid-tH8xoKQqcH .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tH8xoKQqcH .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tH8xoKQqcH .embla__button {
    top: auto;
  }
}
.cid-tLZAzOylVZ {
  padding-top: 0;
  padding-bottom: 0;
}
.cid-tLZAzOylVZ .carousel {
  width: 100%;
}
.cid-tLZAzOylVZ .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-tLZAzOylVZ .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-tLZAzOylVZ .mbr-overlay {
  z-index: 1;
}
.cid-tLZAzOylVZ .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 20%;
  overflow: hidden;
  bottom: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 50px;
}
@media (max-width: 767px) {
  .cid-tLZAzOylVZ .carousel-caption {
    height: 34%;
  }
}
.cid-tLZAzOylVZ .carousel-control {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
  top: calc(50% + 20%/2 + 1rem);
  transform: translateY(-50%);
  left: 0;
  margin-left: 50px;
  color: #c17b71;
  opacity: 1;
}
.cid-tLZAzOylVZ .carousel-control.carousel-control-next {
  margin-left: 100px;
}
.cid-tLZAzOylVZ .carousel-control > span {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-tLZAzOylVZ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tLZAzOylVZ .carousel-control:hover {
  opacity: 0.6;
}
.cid-tLZAzOylVZ .item-wrapper {
  width: 100%;
}
.cid-tLZAzOylVZ .mbr-section-subtitle,
.cid-tLZAzOylVZ .slider-subtitle {
  margin-bottom: 30px;
}
.cid-tLZAzOylVZ .caption-text {
  margin-bottom: 20.4px;
}
@media (max-width: 767px) {
  .cid-tLZAzOylVZ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tLZAzOylVZ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tLZAzOylVZ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tLZAzOylVZ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tLZAzOylVZ .carousel-indicators li.active,
.cid-tLZAzOylVZ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tLZAzOylVZ .carousel-indicators li::after,
.cid-tLZAzOylVZ .carousel-indicators li::before {
  content: none;
}
.cid-tLZAzOylVZ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tLZAzOylVZ .carousel-indicators {
    display: none !important;
  }
}
.cid-tLZAzOylVZ H5 {
  color: #e9ddd8;
}
.cid-tLZAzOylVZ .mbr-section-subtitle {
  color: #ebc6b8;
}
.cid-tLZAzOylVZ P {
  color: #ffffff;
}
.cid-tHiNdIM7bn .nav-item:focus,
.cid-tHiNdIM7bn .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tHiNdIM7bn .nav-item {
    position: relative;
  }
}
.cid-tHiNdIM7bn .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-tHiNdIM7bn .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
  background: linear-gradient(#5b3478, #ffffff);
}
.cid-tHiNdIM7bn .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
  background: linear-gradient(#5b3478, #ffffff) !important;
}
.cid-tHiNdIM7bn .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-tHiNdIM7bn .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-tHiNdIM7bn .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tHiNdIM7bn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tHiNdIM7bn .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHiNdIM7bn .navbar.collapsed .navbar-collapse.show,
.cid-tHiNdIM7bn .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tHiNdIM7bn .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tHiNdIM7bn .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tHiNdIM7bn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tHiNdIM7bn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tHiNdIM7bn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tHiNdIM7bn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tHiNdIM7bn .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-tHiNdIM7bn .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tHiNdIM7bn .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-tHiNdIM7bn .navbar.collapsed .right-menu,
.cid-tHiNdIM7bn .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tHiNdIM7bn .navbar .navbar-collapse.show,
  .cid-tHiNdIM7bn .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-tHiNdIM7bn .navbar .navbar-collapse.show .brand-container,
  .cid-tHiNdIM7bn .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tHiNdIM7bn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tHiNdIM7bn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tHiNdIM7bn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tHiNdIM7bn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tHiNdIM7bn .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-tHiNdIM7bn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tHiNdIM7bn .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-tHiNdIM7bn .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tHiNdIM7bn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-tHiNdIM7bn .navbar .right-menu,
  .cid-tHiNdIM7bn .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tHiNdIM7bn .navbar.navbar-short {
  min-height: 60px;
}
.cid-tHiNdIM7bn .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#5b3478, #ffffff) !important;
}
.cid-tHiNdIM7bn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tHiNdIM7bn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tHiNdIM7bn .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-tHiNdIM7bn .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tHiNdIM7bn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tHiNdIM7bn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tHiNdIM7bn .dropdown-item.active,
.cid-tHiNdIM7bn .dropdown-item:active {
  background-color: transparent;
}
.cid-tHiNdIM7bn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tHiNdIM7bn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-tHiNdIM7bn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tHiNdIM7bn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tHiNdIM7bn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHiNdIM7bn ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tHiNdIM7bn ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tHiNdIM7bn .navbar-buttons {
  margin-left: auto;
}
.cid-tHiNdIM7bn button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-tHiNdIM7bn button.navbar-toggler:hover {
  outline: none;
}
.cid-tHiNdIM7bn button.navbar-toggler:active {
  outline: none;
}
.cid-tHiNdIM7bn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tHiNdIM7bn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tHiNdIM7bn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tHiNdIM7bn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tHiNdIM7bn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tHiNdIM7bn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tHiNdIM7bn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-tHiNdIM7bn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-tHiNdIM7bn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tHiNdIM7bn a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-tHiNdIM7bn a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-tHiNdIM7bn a.nav-link:hover:before {
  transform: scale(1);
}
.cid-tHiNdIM7bn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tHiNdIM7bn .right-menu,
.cid-tHiNdIM7bn .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tHiNdIM7bn .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHiNdIM7bn .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tHiNdIM7bn .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tHiNdIM7bn .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tHiNdIM7bn .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tHiNdIM7bn .card-wrapper {
  z-index: 3;
}
.cid-tHiNdIM7bn .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tHiNdIM7bn .navbar-collapse {
    padding-top: 0;
  }
}
.cid-tHiNdIM7bn .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-tHiNdIM7bn .navbar-brand img {
  width: auto !important;
}
.cid-tHiNdJtPvh {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tHiNdJtPvh .mbr-section-head {
  margin-bottom: 50px;
}
.cid-tHiNdJtPvh .mbr-section-title {
  color: #3c075e;
  text-align: center;
}
.cid-tHiNdJtPvh .mbr-section-subtitle {
  color: #303030;
  margin-top: 10px;
}
.cid-tHiNdJtPvh .embla {
  position: relative;
  width: 100%;
}
.cid-tHiNdJtPvh .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tHiNdJtPvh .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tHiNdJtPvh .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tHiNdJtPvh .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tHiNdJtPvh .embla__slide {
  position: relative;
  display: flex;
  justify-content: center;
  min-width: calc(100vw / 3 - 60px);
  width: calc(100vw / 3 - 60px);
  margin: 0 30px;
  border: 1px solid #eaeaea;
}
@media (max-width: 991px) {
  .cid-tHiNdJtPvh .embla__slide {
    min-width: 50%;
    width: 50%;
  }
}
@media (max-width: 768px) {
  .cid-tHiNdJtPvh .embla__slide {
    min-width: 100%;
    width: 100%;
  }
}
.cid-tHiNdJtPvh .item:focus,
.cid-tHiNdJtPvh span:focus {
  outline: none;
}
.cid-tHiNdJtPvh .slide-content {
  position: relative;
  border-radius: 0;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tHiNdJtPvh .item-img {
  width: 100%;
}
.cid-tHiNdJtPvh .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: calc(408 / (114 * 4));
}
.cid-tHiNdJtPvh .embla__button--next,
.cid-tHiNdJtPvh .embla__button--prev {
  display: flex;
}
.cid-tHiNdJtPvh .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(155, 141, 183, 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;
  display: none;
}
@media (max-width: 768px) {
  .cid-tHiNdJtPvh .embla__button {
    display: none;
  }
}
.cid-tHiNdJtPvh .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tHiNdJtPvh .embla__button:hover {
  background: #9b8db7;
  color: #FFFFFF;
}
.cid-tHiNdJtPvh .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tHiNdJtPvh .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tHiNdJtPvh .embla__button {
    top: auto;
  }
}
.cid-tLZAIN40Ol {
  padding-top: 0;
  padding-bottom: 0;
}
.cid-tLZAIN40Ol .carousel {
  width: 100%;
}
.cid-tLZAIN40Ol .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-tLZAIN40Ol .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-tLZAIN40Ol .mbr-overlay {
  z-index: 1;
}
.cid-tLZAIN40Ol .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 20%;
  overflow: hidden;
  bottom: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 50px;
}
@media (max-width: 767px) {
  .cid-tLZAIN40Ol .carousel-caption {
    height: 34%;
  }
}
.cid-tLZAIN40Ol .carousel-control {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
  top: calc(50% + 20%/2 + 1rem);
  transform: translateY(-50%);
  left: 0;
  margin-left: 50px;
  color: #c17b71;
  opacity: 1;
}
.cid-tLZAIN40Ol .carousel-control.carousel-control-next {
  margin-left: 100px;
}
.cid-tLZAIN40Ol .carousel-control > span {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-tLZAIN40Ol .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tLZAIN40Ol .carousel-control:hover {
  opacity: 0.6;
}
.cid-tLZAIN40Ol .item-wrapper {
  width: 100%;
}
.cid-tLZAIN40Ol .mbr-section-subtitle,
.cid-tLZAIN40Ol .slider-subtitle {
  margin-bottom: 30px;
}
.cid-tLZAIN40Ol .caption-text {
  margin-bottom: 20.4px;
}
@media (max-width: 767px) {
  .cid-tLZAIN40Ol .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tLZAIN40Ol .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tLZAIN40Ol .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tLZAIN40Ol .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tLZAIN40Ol .carousel-indicators li.active,
.cid-tLZAIN40Ol .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tLZAIN40Ol .carousel-indicators li::after,
.cid-tLZAIN40Ol .carousel-indicators li::before {
  content: none;
}
.cid-tLZAIN40Ol .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tLZAIN40Ol .carousel-indicators {
    display: none !important;
  }
}
.cid-tLZAIN40Ol H5 {
  color: #e9ddd8;
}
.cid-tLZAIN40Ol .mbr-section-subtitle {
  color: #ebc6b8;
}
.cid-tLZAIN40Ol P {
  color: #ffffff;
}
