body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Luxurious Roman', display;
  font-size: 4rem;
}
.display-2 {
  font-family: 'Luxurious Roman', display;
  font-size: 2.8rem;
}
.display-4 {
  font-family: 'Luxurious Roman', display;
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'Luxurious Roman', display;
  font-size: 2.2rem;
}
.display-7 {
  font-family: 'Luxurious Roman', display;
  font-size: 1.2rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #fac769 !important;
}
.bg-success {
  background-color: #4289a7 !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #e5352c !important;
}
.bg-danger {
  background-color: #b2ccd2 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #e96188 !important;
  border-color: #e96188 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #4289a7 !important;
  border-color: #4289a7 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #2c5c70 !important;
  border-color: #2c5c70 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2c5c70 !important;
  border-color: #2c5c70 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #e5352c !important;
  border-color: #e5352c !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #af1d16 !important;
  border-color: #af1d16 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #af1d16 !important;
  border-color: #af1d16 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #7a2820;
  color: #7a2820 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ca4336;
  border-color: #ca4336;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #c81c4d;
  color: #c81c4d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #e96188;
  border-color: #e96188;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #254d5e;
  color: #254d5e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #4289a7;
  border-color: #4289a7;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #4289a7 !important;
  border-color: #4289a7 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #981913;
  color: #981913 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #e5352c;
  border-color: #e5352c;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #e5352c !important;
  border-color: #e5352c !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #fac769 !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #4289a7 !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #e5352c !important;
}
.text-danger {
  color: #b2ccd2 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #f5a208 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #7a2820 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #254d5e !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c81c4d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #981913 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #72a1ac !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #4289a7;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #e5352c;
}
.alert-danger {
  background-color: #b2ccd2;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #fac769;
  border-color: #fac769;
  color: #795004;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #fac769;
}
.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: #94c1d5;
}
.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: #fbe3e2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Luxurious Roman', display;
  font-size: 1.2rem;
}
blockquote {
  border-color: #fac769;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type='submit'] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #fac769;
  color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #fac769;
  border-bottom-color: #fac769;
}
.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: #fac769 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ca4336 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23fac769' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-qIuNheldqe .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qIuNheldqe .nav-item,
.cid-qIuNheldqe .nav-link,
.cid-qIuNheldqe .navbar-caption {
  font-weight: normal;
}
.cid-qIuNheldqe .nav-item:focus,
.cid-qIuNheldqe .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qIuNheldqe .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-qIuNheldqe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qIuNheldqe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qIuNheldqe .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qIuNheldqe .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qIuNheldqe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qIuNheldqe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qIuNheldqe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qIuNheldqe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qIuNheldqe .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #9d789b;
}
.cid-qIuNheldqe .navbar.opened {
  transition: all .3s;
  background: #9d789b !important;
}
.cid-qIuNheldqe .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qIuNheldqe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qIuNheldqe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qIuNheldqe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qIuNheldqe .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qIuNheldqe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qIuNheldqe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qIuNheldqe .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qIuNheldqe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qIuNheldqe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qIuNheldqe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qIuNheldqe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qIuNheldqe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qIuNheldqe .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qIuNheldqe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qIuNheldqe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qIuNheldqe .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-qIuNheldqe .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qIuNheldqe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qIuNheldqe .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qIuNheldqe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qIuNheldqe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qIuNheldqe .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qIuNheldqe .navbar.navbar-short {
  background: #9d789b !important;
  min-height: 60px;
}
.cid-qIuNheldqe .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qIuNheldqe .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qIuNheldqe .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qIuNheldqe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qIuNheldqe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qIuNheldqe .dropdown-item.active,
.cid-qIuNheldqe .dropdown-item:active {
  background-color: transparent;
}
.cid-qIuNheldqe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qIuNheldqe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qIuNheldqe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qIuNheldqe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9d789b;
}
.cid-qIuNheldqe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qIuNheldqe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qIuNheldqe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qIuNheldqe .navbar-buttons {
  text-align: center;
}
.cid-qIuNheldqe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qIuNheldqe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-qIuNheldqe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qIuNheldqe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qIuNheldqe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qIuNheldqe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qIuNheldqe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qIuNheldqe nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qIuNheldqe nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qIuNheldqe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qIuNheldqe .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qIuNheldqe a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qIuNheldqe .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-qIuNheldqe .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-qIuNheldqe .soc-item {
  margin: .5rem .3rem;
}
.cid-qIuNheldqe .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qIuNheldqe .navbar {
    height: 77px;
  }
  .cid-qIuNheldqe .navbar.opened {
    height: auto;
  }
  .cid-qIuNheldqe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rzBfcbdf3b {
  background-image: url("../../../assets/images/casino-games.jpg-1200x675.jpg");
}
.cid-rzBfcbdf3b .mbr-overlay {
  background: #232323;
}
.cid-rzBfcbdf3b .mbr-section-title {
  letter-spacing: -1px;
  color: #ffffff;
}
.cid-rzBfcbdf3b .mbr-section-subtitle {
  color: #232323;
}
.cid-qIjLr2VMr0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qIjLr2VMr0 .mbr-section-subtitle {
  color: #767676;
}
.cid-qIjLr2VMr0 .mbr-section-title {
  text-align: left;
}
.cid-qIjMfqP1Ii {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-qIjMfqP1Ii .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-qIjMfqP1Ii .mbr-section-title {
  color: #000000;
}
.cid-qIjMfqP1Ii .mbr-section-title DIV {
  text-align: left;
}
.cid-tT6WnW6WBG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tT6WnW6WBG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT6WnW6WBG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT6WnW6WBG .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tT6WnW6WBG .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tT6WnW6WBG .container {
    padding: 0 30px;
  }
}
.cid-tT6WnW6WBG .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tT6WnW6WBG .image-wrapper {
    height: auto;
    margin-bottom: 20px;
  }
}
.cid-tT6WnW6WBG .image-wrapper img {
  height: 500px;
  object-fit: cover;
  border-radius: 3em;
}
@media (max-width: 992px) {
  .cid-tT6WnW6WBG .image-wrapper img {
    height: 300px;
  }
}
.cid-tT6WnW6WBG .text-wrapper {
  margin-left: 32px;
  margin-left: 0;
  margin-right: 32px;
}
@media (max-width: 992px) {
  .cid-tT6WnW6WBG .text-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-tT6WnW6WBG .text-wrapper {
    margin: 0;
  }
}
.cid-tT6WnW6WBG .text-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tT6WnW6WBG .text-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tT6WnW6WBG .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tT6WnW6WBG .mbr-section-title {
  color: #ffffff;
}
.cid-tT6WnW6WBG .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tT6YQgL0gr {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tT6YQgL0gr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT6YQgL0gr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 1400px) {
  .cid-tT6YQgL0gr .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.cid-tT6YQgL0gr P {
  max-width: 1200px;
}
.cid-tT6YQgL0gr .mbr-section-btn,
.cid-tT6YQgL0gr .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tT6YQgL0gr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tT6YQgL0gr .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tT6YQgL0gr .image-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 992px) {
  .cid-tT6YQgL0gr .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tT6YQgL0gr .mbr-section-title {
  color: #000000;
}
.cid-tT6YQgL0gr .mbr-text,
.cid-tT6YQgL0gr .mbr-section-btn {
  color: #000000;
}
.cid-tT6YQgL0gr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tT6ZrZmWa0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/game-lounge-slot-tracker-1.png-795x435.png");
}
.cid-tT6ZrZmWa0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT6ZrZmWa0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT6ZrZmWa0 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tT6ZrZmWa0 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tT6ZrZmWa0 .container {
    padding: 0;
  }
}
.cid-tT6ZrZmWa0 .row {
  margin: 0;
}
.cid-tT6ZrZmWa0 .title-wrapper {
  padding: 150px 0;
}
@media (max-width: 992px) {
  .cid-tT6ZrZmWa0 .title-wrapper {
    padding: 90px 4px;
  }
}
@media (max-width: 768px) {
  .cid-tT6ZrZmWa0 .title-wrapper {
    padding: 30px 4px;
  }
}
.cid-tT6ZrZmWa0 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  letter-spacing: 3.4px;
}
.cid-tT6ZrZmWa0 .title-wrapper .mbr-section-title {
  margin-bottom: 25px;
}
@media (max-width: 992px) {
  .cid-tT6ZrZmWa0 .title-wrapper .mbr-section-title {
    margin-bottom: 15px;
  }
}
.cid-tT6ZrZmWa0 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tT6ZrZmWa0 .mbr-section-title {
  color: #ffffff;
}
.cid-tT6ZrZmWa0 .mbr-section-title,
.cid-tT6ZrZmWa0 .mbr-section-btn {
  text-align: center;
}
.cid-uQqdltkCqg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uQqdltkCqg .mbr-text {
  color: #232323;
}
.cid-uQqdltkCqg .mbr-subtitle {
  color: #767676;
}
.cid-tXVDHoDHsG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f7f7f7;
}
.cid-tXVDHoDHsG .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tXVDHoDHsG .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tXVDHoDHsG .container {
    padding: 0 25px;
  }
}
.cid-tXVDHoDHsG .row {
  margin: 0;
}
.cid-tXVDHoDHsG .row .card {
  padding: 0;
  justify-content: center;
}
.cid-tXVDHoDHsG .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 450px;
}
@media (max-width: 992px) {
  .cid-tXVDHoDHsG .image-wrapper {
    min-height: 350px;
  }
}
.cid-tXVDHoDHsG .image-wrapper img {
  border-radius: 0 10rem 0 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tXVDHoDHsG .title-wrapper {
  position: relative;
  padding: 0 12%;
}
@media (max-width: 992px) {
  .cid-tXVDHoDHsG .title-wrapper {
    padding: 45px 25px;
  }
}
.cid-tXVDHoDHsG .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tXVDHoDHsG .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tXVDHoDHsG .title-wrapper .mbr-section-btn {
  margin-top: 35px;
}
.cid-tXVDHoDHsG .mbr-section-title {
  color: #000000;
}
.cid-tXVDHoDHsG .mbr-text {
  color: #000000;
}
.cid-ufEzoBKbZJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #9d789b;
}
.cid-ufEzoBKbZJ .mbr-section-head {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ufEzoBKbZJ .mbr-section-head {
    margin-bottom: 16px;
  }
}
.cid-ufEzoBKbZJ .mbr-section-head .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-ufEzoBKbZJ .mbr-section-head .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
.cid-ufEzoBKbZJ .mbr-section-head .mbr-section-title {
  margin-bottom: 0;
}
.cid-ufEzoBKbZJ .google-map {
  height: 30rem;
  position: relative;
}
.cid-ufEzoBKbZJ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ufEzoBKbZJ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ufEzoBKbZJ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ufEzoBKbZJ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ufEzoBKbZJ .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ufEzoBKbZJ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tT70LCpjmn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tT70LCpjmn .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tT70LCpjmn .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-qIuNheldqe .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qIuNheldqe .nav-item,
.cid-qIuNheldqe .nav-link,
.cid-qIuNheldqe .navbar-caption {
  font-weight: normal;
}
.cid-qIuNheldqe .nav-item:focus,
.cid-qIuNheldqe .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qIuNheldqe .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-qIuNheldqe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qIuNheldqe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qIuNheldqe .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qIuNheldqe .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qIuNheldqe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qIuNheldqe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qIuNheldqe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qIuNheldqe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qIuNheldqe .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #9d789b;
}
.cid-qIuNheldqe .navbar.opened {
  transition: all .3s;
  background: #9d789b !important;
}
.cid-qIuNheldqe .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qIuNheldqe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qIuNheldqe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qIuNheldqe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qIuNheldqe .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qIuNheldqe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qIuNheldqe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qIuNheldqe .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qIuNheldqe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qIuNheldqe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qIuNheldqe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qIuNheldqe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qIuNheldqe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qIuNheldqe .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qIuNheldqe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qIuNheldqe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qIuNheldqe .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-qIuNheldqe .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qIuNheldqe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qIuNheldqe .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qIuNheldqe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qIuNheldqe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qIuNheldqe .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qIuNheldqe .navbar.navbar-short {
  background: #9d789b !important;
  min-height: 60px;
}
.cid-qIuNheldqe .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qIuNheldqe .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qIuNheldqe .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qIuNheldqe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qIuNheldqe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qIuNheldqe .dropdown-item.active,
.cid-qIuNheldqe .dropdown-item:active {
  background-color: transparent;
}
.cid-qIuNheldqe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qIuNheldqe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qIuNheldqe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qIuNheldqe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9d789b;
}
.cid-qIuNheldqe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qIuNheldqe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qIuNheldqe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qIuNheldqe .navbar-buttons {
  text-align: center;
}
.cid-qIuNheldqe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qIuNheldqe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-qIuNheldqe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qIuNheldqe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qIuNheldqe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qIuNheldqe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qIuNheldqe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qIuNheldqe nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qIuNheldqe nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qIuNheldqe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qIuNheldqe .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qIuNheldqe a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qIuNheldqe .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-qIuNheldqe .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-qIuNheldqe .soc-item {
  margin: .5rem .3rem;
}
.cid-qIuNheldqe .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qIuNheldqe .navbar {
    height: 77px;
  }
  .cid-qIuNheldqe .navbar.opened {
    height: auto;
  }
  .cid-qIuNheldqe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tT7jBlRtoG {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 45px;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 30%, #232323 30%, #232323 100%);
}
.cid-tT7jBlRtoG .animated-element {
  color: #efefef;
}
.cid-tT7jBlRtoG .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tT7jBlRtoG .mbr-section-subtitle {
  color: #9c88bc;
}
@media (min-width: 992px) {
  .cid-tT7jBlRtoG .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tT7jBlRtoG .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tT7jBlRtoG {
    background: #232323;
  }
  .cid-tT7jBlRtoG .img-block {
    padding-bottom: 2rem;
  }
}
.cid-tT7jBlRtoG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT7jBlRtoG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT7jBlRtoG .mbr-section-title {
  color: #ffffff;
}
.cid-tT7jBlRtoG .mbr-text,
.cid-tT7jBlRtoG .mbr-section-btn {
  color: #ffffff;
}
.cid-tT7meFe7d0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tT7meFe7d0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT7meFe7d0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT7meFe7d0 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tT7meFe7d0 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tT7meFe7d0 .container {
    padding: 0 24px;
  }
}
.cid-tT7meFe7d0 .row {
  justify-content: center;
}
.cid-tT7meFe7d0 .content-wrapper {
  border-radius: 40px;
  background-color: #9d789b;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-tT7meFe7d0 .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tT7meFe7d0 .content-wrapper {
    padding: 32px;
  }
}
.cid-tT7meFe7d0 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tT7meFe7d0 .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-tT7meFe7d0 .mbr-section-title {
  color: #000000;
}
.cid-tT7meFe7d0 .mbr-text {
  color: #ffffff;
}
.cid-uQqgTsFywb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #9d789b;
}
.cid-uQqgTsFywb .mbr-section-head {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uQqgTsFywb .mbr-section-head {
    margin-bottom: 16px;
  }
}
.cid-uQqgTsFywb .mbr-section-head .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-uQqgTsFywb .mbr-section-head .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
.cid-uQqgTsFywb .mbr-section-head .mbr-section-title {
  margin-bottom: 0;
}
.cid-uQqgTsFywb .google-map {
  height: 30rem;
  position: relative;
}
.cid-uQqgTsFywb .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uQqgTsFywb .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uQqgTsFywb .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uQqgTsFywb .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uQqgTsFywb .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uQqgTsFywb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tT70LCpjmn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tT70LCpjmn .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tT70LCpjmn .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uQqhoSPBK5 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQqhoSPBK5 .nav-item,
.cid-uQqhoSPBK5 .nav-link,
.cid-uQqhoSPBK5 .navbar-caption {
  font-weight: normal;
}
.cid-uQqhoSPBK5 .nav-item:focus,
.cid-uQqhoSPBK5 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uQqhoSPBK5 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uQqhoSPBK5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQqhoSPBK5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQqhoSPBK5 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uQqhoSPBK5 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uQqhoSPBK5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQqhoSPBK5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQqhoSPBK5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQqhoSPBK5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQqhoSPBK5 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #9d789b;
}
.cid-uQqhoSPBK5 .navbar.opened {
  transition: all .3s;
  background: #9d789b !important;
}
.cid-uQqhoSPBK5 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uQqhoSPBK5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQqhoSPBK5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQqhoSPBK5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQqhoSPBK5 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uQqhoSPBK5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQqhoSPBK5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQqhoSPBK5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uQqhoSPBK5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQqhoSPBK5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uQqhoSPBK5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uQqhoSPBK5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQqhoSPBK5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQqhoSPBK5 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uQqhoSPBK5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQqhoSPBK5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQqhoSPBK5 .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-uQqhoSPBK5 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQqhoSPBK5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQqhoSPBK5 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQqhoSPBK5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uQqhoSPBK5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQqhoSPBK5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uQqhoSPBK5 .navbar.navbar-short {
  background: #9d789b !important;
  min-height: 60px;
}
.cid-uQqhoSPBK5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQqhoSPBK5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQqhoSPBK5 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQqhoSPBK5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQqhoSPBK5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQqhoSPBK5 .dropdown-item.active,
.cid-uQqhoSPBK5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uQqhoSPBK5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQqhoSPBK5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQqhoSPBK5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQqhoSPBK5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9d789b;
}
.cid-uQqhoSPBK5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQqhoSPBK5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQqhoSPBK5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQqhoSPBK5 .navbar-buttons {
  text-align: center;
}
.cid-uQqhoSPBK5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uQqhoSPBK5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uQqhoSPBK5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uQqhoSPBK5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uQqhoSPBK5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uQqhoSPBK5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uQqhoSPBK5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQqhoSPBK5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uQqhoSPBK5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uQqhoSPBK5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQqhoSPBK5 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uQqhoSPBK5 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-uQqhoSPBK5 .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-uQqhoSPBK5 .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uQqhoSPBK5 .soc-item {
  margin: .5rem .3rem;
}
.cid-uQqhoSPBK5 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQqhoSPBK5 .navbar {
    height: 77px;
  }
  .cid-uQqhoSPBK5 .navbar.opened {
    height: auto;
  }
  .cid-uQqhoSPBK5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQqhoT7ymb {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 45px;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 30%, #232323 30%, #232323 100%);
}
.cid-uQqhoT7ymb .animated-element {
  color: #efefef;
}
.cid-uQqhoT7ymb .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uQqhoT7ymb .mbr-section-subtitle {
  color: #9c88bc;
}
@media (min-width: 992px) {
  .cid-uQqhoT7ymb .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uQqhoT7ymb .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-uQqhoT7ymb {
    background: #232323;
  }
  .cid-uQqhoT7ymb .img-block {
    padding-bottom: 2rem;
  }
}
.cid-uQqhoT7ymb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQqhoT7ymb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQqhoT7ymb .mbr-section-title {
  color: #ffffff;
}
.cid-uQqhoT7ymb .mbr-text,
.cid-uQqhoT7ymb .mbr-section-btn {
  color: #ffffff;
}
.cid-uQqhoTwOHG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQqhoTwOHG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQqhoTwOHG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQqhoTwOHG .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uQqhoTwOHG .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uQqhoTwOHG .container {
    padding: 0 24px;
  }
}
.cid-uQqhoTwOHG .row {
  justify-content: center;
}
.cid-uQqhoTwOHG .content-wrapper {
  border-radius: 40px;
  background-color: #9d789b;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-uQqhoTwOHG .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-uQqhoTwOHG .content-wrapper {
    padding: 32px;
  }
}
.cid-uQqhoTwOHG .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uQqhoTwOHG .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-uQqhoTwOHG .mbr-section-title {
  color: #000000;
}
.cid-uQqhoTwOHG .mbr-text {
  color: #ffffff;
}
.cid-uQqhoTJDCI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #9d789b;
}
.cid-uQqhoTJDCI .mbr-section-head {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uQqhoTJDCI .mbr-section-head {
    margin-bottom: 16px;
  }
}
.cid-uQqhoTJDCI .mbr-section-head .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-uQqhoTJDCI .mbr-section-head .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
.cid-uQqhoTJDCI .mbr-section-head .mbr-section-title {
  margin-bottom: 0;
}
.cid-uQqhoTJDCI .google-map {
  height: 30rem;
  position: relative;
}
.cid-uQqhoTJDCI .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uQqhoTJDCI .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uQqhoTJDCI .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uQqhoTJDCI .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uQqhoTJDCI .mbr-section-subtitle {
  color: #efefef;
  text-align: center;
}
.cid-uQqhoTJDCI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uQqhoTYBUs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uQqhoTYBUs .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uQqhoTYBUs .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uQqhpkiKuK .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQqhpkiKuK .nav-item,
.cid-uQqhpkiKuK .nav-link,
.cid-uQqhpkiKuK .navbar-caption {
  font-weight: normal;
}
.cid-uQqhpkiKuK .nav-item:focus,
.cid-uQqhpkiKuK .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uQqhpkiKuK .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uQqhpkiKuK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQqhpkiKuK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQqhpkiKuK .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uQqhpkiKuK .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uQqhpkiKuK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQqhpkiKuK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQqhpkiKuK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQqhpkiKuK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQqhpkiKuK .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #9d789b;
}
.cid-uQqhpkiKuK .navbar.opened {
  transition: all .3s;
  background: #9d789b !important;
}
.cid-uQqhpkiKuK .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uQqhpkiKuK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQqhpkiKuK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQqhpkiKuK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQqhpkiKuK .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uQqhpkiKuK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQqhpkiKuK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQqhpkiKuK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uQqhpkiKuK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQqhpkiKuK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uQqhpkiKuK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uQqhpkiKuK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQqhpkiKuK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQqhpkiKuK .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uQqhpkiKuK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQqhpkiKuK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQqhpkiKuK .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-uQqhpkiKuK .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQqhpkiKuK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQqhpkiKuK .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQqhpkiKuK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uQqhpkiKuK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQqhpkiKuK .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uQqhpkiKuK .navbar.navbar-short {
  background: #9d789b !important;
  min-height: 60px;
}
.cid-uQqhpkiKuK .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQqhpkiKuK .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQqhpkiKuK .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQqhpkiKuK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQqhpkiKuK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQqhpkiKuK .dropdown-item.active,
.cid-uQqhpkiKuK .dropdown-item:active {
  background-color: transparent;
}
.cid-uQqhpkiKuK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQqhpkiKuK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQqhpkiKuK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQqhpkiKuK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9d789b;
}
.cid-uQqhpkiKuK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQqhpkiKuK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQqhpkiKuK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQqhpkiKuK .navbar-buttons {
  text-align: center;
}
.cid-uQqhpkiKuK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uQqhpkiKuK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uQqhpkiKuK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uQqhpkiKuK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uQqhpkiKuK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uQqhpkiKuK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uQqhpkiKuK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQqhpkiKuK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uQqhpkiKuK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uQqhpkiKuK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQqhpkiKuK .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uQqhpkiKuK a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-uQqhpkiKuK .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-uQqhpkiKuK .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uQqhpkiKuK .soc-item {
  margin: .5rem .3rem;
}
.cid-uQqhpkiKuK .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQqhpkiKuK .navbar {
    height: 77px;
  }
  .cid-uQqhpkiKuK .navbar.opened {
    height: auto;
  }
  .cid-uQqhpkiKuK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQqhpkAEfh {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 45px;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 30%, #232323 30%, #232323 100%);
}
.cid-uQqhpkAEfh .animated-element {
  color: #efefef;
}
.cid-uQqhpkAEfh .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uQqhpkAEfh .mbr-section-subtitle {
  color: #9c88bc;
}
@media (min-width: 992px) {
  .cid-uQqhpkAEfh .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uQqhpkAEfh .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-uQqhpkAEfh {
    background: #232323;
  }
  .cid-uQqhpkAEfh .img-block {
    padding-bottom: 2rem;
  }
}
.cid-uQqhpkAEfh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQqhpkAEfh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQqhpkAEfh .mbr-section-title {
  color: #ffffff;
}
.cid-uQqhpkAEfh .mbr-text,
.cid-uQqhpkAEfh .mbr-section-btn {
  color: #ffffff;
}
.cid-uQqhpkVAIA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQqhpkVAIA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQqhpkVAIA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQqhpkVAIA .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uQqhpkVAIA .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uQqhpkVAIA .container {
    padding: 0 24px;
  }
}
.cid-uQqhpkVAIA .row {
  justify-content: center;
}
.cid-uQqhpkVAIA .content-wrapper {
  border-radius: 40px;
  background-color: #9d789b;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-uQqhpkVAIA .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-uQqhpkVAIA .content-wrapper {
    padding: 32px;
  }
}
.cid-uQqhpkVAIA .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uQqhpkVAIA .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-uQqhpkVAIA .mbr-section-title {
  color: #000000;
}
.cid-uQqhpkVAIA .mbr-text {
  color: #ffffff;
}
.cid-uQqhpl9jV8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #9d789b;
}
.cid-uQqhpl9jV8 .mbr-section-head {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uQqhpl9jV8 .mbr-section-head {
    margin-bottom: 16px;
  }
}
.cid-uQqhpl9jV8 .mbr-section-head .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-uQqhpl9jV8 .mbr-section-head .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
.cid-uQqhpl9jV8 .mbr-section-head .mbr-section-title {
  margin-bottom: 0;
}
.cid-uQqhpl9jV8 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uQqhpl9jV8 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uQqhpl9jV8 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uQqhpl9jV8 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uQqhpl9jV8 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uQqhpl9jV8 .mbr-section-subtitle {
  color: #efefef;
  text-align: center;
}
.cid-uQqhpl9jV8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uQqhploO8J {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uQqhploO8J .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uQqhploO8J .media-container-row .mbr-text {
  color: #ffffff;
}
