body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Cinzel', serif;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 8px;
}
.display-1 > .mbr-iconfont {
  font-size: 6.4rem;
}
.display-2 {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 6px;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
/* LUXURY UNDERLINE */
.display-2::after {
  content: "";
  display: block;
  width: 110px;
  height: 1px;
  margin: 25px auto 0;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  opacity: 0.6;
  animation: luxBreath 3s ease-in-out infinite;
}
.display-4 {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 3px;
  line-height: 1.4;
  font-weight: 500;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- 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.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 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.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 2.5rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #d4af37 !important;
}
.bg-success {
  background-color: #f1e5ac !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #f5e6c8 !important;
}
.bg-danger {
  background-color: #d4af37 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #d4af37 !important;
  border-color: #d4af37 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #9d8022 !important;
  border-color: #9d8022 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #9d8022 !important;
  border-color: #9d8022 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #fff8dc !important;
  border-color: #fff8dc !important;
  color: #dcb000 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #dcb000 !important;
  background-color: #ffe990 !important;
  border-color: #ffe990 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #dcb000 !important;
  background-color: #ffe990 !important;
  border-color: #ffe990 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f1e5ac !important;
  border-color: #f1e5ac !important;
  color: #877417 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #877417 !important;
  background-color: #e6d06b !important;
  border-color: #e6d06b !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #877417 !important;
  background-color: #e6d06b !important;
  border-color: #e6d06b !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f5e6c8 !important;
  border-color: #f5e6c8 !important;
  color: #a1751d !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #a1751d !important;
  background-color: #e9c987 !important;
  border-color: #e9c987 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #a1751d !important;
  background-color: #e9c987 !important;
  border-color: #e9c987 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #d4af37 !important;
  border-color: #d4af37 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #9d8022 !important;
  border-color: #9d8022 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #9d8022 !important;
  border-color: #9d8022 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  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-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  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-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #886f1d;
  color: #886f1d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #d4af37;
  border-color: #d4af37;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #d4af37 !important;
  border-color: #d4af37 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #ffe476;
  color: #ffe476;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #dcb000;
  background-color: #fff8dc;
  border-color: #fff8dc;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #dcb000 !important;
  background-color: #fff8dc !important;
  border-color: #fff8dc !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #e2ca55;
  color: #e2ca55;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #877417;
  background-color: #f1e5ac;
  border-color: #f1e5ac;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #877417 !important;
  background-color: #f1e5ac !important;
  border-color: #f1e5ac !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #e5bf72;
  color: #e5bf72;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #a1751d;
  background-color: #f5e6c8;
  border-color: #f5e6c8;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #a1751d !important;
  background-color: #f5e6c8 !important;
  border-color: #f5e6c8 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #886f1d;
  color: #886f1d;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #d4af37;
  border-color: #d4af37;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #d4af37 !important;
  border-color: #d4af37 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  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;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #d4af37 !important;
}
.text-secondary {
  color: #fff8dc !important;
}
.text-success {
  color: #f1e5ac !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #f5e6c8 !important;
}
.text-danger {
  color: #d4af37 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #101010 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #886f1d !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #ffe476 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #e2ca55 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #e5bf72 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #d4af37 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #f5e6c8;
}
.alert-danger {
  background-color: #d4af37;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.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;
  -webkit-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: #d4af37;
  border-color: #d4af37;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #d4af37;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f8f2df;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #f8f2df;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #d4af37;
}
/* Forms */
.mbr-form .btn {
  margin: .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 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #d4af37;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #d4af37;
  border-bottom-color: #d4af37;
}
.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='%23d4af37' %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;
}
hr {
  border: none;
  background-color: #d4af37;
  height: 3px;
  width: 72px;
  position: absolute;
  top: -3.5rem;
  display: inline-block;
}
.line-title {
  width: 40px;
  height: 2px;
  background-color: #d4af37;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.line-title-big {
  width: 72px;
  height: 3px;
  background-color: #d4af37;
  margin-bottom: 2rem;
  display: inline-block;
}
.vertical-line:before {
  content: '';
  background-color: #d4af37;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.mbr-section-btn .btn-danger,
.btn-warning,
.btn-white,
.btn-black,
.btn-secondary,
.btn-primary,
.btn-info,
.btn-success {
  position: relative;
  background-color: #ffffff;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.mbr-section-btn .btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0, 1.01);
  transform-origin: 0% 50%;
}
.btn-white {
  color: #d4af37 !important;
}
.btn-danger:hover {
  color: #d4af37 !important;
}
.btn-warning:hover {
  color: #f5e6c8 !important;
}
.btn-success:hover {
  color: #f1e5ac !important;
}
.btn-info:hover {
  color: #82786e !important;
}
.btn-black:hover {
  color: #000000 !important;
}
.btn-white:hover {
  color: #000000 !important;
}
.btn-secondary:hover {
  color: #fff8dc !important;
}
.btn-primary:hover {
  color: #d4af37 !important;
}
.btn:hover::before {
  background-color: #ffffff;
  transform: scaleX(1);
}
.btn-white {
  color: #d4af37 !important;
}
.mbr-section-btn .btn-danger-outline {
  border-color: #d4af37;
}
.mbr-section-btn .btn-danger-outline,
.btn-warning-outline,
.btn-white-outline,
.btn-black-outline,
.btn-secondary-outline,
.btn-primary-outline,
.btn-info-outline,
.btn-success-outline {
  position: relative;
  background-color: transparent !important;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.btn-danger-outline {
  color: #ffffff !important;
}
.btn-secondary-outline:hover::before {
  background-color: #fff8dc !important;
}
.btn-success-outline:hover::before {
  background-color: #f1e5ac !important;
}
.btn-info-outline:hover::before {
  background-color: #82786e !important;
}
.btn-primary-outline:hover::before {
  background-color: #d4af37 !important;
}
.btn-white-outline:hover::before {
  background-color: #ffffff !important;
}
.btn-black-outline:hover::before {
  background-color: #000000 !important;
}
.btn-black-outline:hover::before {
  background-color: #f5e6c8 !important;
}
.btn-danger-outline:hover::before {
  background-color: #d4af37 !important;
}
.lotus-grandeur- {
  font-family: 'Cinzel', serif;
  font-size: 1.7rem;
  line-height: 1.5;
}
.lotus-grandeur- > .mbr-iconfont {
  font-size: 1.7rem;
}
@keyframes luxBreath {
  0% {
    opacity: 0.3;
    transform: scaleX(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0.3;
    transform: scaleX(0.6);
  }
}
/* ===== LOTUS GRANDEURE TYPOGRAPHY (FINAL OVERRIDE) ===== */
body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.95;
  letter-spacing: 0.5px;
  color: #1a1a1a;
}
p,
.mbr-text {
  font-size: 18px;
  line-height: 1.95;
  letter-spacing: 0.55px;
  max-width: 720px;
  margin: 0 auto 22px;
}
.mbr-text p:first-child {
  font-size: 20px;
}
/* DARK BACKGROUND FIX */
.bg-dark p,
.bg-black p {
  color: rgba(255, 255, 255, 0.78);
}
/* WRAPPER */
.lux-select {
  position: relative;
  width: 100%;
  font-family: "Cinzel", serif;
}
/* TRIGGER */
.lux-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  background: #000;
  color: #fff8dc;
  cursor: pointer;
}
/* ARROW */
.lux-arrow {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #d4af37;
  border-bottom: 1.5px solid #d4af37;
  transform: rotate(45deg);
  transition: 0.3s ease;
}
/* OPTIONS */
.lux-select-options {
  position: absolute;
  top: 105%;
  left: 0;
  width: 100%;
  background: #000;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  display: none;
  z-index: 9999;
}
/* OPTION ITEM */
.lux-select-options div {
  padding: 14px 16px;
  color: #fff8dc;
  transition: 0.25s ease;
}
/* GOLD HOVER */
.lux-select-options div:hover {
  background: rgba(212, 175, 55, 0.08);
  color: #d4af37;
}
/* ACTIVE STATE */
.lux-select.open .lux-select-options {
  display: block;
}
.lux-select.open .lux-arrow {
  transform: rotate(-135deg);
}
/* FIX MOBIRISE OVERFLOW ISSUES */
.form-group,
.mbr-form,
.dragArea {
  overflow: visible !important;
}
/* =========================
   MOBILE LUXURY RHYTHM
========================= */
@media (max-width: 768px) {
  /* SECTION SPACING */
  section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  /* REMOVE RANDOM GAPS */
  .mbr-section,
  .container,
  .container-fluid {
    margin: 0 !important;
  }
  /* ROW CONTROL */
  .row {
    margin-bottom: 0 !important;
  }
  /* TITLE SPACING */
  .mbr-section-title {
    margin-bottom: 16px !important;
  }
  /* TEXT SPACING */
  .mbr-text {
    margin-bottom: 16px !important;
  }
  /* IMAGE SPACING */
  .image-wrapper {
    margin-bottom: 24px !important;
  }
  /* FORM SPACING */
  .lux-field {
    margin-bottom: 16px !important;
  }
  .lux-form {
    margin-top: 24px;
  }
  /* BUTTON SPACING */
  .btn {
    margin-top: 24px !important;
  }
  /* CARD / BLOCK SPACING */
  .card,
  .card-wrapper {
    margin-bottom: 24px !important;
  }
  /* REMOVE EXTRA WRAPPER SPACING */
  .title-wrapper,
  .content-wrapper,
  .form-wrap {
    margin-bottom: 0 !important;
  }
}
.lux-microcopy {
  margin-top: 16px;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: rgba(255, 248, 220, 0.55);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
/* BLACK TRANSITION INSTEAD OF WHITE */
.mbr-preloader,
.mbr-loader {
  background: #000 !important;
}
/* KILL DATETIME PICKER UI */
.xdsoft_datetimepicker,
.xdsoft_overlay,
.xdsoft_loader {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
.cid-veXnEhGRlw {
  z-index: 1000;
  width: 100%;
}
.cid-veXnEhGRlw nav.navbar {
  position: fixed;
}
.cid-veXnEhGRlw .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-veXnEhGRlw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-veXnEhGRlw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-veXnEhGRlw .dropdown-item:hover,
.cid-veXnEhGRlw .dropdown-item:focus {
  background: #d4af37 !important;
  color: black !important;
}
.cid-veXnEhGRlw .dropdown-item:hover span {
  color: white;
}
.cid-veXnEhGRlw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-veXnEhGRlw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-veXnEhGRlw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-veXnEhGRlw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-veXnEhGRlw .nav-link {
  position: relative;
}
.cid-veXnEhGRlw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-veXnEhGRlw .container {
    flex-wrap: nowrap;
  }
}
.cid-veXnEhGRlw .iconfont-wrapper {
  color: #ff014e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-veXnEhGRlw .navbar-nav .nav-item {
  margin: 10px 14px !important;
}
.cid-veXnEhGRlw .navbar-nav .nav-item .nav-link {
  margin: 5px 10px !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 0.5;
}
.cid-veXnEhGRlw .navbar-nav .nav-item .nav-link:hover,
.cid-veXnEhGRlw .navbar-nav .nav-item .nav-link:focus,
.cid-veXnEhGRlw .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #d4af37 !important;
}
.cid-veXnEhGRlw .dropdown-menu,
.cid-veXnEhGRlw .navbar.opened {
  background: #0e0e0e !important;
}
.cid-veXnEhGRlw .nav-item:focus,
.cid-veXnEhGRlw .nav-link:focus {
  outline: none;
}
.cid-veXnEhGRlw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-veXnEhGRlw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-veXnEhGRlw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-veXnEhGRlw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-veXnEhGRlw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-veXnEhGRlw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-veXnEhGRlw .navbar {
  min-height: 122px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0e0e0e;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-veXnEhGRlw .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-veXnEhGRlw .navbar.opened {
  transition: all 0.3s;
}
.cid-veXnEhGRlw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-veXnEhGRlw .navbar .navbar-logo img {
  width: auto;
}
.cid-veXnEhGRlw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-veXnEhGRlw .navbar.collapsed {
  justify-content: center;
}
.cid-veXnEhGRlw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-veXnEhGRlw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-veXnEhGRlw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-veXnEhGRlw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-veXnEhGRlw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-veXnEhGRlw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-veXnEhGRlw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-veXnEhGRlw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-veXnEhGRlw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-veXnEhGRlw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-veXnEhGRlw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-veXnEhGRlw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-veXnEhGRlw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-veXnEhGRlw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-veXnEhGRlw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-veXnEhGRlw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-veXnEhGRlw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-veXnEhGRlw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-veXnEhGRlw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-veXnEhGRlw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-veXnEhGRlw .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-veXnEhGRlw .navbar.navbar-short {
  min-height: 90px;
}
.cid-veXnEhGRlw .navbar.navbar-short .navbar-logo img {
  height: 4.2rem !important;
}
.cid-veXnEhGRlw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-veXnEhGRlw .navbar {
    min-height: 80px;
  }
}
.cid-veXnEhGRlw .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-veXnEhGRlw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-veXnEhGRlw .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-veXnEhGRlw .navbar-brand {
    min-height: 69px;
  }
}
.cid-veXnEhGRlw .dropdown-item.active,
.cid-veXnEhGRlw .dropdown-item:active {
  background-color: transparent;
}
.cid-veXnEhGRlw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-veXnEhGRlw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-veXnEhGRlw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-veXnEhGRlw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e0e0e;
}
.cid-veXnEhGRlw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-veXnEhGRlw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-veXnEhGRlw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-veXnEhGRlw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-veXnEhGRlw button.navbar-toggler {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-veXnEhGRlw button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-veXnEhGRlw button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-veXnEhGRlw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #d4af37;
}
.cid-veXnEhGRlw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-veXnEhGRlw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-veXnEhGRlw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-veXnEhGRlw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-veXnEhGRlw nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veXnEhGRlw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-veXnEhGRlw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-veXnEhGRlw nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veXnEhGRlw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-veXnEhGRlw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-veXnEhGRlw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-veXnEhGRlw .navbar {
    height: 70px;
  }
  .cid-veXnEhGRlw .navbar.opened {
    height: auto;
  }
  .cid-veXnEhGRlw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-veXnEhGRlw .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #0e0e0e;
}
@media (max-width: 575px) {
  .cid-veXnEhGRlw .navbar-short {
    min-height: 70px;
  }
}
.cid-veXnEhGRlw .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-veXnEhGRlw .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-veXnEhGRlw .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-veXnEhGRlw .container-fluid {
    padding: 0 3px;
  }
}
.cid-veXnEhGRlw .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-veXnEhGRlw .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-veXnEhGRlw .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-veXnEhGRlw .container-fluid {
    flex-wrap: wrap;
  }
  .cid-veXnEhGRlw button.navbar-toggler {
    display: flex;
  }
  .cid-veXnEhGRlw .navbar-brand {
    width: auto !important;
  }
  .cid-veXnEhGRlw .navbar-collapse {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cid-veXnEhGRlw .navbar-collapse .nav-item {
    margin: 8px 0 !important;
  }
  .cid-veXnEhGRlw .navbar-collapse .nav-item .nav-link {
    margin: 0 !important;
    padding: 0 !important;
    transition: 0.3s all;
    opacity: 1;
    justify-content: left;
  }
  .cid-veXnEhGRlw .navbar-collapse .nav-item .nav-link:hover {
    opacity: 1;
    color: #FFFFFF !important;
  }
  .cid-veXnEhGRlw .icons-menu {
    margin-top: 10px;
    justify-content: left;
  }
  .cid-veXnEhGRlw .navbar-buttons {
    margin-top: 20px;
    text-align: left;
    margin-left: -0.6rem;
    margin-right: -0.6rem;
  }
}
.cid-veXJNvPWQZ {
  background-image: url("../../../assets/images/luxury-indian-wedding-reception-venue-lotus-grandeure.webp");
}
.cid-veXJNvPWQZ .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-veXJNvPWQZ .mbr-text {
  margin-bottom: 2.7rem;
}
@media (max-width: 767px) {
  .cid-veXJNvPWQZ .align-center {
    text-align: center;
  }
}
.cid-veXJNvPWQZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-veXJNvPWQZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veXJNvPWQZ H1 {
  color: #f5f5f5;
}
.cid-veXJNvPWQZ H3 {
  color: #f5f5f5;
}
.cid-veXJNvPWQZ .mbr-text,
.cid-veXJNvPWQZ .mbr-section-btn {
  color: #f5f5f5;
}
.cid-vfBj6joaYp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0c0c0c;
}
.cid-vfBj6joaYp .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfBj6joaYp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfBj6joaYp .row {
  margin: 0 -20px;
}
.cid-vfBj6joaYp .row .card {
  padding: 0 20px;
  justify-content: space-between;
}
.cid-vfBj6joaYp .image-wrapper {
  position: relative;
  min-height: auto !important;
  overflow: hidden;
  border-radius: 18px;
  transition: 0.6s;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  height: auto !important;
  padding: 0 !important;
  margin: 0 auto;
  max-width: 100% !important;
}
@media (max-width: 1440px) {
  .cid-vfBj6joaYp .image-wrapper {
    min-height: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-vfBj6joaYp .image-wrapper {
    min-height: 450px;
  }
}
@media (max-width: 992px) {
  .cid-vfBj6joaYp .image-wrapper {
    min-height: auto;
    height: 300px;
    margin-bottom: 40px;
  }
}
.cid-vfBj6joaYp .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vfBj6joaYp .content-wrapper .mbr-label {
  margin-bottom: 12px;
}
.cid-vfBj6joaYp .content-wrapper .mbr-section-title {
  margin-bottom: 12px;
}
.cid-vfBj6joaYp .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vfBj6joaYp .mbr-section-btn {
  margin-top: 16px;
}
.cid-vfBj6joaYp .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vfBj6joaYp .mbr-label {
  color: #a8a8a8;
}
.cid-vfBj6joaYp .mbr-section-title,
.cid-vfBj6joaYp .mbr-section-btn {
  color: #d4af37;
}
.cid-vfBj6joaYp .mbr-text,
.cid-vfBj6joaYp .text-wrapper {
  color: #0e0e0e;
}
.cid-vfBj6joaYp .mbr-text,
.cid-vfBj6joaYp p {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 20px !important;
  line-height: 1.9 !important;
  letter-spacing: 0.6px !important;
  color: rgba(255, 255, 255, 0.75) !important;
  max-width: 680px;
  margin-left: 0 !important;
}
.cid-vfBj6joaYp .mbr-text p:first-child {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.9);
}
.cid-vfBj6joaYp .luxury-image {
  position: relative;
  display: inline-block;
  border-radius: 18px;
  overflow: hidden;
  transform: translateZ(0);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 rgba(212, 175, 55, 0);
  transition: 0.6s;
  animation: floatLuxury 6s ease-in-out infinite;
}
.cid-vfBj6joaYp .luxury-image img {
  display: block;
  width: 100%;
  border-radius: 18px;
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 1;
}
.cid-vfBj6joaYp .luxury-image:hover img {
  transform: scale(1.05);
}
.cid-vfBj6joaYp .luxury-image::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(45deg, rgba(212, 175, 55, 0.6), transparent, rgba(212, 175, 55, 0.6));
  opacity: 0;
  transition: 0.6s;
  filter: blur(8px);
  z-index: 0;
}
.cid-vfBj6joaYp .luxury-image:hover::before {
  opacity: 1;
}
.cid-vfBj6joaYp .luxury-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), rgba(212, 175, 55, 0.4), transparent);
  transform: skewX(-25deg);
  transition: 1s;
  z-index: 2;
  pointer-events: none;
}
.cid-vfBj6joaYp .luxury-image:hover::after {
  left: 130%;
}
.cid-vfBj6joaYp .luxury-image:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9), 0 0 40px rgba(212, 175, 55, 0.15);
}
@keyframes floatLuxury {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.cid-vfBj6joaYp .mbr-figure,
.cid-vfBj6joaYp .mbr-figure img {
  position: relative;
}
.cid-vfBj6joaYp .mbr-figure img {
  border-radius: 18px;
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}
.cid-vfBj6joaYp .mbr-figure:hover img {
  transform: scale(1.05);
}
.cid-vfBj6joaYp .mbr-figure::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  background: linear-gradient(45deg, rgba(212, 175, 55, 0.6), transparent, rgba(212, 175, 55, 0.6));
  opacity: 0;
  filter: blur(10px);
  transition: 0.6s;
  z-index: 0;
}
.cid-vfBj6joaYp .mbr-figure:hover::before {
  opacity: 1;
}
.cid-vfBj6joaYp .mbr-figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), rgba(212, 175, 55, 0.5), transparent);
  transform: skewX(-25deg);
  transition: 1s;
  z-index: 2;
  pointer-events: none;
}
.cid-vfBj6joaYp .mbr-figure:hover::after {
  left: 130%;
}
.cid-vfBj6joaYp .mbr-figure {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  transition: 0.6s;
}
.cid-vfBj6joaYp .mbr-figure:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9), 0 0 40px rgba(212, 175, 55, 0.2);
}
.cid-vfBj6joaYp .image-wrapper img {
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 auto;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}
.cid-vfBj6joaYp .image-wrapper:hover img {
  transform: scale(1.05);
}
.cid-vfBj6joaYp .image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(212, 175, 55, 0.7), rgba(255, 255, 255, 0.3), rgba(212, 175, 55, 0.7), transparent);
  transform: skewX(-25deg);
  transition: 1s ease;
  z-index: 5;
  pointer-events: none;
}
.cid-vfBj6joaYp .image-wrapper:hover::after {
  left: 130%;
}
.cid-vfBj6joaYp .image-wrapper::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(45deg, rgba(212, 175, 55, 0.6), transparent, rgba(212, 175, 55, 0.6));
  opacity: 0;
  filter: blur(8px);
  transition: 0.6s;
  z-index: 1;
}
.cid-vfBj6joaYp .image-wrapper:hover::before {
  opacity: 1;
}
.cid-vfBj6joaYp .image-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9), 0 0 40px rgba(212, 175, 55, 0.2);
}
.cid-vf2b64FKQh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0c0c0c;
}
.cid-vf2b64FKQh .mbr-fallback-image.disabled {
  display: none;
}
.cid-vf2b64FKQh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vf2b64FKQh .content-wrap {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-vf2b64FKQh .content-wrap {
    margin-bottom: 32px;
  }
}
.cid-vf2b64FKQh .content-wrap .label-wrapper {
  margin-bottom: 16px;
}
.cid-vf2b64FKQh .content-wrap .label-wrapper .mbr-label {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #f7f7f7;
}
.cid-vf2b64FKQh .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vf2b64FKQh .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vf2b64FKQh .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vf2b64FKQh .items-wrapper {
  margin: 0 -10px;
}
.cid-vf2b64FKQh .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-vf2b64FKQh .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vf2b64FKQh .item .item-wrapper {
  height: 100%;
  background-color: #d4af37;
  padding: 8px;
}
.cid-vf2b64FKQh .item .item-wrapper .card-box {
  height: 100%;
  padding: 24px;
  background-color: #0c0c0c;
}
.cid-vf2b64FKQh .item .item-wrapper .card-box .iconfont-wrapper {
  margin-bottom: 24px;
}
.cid-vf2b64FKQh .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  width: 24px;
  height: 24px;
  font-size: 24px;
}
.cid-vf2b64FKQh .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-vf2b64FKQh .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-vf2b64FKQh .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 14px;
}
.cid-vf2b64FKQh .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vf2b64FKQh .mbr-label,
.cid-vf2b64FKQh .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vf2b64FKQh .mbr-section-title {
  color: #d4af37;
}
.cid-vf2b64FKQh .item-title,
.cid-vf2b64FKQh .mbr-section-btn,
.cid-vf2b64FKQh .iconfont-wrapper {
  color: #d4af37;
}
.cid-vf2b64FKQh .item-text {
  color: #f8f6f1;
}
.cid-vf2b64FKQh .mbr-text,
.cid-vf2b64FKQh .text-wrapper {
  color: #f8f6f1;
}
.cid-vfDVtKpkAv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0c0c0c;
}
.cid-vfDVtKpkAv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfDVtKpkAv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfDVtKpkAv .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vfDVtKpkAv .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-vfDVtKpkAv .items-wrap {
  justify-content: center;
  margin: 0 -46px;
}
.cid-vfDVtKpkAv .items-wrap .item {
  padding: 0 46px;
}
.cid-vfDVtKpkAv .item {
  margin-bottom: 32px;
}
.cid-vfDVtKpkAv .item:hover .item-wrapper .item-img img,
.cid-vfDVtKpkAv .item:focus .item-wrapper .item-img img {
  transform: scale(1.1);
}
.cid-vfDVtKpkAv .item .item-wrapper .item-desc {
  margin-bottom: 22px;
}
.cid-vfDVtKpkAv .item .item-wrapper .item-img {
  margin-bottom: 22px;
}
.cid-vfDVtKpkAv .item .item-wrapper .item-img .image-wrapper {
  overflow: hidden;
}
.cid-vfDVtKpkAv .item .item-wrapper .item-img .image-wrapper img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-vfDVtKpkAv .item .item-wrapper .item-img .image-wrapper img {
    height: 350px;
  }
}
.cid-vfDVtKpkAv .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.cid-vfDVtKpkAv .item .item-wrapper .item-content .item-name {
  margin-bottom: 0;
}
.cid-vfDVtKpkAv .mbr-section-btn {
  margin-top: 42px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vfDVtKpkAv .mbr-section-btn {
    margin-top: 22px;
  }
}
.cid-vfDVtKpkAv .mbr-section-title,
.cid-vfDVtKpkAv .mbr-section-btn {
  color: #d4af37;
}
.cid-vfDVtKpkAv .item-title {
  color: #d4af37;
}
.cid-vfDVtKpkAv .item-name {
  color: #f8f6f1;
}
.cid-vhFA8MzT7n {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #0c0c0c;
}
.cid-vhFA8MzT7n .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vhFA8MzT7n .item {
    margin-bottom: 1rem;
  }
}
.cid-vhFA8MzT7n .item-wrapper {
  position: relative;
}
.cid-vhFA8MzT7n .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-vhFA8MzT7n .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-vhFA8MzT7n .carousel-control,
.cid-vhFA8MzT7n .close {
  background: #1b1b1b;
}
.cid-vhFA8MzT7n .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vhFA8MzT7n .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vhFA8MzT7n .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vhFA8MzT7n .carousel-control-next span {
  margin-left: 5px;
}
.cid-vhFA8MzT7n .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vhFA8MzT7n .close::before {
  content: '\e91a';
}
.cid-vhFA8MzT7n .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vhFA8MzT7n .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vhFA8MzT7n .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhFA8MzT7n .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vhFA8MzT7n .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vhFA8MzT7n .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vhFA8MzT7n .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-vhFA8MzT7n .carousel-indicators li.active,
.cid-vhFA8MzT7n .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vhFA8MzT7n .carousel-indicators li::after,
.cid-vhFA8MzT7n .carousel-indicators li::before {
  content: none;
}
.cid-vhFA8MzT7n .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vhFA8MzT7n .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vhFA8MzT7n .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vhFA8MzT7n .carousel-indicators {
    display: none;
  }
}
.cid-vhFA8MzT7n .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vhFA8MzT7n .carousel-inner > .active {
  display: block;
}
.cid-vhFA8MzT7n .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vhFA8MzT7n .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vhFA8MzT7n .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vhFA8MzT7n .carousel-control,
  .cid-vhFA8MzT7n .carousel-indicators,
  .cid-vhFA8MzT7n .modal .close {
    position: fixed;
  }
  .cid-vhFA8MzT7n .mbr-gallery:hover .item {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 767px) {
  .cid-vhFA8MzT7n .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vhFA8MzT7n .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vhFA8MzT7n .carousel-indicators .active,
.cid-vhFA8MzT7n .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vhFA8MzT7n .carousel-indicators .active {
  background: #fff;
}
.cid-vhFA8MzT7n .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vhFA8MzT7n .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vhFA8MzT7n .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vhFA8MzT7n .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vhFA8MzT7n .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vhFA8MzT7n .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vhFA8MzT7n .carousel {
  width: 100%;
}
.cid-vhFA8MzT7n .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vhFA8MzT7n .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vhFA8MzT7n .modal.fade .modal-dialog,
.cid-vhFA8MzT7n .modal.in .modal-dialog {
  transform: none;
}
.cid-vhFA8MzT7n .mbr-gallery .item-wrapper {
  cursor: pointer;
  position: relative !important;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.cid-vhFA8MzT7n .content-head {
  max-width: 800px;
}
.cid-vhFA8MzT7n .mbr-section-title {
  color: #d4af37;
}
.cid-vhFA8MzT7n .lux-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  transition: 0.4s;
}
.cid-vhFA8MzT7n .lux-card img {
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.cid-vhFA8MzT7n .lux-card:hover img {
  transform: scale(1.12) rotate(0.5deg);
  filter: brightness(1.1) contrast(1.05);
}
.cid-vhFA8MzT7n .lux-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1.5px;
  background: linear-gradient(45deg, transparent, #d4af37, transparent);
  opacity: 0;
  transition: 0.5s;
  -webkit-mask: linear-gradient(#000000 0 0) content-box, linear-gradient(#000000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.cid-vhFA8MzT7n .lux-card:hover::before {
  opacity: 1;
}
.cid-vhFA8MzT7n .lux-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(212, 175, 55, 0.4), transparent);
  transform: skewX(-20deg);
}
.cid-vhFA8MzT7n .lux-card:hover::after {
  animation: goldSweep 1.2s ease forwards;
}
@keyframes goldSweep {
  0% {
    left: -120%;
  }
  100% {
    left: 150%;
  }
}
.cid-vhFA8MzT7n .lux-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: 0.5s;
}
.cid-vhFA8MzT7n .lux-card:hover .overlay {
  opacity: 1;
}
.cid-vhFA8MzT7n .lux-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.2);
}
.cid-vhFA8MzT7n .mbr-gallery .icon-focus,
.cid-vhFA8MzT7n .mbr-gallery .icon-magnifier,
.cid-vhFA8MzT7n .mbr-gallery .mbr-overlay .mbr-iconfont {
  display: none !important;
  opacity: 0 !important;
}
.cid-vhFA8MzT7n .mbr-gallery .item-wrapper img {
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 1;
}
.cid-vhFA8MzT7n .mbr-gallery .item-wrapper:hover img {
  transform: scale(1.08);
}
.cid-vhFA8MzT7n .mbr-gallery .item-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(212, 175, 55, 0.6), rgba(255, 255, 255, 0.25), rgba(212, 175, 55, 0.6), transparent);
  opacity: 0;
  transition: all 0.9s ease;
  box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.05);
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  transform: skewX(-25deg);
  z-index: 5;
  pointer-events: none;
}
.cid-vhFA8MzT7n .mbr-gallery .item-wrapper:hover::after {
  opacity: 1;
  left: 130%;
}
.cid-vhFA8MzT7n .mbr-gallery .item-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(212, 175, 55, 0.5), transparent);
  transform: skewX(-25deg);
  transition: 0.8s;
  z-index: 3;
}
.cid-vhFA8MzT7n .mbr-gallery .item-wrapper:hover::before {
  left: 130%;
}
.cid-vhFA8MzT7n .mbr-gallery .item-wrapper:hover {
  border: 1px solid rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), 0 10px 40px rgba(0, 0, 0, 0.6);
  transform: translateY(-8px);
}
.cid-vhFA8MzT7n .mbr-gallery .icon-focus,
.cid-vhFA8MzT7n .mbr-gallery .icon-magnifier,
.cid-vhFA8MzT7n .mbr-gallery .mbr-overlay .mbr-iconfont,
.cid-vhFA8MzT7n .mbr-gallery .mbr-overlay .iconfont-wrapper {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
.cid-vhFA8MzT7n .mbr-gallery .item-wrapper a {
  pointer-events: none !important;
  cursor: default !important;
}
.cid-vhFA8MzT7n .mbr-gallery .mbr-overlay {
  pointer-events: none !important;
  background: transparent !important;
}
.cid-vhFA8MzT7n .mbr-gallery .mbr-iconfont,
.cid-vhFA8MzT7n .mbr-gallery .icon-focus,
.cid-vhFA8MzT7n .mbr-gallery .icon-magnifier,
.cid-vhFA8MzT7n .mbr-gallery .iconfont-wrapper,
.cid-vhFA8MzT7n .mbr-gallery [class*="icon"] {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
.cid-vhFA8MzT7n .mbr-gallery .item-wrapper::before,
.cid-vhFA8MzT7n .mbr-gallery .mbr-overlay::before {
  content: none !important;
  display: none !important;
}
.cid-vhFA8MzT7n .mbr-gallery .mbr-iconfont,
.cid-vhFA8MzT7n .mbr-gallery .icon-focus,
.cid-vhFA8MzT7n .mbr-gallery .icon-magnifier,
.cid-vhFA8MzT7n .mbr-gallery .iconfont-wrapper {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
.cid-vhFA8MzT7n .mbr-gallery .mbr-overlay::before {
  content: none !important;
}
.cid-vhO9giOhQr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0c0c0c;
  overflow: hidden;
}
.cid-vhO9giOhQr .mbr-overlay {
  z-index: 1;
}
.cid-vhO9giOhQr .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-vhO9giOhQr .mbr-section-title {
  color: #FF014E;
}
.cid-vhO9giOhQr .mbr-section-subtitle {
  color: #d4af37;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vhO9giOhQr .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-vhO9giOhQr .carousel-wrapper {
  margin: 0 75px;
}
@media (max-width: 1199px) {
  .cid-vhO9giOhQr .carousel-wrapper {
    margin: 0;
  }
}
@media (max-width: 575px) {
  .cid-vhO9giOhQr .carousel-wrapper {
    margin: 0 -10px;
  }
}
.cid-vhO9giOhQr .carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto 36px;
}
@media (max-width: 1199px) {
  .cid-vhO9giOhQr .carousel {
    max-width: 100%;
  }
}
.cid-vhO9giOhQr .carousel-inner {
  display: flex;
  align-items: center;
  padding: 50px 0 25px;
}
@media (max-width: 991px) {
  .cid-vhO9giOhQr .carousel-inner {
    padding: 40px 0 25px;
  }
}
@media (max-width: 575px) {
  .cid-vhO9giOhQr .carousel-inner {
    padding: 35px 0 25px;
  }
}
.cid-vhO9giOhQr .item-wrapper {
  display: flex;
  width: 100%;
  overflow: visible;
  padding: 0 25px;
}
@media (max-width: 991px) {
  .cid-vhO9giOhQr .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cid-vhO9giOhQr .item-wrapper {
    padding: 0 10px;
  }
}
.cid-vhO9giOhQr .card-info {
  position: relative;
  z-index: 10;
  width: 395px;
  padding: 30px 30px 40px 30px;
  margin-right: 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #000000, -10px -10px 19px #000000;
}
@media (max-width: 1199px) {
  .cid-vhO9giOhQr .card-info {
    width: 270px;
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-vhO9giOhQr .card-info {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 30px;
    margin-bottom: 30px;
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  .cid-vhO9giOhQr .card-info {
    flex-wrap: wrap;
    padding: 20px;
  }
}
.cid-vhO9giOhQr .info-img-wrap {
  display: flex;
  width: 100%;
  margin-bottom: 27px;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-vhO9giOhQr .info-img-wrap {
    max-width: 150px;
    margin-right: 25px;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-vhO9giOhQr .info-img-wrap {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.cid-vhO9giOhQr .info-img-wrap img {
  width: 100%;
  aspect-ratio: 1.32936508;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vhO9giOhQr .info-img-wrap img:hover {
  transform: scale(1.1);
}
.cid-vhO9giOhQr .info-text-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vhO9giOhQr .info-text-wrap {
    flex-grow: 1;
  }
}
.cid-vhO9giOhQr .info-card-title {
  color: #d4af37;
  margin-bottom: 10px;
}
.cid-vhO9giOhQr .info-card-subtitle {
  color: #C4CFDE;
}
.cid-vhO9giOhQr .info-card-text {
  color: #878e99;
  margin-top: 4px;
}
.cid-vhO9giOhQr .card-description {
  position: relative;
  margin-top: 115px;
  width: 1px;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-vhO9giOhQr .card-description {
    width: 100%;
    margin-top: 0;
  }
}
.cid-vhO9giOhQr .card-description::before {
  content: "";
  position: absolute;
  width: 51px;
  height: 5px;
  background: #16181c;
  left: -43px;
  z-index: 9;
  top: 66px;
}
@media (max-width: 991px) {
  .cid-vhO9giOhQr .card-description::before {
    display: none;
  }
}
.cid-vhO9giOhQr .card-description-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  padding: 50px 40px 50px 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #000000, -10px -10px 19px #000000;
}
@media (max-width: 991px) {
  .cid-vhO9giOhQr .card-description-wrapper {
    padding: 35px 30px;
  }
}
@media (max-width: 575px) {
  .cid-vhO9giOhQr .card-description-wrapper {
    padding: 20px;
  }
}
.cid-vhO9giOhQr .card-description-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #d4af37;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .cid-vhO9giOhQr .card-description-container {
    flex-wrap: wrap;
  }
}
.cid-vhO9giOhQr .card-description-text-wrap {
  margin-bottom: 15px;
  margin-right: auto;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .cid-vhO9giOhQr .card-description-text-wrap {
    width: 100%;
    padding-right: 0;
  }
}
.cid-vhO9giOhQr .card-description-title {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vhO9giOhQr .card-description-subtitle {
  color: #d4af37;
  margin-bottom: 0;
}
.cid-vhO9giOhQr .card-description-label-wrap {
  padding: 15px 17px;
  border-radius: 6px;
  margin-left: auto;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #000000, -10px -10px 19px #000000;
}
@media (max-width: 767px) {
  .cid-vhO9giOhQr .card-description-label-wrap {
    margin-left: 0;
  }
}
.cid-vhO9giOhQr .score-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-vhO9giOhQr .score-container .score-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 3px;
}
.cid-vhO9giOhQr .score-container .score-wrapper .mbr-iconfont {
  font-size: 11px;
  color: #d4af37;
}
.cid-vhO9giOhQr .card-description-text {
  color: #f3f3f3;
  margin-bottom: 0;
}
.cid-vhO9giOhQr .absolute-icon-wrapper {
  position: absolute;
  z-index: 9;
  left: 0;
  top: -107px;
}
@media (max-width: 991px) {
  .cid-vhO9giOhQr .absolute-icon-wrapper {
    display: none;
  }
}
.cid-vhO9giOhQr .absolute-icon-wrapper .mbr-iconfont {
  color: #16181c;
  font-size: 99px;
}
.cid-vhO9giOhQr .carousel-control {
  top: 50px;
  width: 60px;
  height: 60px;
  font-size: 25px;
  background: linear-gradient(145deg, #1e2024, #23272b) !important;
  box-shadow: 10px 10px 19px #000000, -10px -10px 19px #000000;
  border: none;
  border-radius: 6px;
  transition: all 0.4s;
  opacity: 1;
}
.cid-vhO9giOhQr .carousel-control.carousel-control-prev {
  right: 105px;
  left: auto;
  margin-left: 0;
}
.cid-vhO9giOhQr .carousel-control.carousel-control-next {
  right: 25px;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-vhO9giOhQr .carousel-control {
    display: none;
  }
}
.cid-vhO9giOhQr .carousel-control:hover {
  background: linear-gradient(to right bottom, #212428, #16181c) !important;
  color: #d4af37 !important;
  opacity: 1;
}
.cid-vhO9giOhQr .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-vhO9giOhQr .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-vhO9giOhQr .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-vhO9giOhQr .carousel-indicators {
  position: absolute;
  bottom: -35px;
  margin-bottom: 0 !important;
}
.cid-vhO9giOhQr .carousel-indicators li {
  max-width: 11px;
  height: 11px;
  width: 11px;
  max-height: 11px;
  margin: 10px;
  background: linear-gradient(145deg, #1e2024, #23272b) !important;
  border: 0;
  border-radius: 50%;
  box-shadow: 1px 4px 2px -3px rgba(0, 0, 0, 0.7) inset, -1px -3px 3px -2px rgba(255, 255, 255, 0.2) inset;
  opacity: 1;
  transition: all 0.4s;
}
.cid-vhO9giOhQr .carousel-indicators li.active,
.cid-vhO9giOhQr .carousel-indicators li:hover {
  opacity: 1;
  background: #d4af37 !important;
}
.cid-vhO9giOhQr .carousel-indicators li::after,
.cid-vhO9giOhQr .carousel-indicators li::before {
  content: none;
}
.cid-vhO9giOhQr .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
.cid-vhO9giOhQr .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vhSgTqHJEY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0c0c0c;
}
.cid-vhSgTqHJEY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhSgTqHJEY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhSgTqHJEY .row {
  margin: 0 -20px;
}
.cid-vhSgTqHJEY .row .card {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-vhSgTqHJEY .content-wrapper {
    margin-bottom: 16px;
  }
}
.cid-vhSgTqHJEY .content-wrapper .mbr-label {
  margin-bottom: 12px;
}
.cid-vhSgTqHJEY .content-wrapper .mbr-section-title {
  margin-bottom: 12px;
}
.cid-vhSgTqHJEY .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vhSgTqHJEY .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-vhSgTqHJEY .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vhSgTqHJEY .panel-group .card {
  position: relative;
  padding: 8px 0 12px;
  border-bottom: 1px solid #d4af37;
  transition: all .3s ease;
  border-radius: 0 !important;
}
.cid-vhSgTqHJEY .panel-group .card:hover {
  border-bottom: 1px solid #ffffff;
}
.cid-vhSgTqHJEY .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-vhSgTqHJEY .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 0 12px;
}
@media (max-width: 992px) {
  .cid-vhSgTqHJEY .panel-group .card .card-header .panel-title {
    padding: 8px 0 4px;
  }
}
.cid-vhSgTqHJEY .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-vhSgTqHJEY .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-vhSgTqHJEY .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 12px;
  transition: all 0.3s ease-in-out;
  color: #d4af37;
}
.cid-vhSgTqHJEY .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-vhSgTqHJEY .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .cid-vhSgTqHJEY .panel-group .card .panel-collapse .panel-body .panel-text {
    margin-bottom: 4px;
  }
}
.cid-vhSgTqHJEY .mbr-label {
  color: #a8a8a8;
}
.cid-vhSgTqHJEY .mbr-section-title {
  color: #ffffff;
}
.cid-vhSgTqHJEY .mbr-text {
  color: #ffffff;
}
.cid-vhSgTqHJEY .panel-title-edit {
  color: #ffffff;
}
.cid-vhSgTqHJEY .panel-text {
  color: #a8a8a8;
}
.cid-vhSgTqHJEY .mbr-section-title,
.cid-vhSgTqHJEY .mbr-section-btn {
  color: #d4af37;
}
.cid-vhSq8U7or0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #0c0c0c;
}
.cid-vhSq8U7or0 .mbr-overlay {
  background-color: #212428;
  opacity: 0.2;
}
.cid-vhSq8U7or0 .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-vhSq8U7or0 .row {
  margin-left: -10px;
  margin-right: -10px;
  flex-wrap: wrap;
  align-items: stretch;
}
.cid-vhSq8U7or0 .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 991px) {
  .cid-vhSq8U7or0 .col-info-card {
    margin-bottom: 50px;
  }
}
.cid-vhSq8U7or0 .mbr-section-head {
  width: 100%;
  padding-bottom: 40px;
}
.cid-vhSq8U7or0 .mbr-section-title {
  color: #FF014E;
}
@media (max-width: 767px) {
  .cid-vhSq8U7or0 .mbr-section-title {
    text-align: center;
  }
}
.cid-vhSq8U7or0 .mbr-section-subtitle {
  color: #d4af37;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vhSq8U7or0 .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vhSq8U7or0 .item-card {
  height: 100%;
}
.cid-vhSq8U7or0 .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: #212428;
  box-shadow: 10px 10px 19px #000000, -10px -10px 19px #000000;
}
@media (max-width: 767px) {
  .cid-vhSq8U7or0 .item-wrap {
    padding: 50px 20px;
  }
}
.cid-vhSq8U7or0 .item-wrap:hover .item-img img {
  transform: scale(1.1);
}
.cid-vhSq8U7or0 .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-vhSq8U7or0 .item-img img {
  width: 100%;
  aspect-ratio: 1.59722222;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vhSq8U7or0 .card-box {
  padding-top: 28px;
}
.cid-vhSq8U7or0 .card-title {
  color: #C4CFDE;
  margin-bottom: 9px;
}
.cid-vhSq8U7or0 .card-subtitle {
  color: #878e99;
  margin-bottom: 15px;
}
.cid-vhSq8U7or0 .card-text {
  color: #878e99;
  margin-bottom: 20px;
}
.cid-vhSq8U7or0 .card-contacts {
  color: #878e99;
}
.cid-vhSq8U7or0 .card-contacts a {
  position: relative;
  transition: 0.4s all;
}
.cid-vhSq8U7or0 .card-contacts a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #d4af37;
  transition: 0.4s all;
}
.cid-vhSq8U7or0 .card-contacts a:hover {
  color: #d4af37 !important;
}
.cid-vhSq8U7or0 .card-contacts a:hover:before {
  width: 100%;
}
.cid-vhSq8U7or0 .social-container {
  width: 100%;
  padding-top: 30px;
}
.cid-vhSq8U7or0 .social-title {
  color: #C4CFDE;
  margin-bottom: 8px;
}
.cid-vhSq8U7or0 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -15px;
  margin-top: 24px;
}
.cid-vhSq8U7or0 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 15px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-vhSq8U7or0 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-vhSq8U7or0 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-vhSq8U7or0 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-vhSq8U7or0 .soc-item:hover .mbr-iconfont {
  color: #d4af37;
}
.cid-vhSq8U7or0 .soc-item:hover:before {
  opacity: 1;
}
.cid-vhSq8U7or0 .form-main-container {
  width: 100%;
  height: 100%;
}
@media (min-width: 1200px) {
  .cid-vhSq8U7or0 .form-main-container {
    padding-left: 20px;
  }
}
.cid-vhSq8U7or0 .form-wrap {
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 10px 10px 19px #000000, -10px -10px 19px #000000;
}
@media (max-width: 575px) {
  .cid-vhSq8U7or0 .form-wrap {
    padding: 20px;
  }
}
.cid-vhSq8U7or0 form {
  width: 100%;
}
.cid-vhSq8U7or0 form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-vhSq8U7or0 form p {
  color: #878e99;
}
.cid-vhSq8U7or0 form .mbr-section-btn {
  text-align: center;
  justify-content: center;
}
.cid-vhSq8U7or0 form .mbr-section-btn .btn {
  width: 100%;
}
.cid-vhSq8U7or0 form .form-group {
  margin-bottom: 20px !important;
}
.cid-vhSq8U7or0 form .form-control {
  background-color: #191b1e;
  border-radius: 6px !important;
  height: 55px;
  box-shadow: 1px 4px 2px -3px rgba(0, 0, 0, 0.7) inset, -1px -3px 3px -2px rgba(255, 255, 255, 0.2) inset !important;
  border: 2px solid #191b1e !important;
  padding: 10px 15px;
  font-size: 18px;
  margin-bottom: 0;
  color: #C4CFDE;
  font-weight: 400;
  transition: 0.4s all !important;
  line-height: 29px !important;
}
.cid-vhSq8U7or0 form .form-control::-webkit-input-placeholder {
  color: #878e99;
}
.cid-vhSq8U7or0 form .form-control::-moz-placeholder {
  color: #878e99;
}
.cid-vhSq8U7or0 form .form-control:-moz-placeholder {
  color: #878e99;
}
.cid-vhSq8U7or0 form .form-control:-ms-input-placeholder {
  color: #878e99;
}
.cid-vhSq8U7or0 form select {
  color: #878e99 !important;
}
.cid-vhSq8U7or0 form textarea {
  height: 216px !important;
  resize: none;
}
.cid-vhSq8U7or0 form input:active,
.cid-vhSq8U7or0 form textarea:active,
.cid-vhSq8U7or0 form input:focus,
.cid-vhSq8U7or0 form textarea:focus {
  border-color: #d4af37 !important;
  box-shadow: none !important;
  color: #878e99 !important;
  outline: none !important;
}
.cid-vhSq8U7or0 form input:active::-webkit-input-placeholder,
.cid-vhSq8U7or0 form textarea:active::-webkit-input-placeholder,
.cid-vhSq8U7or0 form input:focus::-webkit-input-placeholder,
.cid-vhSq8U7or0 form textarea:focus::-webkit-input-placeholder {
  color: #878e99;
}
.cid-vhSq8U7or0 form input:active::-moz-placeholder,
.cid-vhSq8U7or0 form textarea:active::-moz-placeholder,
.cid-vhSq8U7or0 form input:focus::-moz-placeholder,
.cid-vhSq8U7or0 form textarea:focus::-moz-placeholder {
  color: #878e99;
}
.cid-vhSq8U7or0 form input:active:-moz-placeholder,
.cid-vhSq8U7or0 form textarea:active:-moz-placeholder,
.cid-vhSq8U7or0 form input:focus:-moz-placeholder,
.cid-vhSq8U7or0 form textarea:focus:-moz-placeholder {
  color: #878e99;
}
.cid-vhSq8U7or0 form input:active:-ms-input-placeholder,
.cid-vhSq8U7or0 form textarea:active:-ms-input-placeholder,
.cid-vhSq8U7or0 form input:focus:-ms-input-placeholder,
.cid-vhSq8U7or0 form textarea:focus:-ms-input-placeholder {
  color: #878e99;
}
.cid-vhSq8U7or0 form .row {
  margin-left: -15px !important;
  margin-right: -15px !important;
}
.cid-vhSq8U7or0 form .row [class*=col] {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.cid-vhSq8U7or0 form label {
  width: 100%;
  color: #878e99;
  margin-bottom: 14px;
}
.cid-vhSq8U7or0 form .form-control-label {
  width: 100%;
}
.cid-vhSq8U7or0 form .form-check-label {
  margin-bottom: 14px;
}
.cid-vhSq8U7or0 form .form-check-input {
  border-color: #191b1e !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-vhSq8U7or0 form .form-check-input:focus,
.cid-vhSq8U7or0 form .form-check-input:hover {
  border-color: #d4af37 !important;
}
.cid-vhSq8U7or0 form .form-check-input:checked {
  border-color: #d4af37 !important;
  background-color: #191b1e !important;
}
.cid-vhSq8U7or0 .image-wrapper img {
  filter: brightness(0.85) contrast(1.1) saturate(1.1);
}
.cid-vhT3djH0dh {
  padding-top: 16rem;
  padding-bottom: 16rem;
  background-image: url("../../../assets/images/lotus-grandeure-luxury-wedding-stage-floral-gold-decor-vrindavan-1.webp");
}
.cid-vhT3djH0dh .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhT3djH0dh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhT3djH0dh .content-wrapper .mbr-label {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-vhT3djH0dh .content-wrapper .mbr-label {
    margin-bottom: 20px;
  }
}
.cid-vhT3djH0dh .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vhT3djH0dh .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vhT3djH0dh .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 45%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-vhT3djH0dh .content-wrapper .text-wrapper .mbr-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-vhT3djH0dh .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vhT3djH0dh .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-vhT3djH0dh .content-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-vhT3djH0dh .mbr-label {
  color: #f1f5eb;
  text-align: center;
}
.cid-vhT3djH0dh .mbr-section-title {
  color: #f1f5eb;
}
.cid-vhT3djH0dh .mbr-text,
.cid-vhT3djH0dh .text-wrapper {
  color: #f1f5eb;
  text-align: center;
}
.cid-vhT3djH0dh .mbr-section-title,
.cid-vhT3djH0dh .mbr-section-btn {
  text-align: center;
}
.cid-vhT8ojrHtJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0c0c0c;
}
.cid-vhT8ojrHtJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhT8ojrHtJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhT8ojrHtJ .footer-main-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-vhT8ojrHtJ .col-brand {
  max-width: 33.33%;
  width: 100%;
  padding: 0 40px 0 0 !important;
}
@media (max-width: 1199px) {
  .cid-vhT8ojrHtJ .col-brand {
    padding: 0 !important;
  }
}
@media (max-width: 880px) {
  .cid-vhT8ojrHtJ .col-brand {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-vhT8ojrHtJ .col-brand {
    max-width: 100%;
    padding: 0 0 50px 0!important;
  }
}
.cid-vhT8ojrHtJ .col-contacts {
  max-width: 35.41%;
  width: 100%;
  padding: 0 40px 0 100px !important;
}
@media (max-width: 1199px) {
  .cid-vhT8ojrHtJ .col-contacts {
    padding: 0 0 0 40px !important;
  }
}
@media (max-width: 991px) {
  .cid-vhT8ojrHtJ .col-contacts {
    padding: 0 !important;
  }
}
@media (max-width: 880px) {
  .cid-vhT8ojrHtJ .col-contacts {
    max-width: 50%;
    padding: 0 0 0 50px !important;
  }
}
@media (max-width: 767px) {
  .cid-vhT8ojrHtJ .col-contacts {
    max-width: 100%;
    padding: 0 !important;
  }
}
.cid-vhT8ojrHtJ .col-form {
  max-width: 31.26%;
  width: 100%;
  padding: 0 !important;
}
@media (max-width: 880px) {
  .cid-vhT8ojrHtJ .col-form {
    max-width: 50%;
    padding: 40px 0 0 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-vhT8ojrHtJ .col-form {
    max-width: 100%;
    padding: 0 !important;
  }
}
.cid-vhT8ojrHtJ .col-links {
  max-width: 100%;
  width: 100%;
  padding: 110px 0 0 !important;
}
@media (max-width: 991px) {
  .cid-vhT8ojrHtJ .col-links {
    padding: 60px 0 0 !important;
  }
}
.cid-vhT8ojrHtJ .col-copyright {
  max-width: 100%;
  width: 100%;
  padding: 0 !important;
  margin-top: 20px;
}
.cid-vhT8ojrHtJ .navbar-brand {
  display: flex;
  flex-basis: auto;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  white-space: normal;
}
.cid-vhT8ojrHtJ .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-vhT8ojrHtJ .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-vhT8ojrHtJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-vhT8ojrHtJ .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-vhT8ojrHtJ .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-vhT8ojrHtJ .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-vhT8ojrHtJ .logo-text {
  color: #fff8dc;
  margin-top: 20px;
}
.cid-vhT8ojrHtJ .social-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 15px;
  margin-top: 26px;
}
.cid-vhT8ojrHtJ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 52px;
  max-width: 100%;
  width: fit-content;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.7) !important;
  box-shadow: none !important;
  background-color: transparent !important;
  transition: all 0.4s ease !important;
}
@media (max-width: 991px) {
  .cid-vhT8ojrHtJ .soc-item {
    min-width: 42px;
    min-height: 42px;
  }
}
.cid-vhT8ojrHtJ .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-vhT8ojrHtJ .soc-item a {
    min-width: 38px;
    min-height: 38px;
  }
}
.cid-vhT8ojrHtJ .soc-item a:hover {
  text-decoration-line: none !important;
}
.cid-vhT8ojrHtJ .soc-item .mbr-iconfont {
  font-size: 20px;
  color: #d4af37;
}
.cid-vhT8ojrHtJ .soc-item:hover {
  box-shadow: none;
  border-color: #d4af37;
  transform: translateY(-5px);
}
.cid-vhT8ojrHtJ .soc-item:hover .mbr-iconfont {
  color: #d4af37;
}
.cid-vhT8ojrHtJ .mbr-section-subtitle {
  color: #d4af37;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-vhT8ojrHtJ .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-vhT8ojrHtJ .contact-text {
  color: #fff8dc;
}
.cid-vhT8ojrHtJ .mbr-text {
  color: #131313;
}
.cid-vhT8ojrHtJ .contact-list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
  margin-top: 24px;
  color: #ffffff;
}
.cid-vhT8ojrHtJ .contact-list li {
  width: 100%;
  color: inherit;
  transition: 0.3s all;
}
.cid-vhT8ojrHtJ .contact-list li:not(:first-child) {
  margin-top: 4px;
}
.cid-vhT8ojrHtJ .contact-list li:hover {
  color: #d4af37 !important;
}
.cid-vhT8ojrHtJ .contact-list a {
  line-height: inherit !important;
}
.cid-vhT8ojrHtJ .contact-list a:hover {
  color: #d4af37 !important;
  line-height: inherit !important;
}
.cid-vhT8ojrHtJ form {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 24px;
}
@media (max-width: 880px) {
  .cid-vhT8ojrHtJ form {
    padding-top: 0;
  }
}
.cid-vhT8ojrHtJ form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
  z-index: 2;
}
.cid-vhT8ojrHtJ form p {
  color: #131313;
}
.cid-vhT8ojrHtJ form .mbr-section-btn {
  margin-top: 0;
}
.cid-vhT8ojrHtJ form .mbr-section-btn .btn {
  border-radius: 3px !important;
}
.cid-vhT8ojrHtJ form .form-group {
  margin-top: 0 !important;
  margin-bottom: 30px !important;
}
@media (max-width: 767px) {
  .cid-vhT8ojrHtJ form .form-group {
    margin-bottom: 25px !important;
  }
}
.cid-vhT8ojrHtJ form .form-control {
  height: 64px;
  border: 2px solid #131313 !important;
  box-shadow: 4px 4px 0 #131313;
  outline: none !important;
  border-radius: 4px !important;
  margin-bottom: 0;
  padding: 6px 12px 6px 30px;
  font-size: 18px;
  line-height: 1;
  color: #131313;
  background: #ffffff;
  font-weight: 400;
  transition: .3s;
}
.cid-vhT8ojrHtJ form .form-control::-webkit-input-placeholder {
  color: #131313;
}
.cid-vhT8ojrHtJ form .form-control::-moz-placeholder {
  color: #131313;
}
.cid-vhT8ojrHtJ form .form-control:-moz-placeholder {
  color: #131313;
}
.cid-vhT8ojrHtJ form .form-control:-ms-input-placeholder {
  color: #131313;
}
.cid-vhT8ojrHtJ form select {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form textarea {
  height: 120px !important;
  min-height: 120px !important;
  padding: 6px 12px 6px 30px;
  resize: none;
}
.cid-vhT8ojrHtJ form textarea::-webkit-input-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form textarea::-moz-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form textarea:-moz-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form textarea:-ms-input-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form input,
.cid-vhT8ojrHtJ form textarea {
  transition: .3s all;
}
.cid-vhT8ojrHtJ form input:active,
.cid-vhT8ojrHtJ form textarea:active,
.cid-vhT8ojrHtJ form input:focus,
.cid-vhT8ojrHtJ form textarea:focus {
  background-color: #ffffff !important;
  border-color: #131313 !important;
  box-shadow: none !important;
  outline: none !important;
}
.cid-vhT8ojrHtJ form input:active::-webkit-input-placeholder,
.cid-vhT8ojrHtJ form textarea:active::-webkit-input-placeholder,
.cid-vhT8ojrHtJ form input:focus::-webkit-input-placeholder,
.cid-vhT8ojrHtJ form textarea:focus::-webkit-input-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form input:active::-moz-placeholder,
.cid-vhT8ojrHtJ form textarea:active::-moz-placeholder,
.cid-vhT8ojrHtJ form input:focus::-moz-placeholder,
.cid-vhT8ojrHtJ form textarea:focus::-moz-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form input:active:-moz-placeholder,
.cid-vhT8ojrHtJ form textarea:active:-moz-placeholder,
.cid-vhT8ojrHtJ form input:focus:-moz-placeholder,
.cid-vhT8ojrHtJ form textarea:focus:-moz-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form input:active:-ms-input-placeholder,
.cid-vhT8ojrHtJ form textarea:active:-ms-input-placeholder,
.cid-vhT8ojrHtJ form input:focus:-ms-input-placeholder,
.cid-vhT8ojrHtJ form textarea:focus:-ms-input-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form .row {
  flex-wrap: wrap;
  margin-left: -8px !important;
  margin-right: -8px !important;
}
.cid-vhT8ojrHtJ form .row [class*=col] {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.cid-vhT8ojrHtJ form label {
  width: 100%;
  color: #131313;
  margin-bottom: 8px;
}
.cid-vhT8ojrHtJ form .form-check label {
  color: #131313;
}
.cid-vhT8ojrHtJ form .form-check-input {
  border-color: #131313 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-vhT8ojrHtJ form .form-check-input:focus,
.cid-vhT8ojrHtJ form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #FC7942 !important;
}
.cid-vhT8ojrHtJ form .form-check-input:checked {
  border-color: #FC7942 !important;
  background-color: #FC7942 !important;
}
.cid-vhT8ojrHtJ .list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 20px;
  width: 100%;
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
  color: #f5f5f5;
}
.cid-vhT8ojrHtJ .list li {
  width: auto;
  color: inherit !important;
  transition: 0.3s all;
  line-height: 1 !important;
}
.cid-vhT8ojrHtJ .list a {
  line-height: inherit !important;
}
.cid-vhT8ojrHtJ .list a:hover {
  line-height: inherit !important;
}
.cid-vhT8ojrHtJ .copyright {
  color: #f5f5f5;
  padding-top: 30px;
  border-top: none !important;
  position: relative;
}
.cid-vhT8ojrHtJ .soc-item .mbr-iconfont {
  color: #D4AF37 !important;
  transition: 0.4s;
}
.cid-vhT8ojrHtJ .soc-item:hover {
  transform: translateY(-6px) scale(1.08) !important;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3), 0 10px 40px rgba(0, 0, 0, 0.8) !important;
  border-color: #D4AF37 !important;
}
.cid-vhT8ojrHtJ .soc-item:hover .mbr-iconfont {
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}
.cid-vhT8ojrHtJ .copyright::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.4) 15%, rgba(212, 175, 55, 0.9) 50%, rgba(212, 175, 55, 0.4) 85%, transparent 100%);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
  animation: goldLineFlow 4s ease-in-out infinite;
}
@keyframes goldLineFlow {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}
.cid-vhT8ojrHtJ .appointment-text {
  color: #D4AF37 !important;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 14px;
}
.cid-vhT8ojrHtJ .list li {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: color 0.4s ease;
}
.cid-vhT8ojrHtJ .list li:hover {
  color: #D4AF37 !important;
}
.cid-vhT8ojrHtJ .list li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  transition: width 0.4s ease;
}
.cid-vhT8ojrHtJ .list li:hover::after {
  width: 100%;
}
.cid-veXnEhGRlw {
  z-index: 1000;
  width: 100%;
}
.cid-veXnEhGRlw nav.navbar {
  position: fixed;
}
.cid-veXnEhGRlw .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-veXnEhGRlw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-veXnEhGRlw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-veXnEhGRlw .dropdown-item:hover,
.cid-veXnEhGRlw .dropdown-item:focus {
  background: #d4af37 !important;
  color: black !important;
}
.cid-veXnEhGRlw .dropdown-item:hover span {
  color: white;
}
.cid-veXnEhGRlw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-veXnEhGRlw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-veXnEhGRlw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-veXnEhGRlw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-veXnEhGRlw .nav-link {
  position: relative;
}
.cid-veXnEhGRlw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-veXnEhGRlw .container {
    flex-wrap: nowrap;
  }
}
.cid-veXnEhGRlw .iconfont-wrapper {
  color: #ff014e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-veXnEhGRlw .navbar-nav .nav-item {
  margin: 10px 14px !important;
}
.cid-veXnEhGRlw .navbar-nav .nav-item .nav-link {
  margin: 5px 10px !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 0.5;
}
.cid-veXnEhGRlw .navbar-nav .nav-item .nav-link:hover,
.cid-veXnEhGRlw .navbar-nav .nav-item .nav-link:focus,
.cid-veXnEhGRlw .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #d4af37 !important;
}
.cid-veXnEhGRlw .dropdown-menu,
.cid-veXnEhGRlw .navbar.opened {
  background: #0e0e0e !important;
}
.cid-veXnEhGRlw .nav-item:focus,
.cid-veXnEhGRlw .nav-link:focus {
  outline: none;
}
.cid-veXnEhGRlw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-veXnEhGRlw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-veXnEhGRlw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-veXnEhGRlw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-veXnEhGRlw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-veXnEhGRlw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-veXnEhGRlw .navbar {
  min-height: 122px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0e0e0e;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-veXnEhGRlw .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-veXnEhGRlw .navbar.opened {
  transition: all 0.3s;
}
.cid-veXnEhGRlw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-veXnEhGRlw .navbar .navbar-logo img {
  width: auto;
}
.cid-veXnEhGRlw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-veXnEhGRlw .navbar.collapsed {
  justify-content: center;
}
.cid-veXnEhGRlw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-veXnEhGRlw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-veXnEhGRlw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-veXnEhGRlw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-veXnEhGRlw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-veXnEhGRlw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-veXnEhGRlw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-veXnEhGRlw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-veXnEhGRlw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-veXnEhGRlw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-veXnEhGRlw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-veXnEhGRlw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-veXnEhGRlw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-veXnEhGRlw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-veXnEhGRlw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-veXnEhGRlw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-veXnEhGRlw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-veXnEhGRlw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-veXnEhGRlw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-veXnEhGRlw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-veXnEhGRlw .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-veXnEhGRlw .navbar.navbar-short {
  min-height: 90px;
}
.cid-veXnEhGRlw .navbar.navbar-short .navbar-logo img {
  height: 4.2rem !important;
}
.cid-veXnEhGRlw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-veXnEhGRlw .navbar {
    min-height: 80px;
  }
}
.cid-veXnEhGRlw .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-veXnEhGRlw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-veXnEhGRlw .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-veXnEhGRlw .navbar-brand {
    min-height: 69px;
  }
}
.cid-veXnEhGRlw .dropdown-item.active,
.cid-veXnEhGRlw .dropdown-item:active {
  background-color: transparent;
}
.cid-veXnEhGRlw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-veXnEhGRlw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-veXnEhGRlw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-veXnEhGRlw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e0e0e;
}
.cid-veXnEhGRlw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-veXnEhGRlw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-veXnEhGRlw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-veXnEhGRlw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-veXnEhGRlw button.navbar-toggler {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-veXnEhGRlw button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-veXnEhGRlw button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-veXnEhGRlw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #d4af37;
}
.cid-veXnEhGRlw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-veXnEhGRlw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-veXnEhGRlw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-veXnEhGRlw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-veXnEhGRlw nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veXnEhGRlw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-veXnEhGRlw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-veXnEhGRlw nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veXnEhGRlw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-veXnEhGRlw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-veXnEhGRlw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-veXnEhGRlw .navbar {
    height: 70px;
  }
  .cid-veXnEhGRlw .navbar.opened {
    height: auto;
  }
  .cid-veXnEhGRlw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-veXnEhGRlw .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #0e0e0e;
}
@media (max-width: 575px) {
  .cid-veXnEhGRlw .navbar-short {
    min-height: 70px;
  }
}
.cid-veXnEhGRlw .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-veXnEhGRlw .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-veXnEhGRlw .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-veXnEhGRlw .container-fluid {
    padding: 0 3px;
  }
}
.cid-veXnEhGRlw .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-veXnEhGRlw .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-veXnEhGRlw .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-veXnEhGRlw .container-fluid {
    flex-wrap: wrap;
  }
  .cid-veXnEhGRlw button.navbar-toggler {
    display: flex;
  }
  .cid-veXnEhGRlw .navbar-brand {
    width: auto !important;
  }
  .cid-veXnEhGRlw .navbar-collapse {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cid-veXnEhGRlw .navbar-collapse .nav-item {
    margin: 8px 0 !important;
  }
  .cid-veXnEhGRlw .navbar-collapse .nav-item .nav-link {
    margin: 0 !important;
    padding: 0 !important;
    transition: 0.3s all;
    opacity: 1;
    justify-content: left;
  }
  .cid-veXnEhGRlw .navbar-collapse .nav-item .nav-link:hover {
    opacity: 1;
    color: #FFFFFF !important;
  }
  .cid-veXnEhGRlw .icons-menu {
    margin-top: 10px;
    justify-content: left;
  }
  .cid-veXnEhGRlw .navbar-buttons {
    margin-top: 20px;
    text-align: left;
    margin-left: -0.6rem;
    margin-right: -0.6rem;
  }
}
.cid-vhTV11MXNl {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #0c0c0c;
}
.cid-vhTV11MXNl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhTV11MXNl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhTV11MXNl .card-wrapper {
  position: relative;
  padding: 320px 30px 50px;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 1440px) {
  .cid-vhTV11MXNl .card-wrapper {
    padding: 200px 30px 50px;
  }
}
@media (max-width: 1200px) {
  .cid-vhTV11MXNl .card-wrapper {
    padding: 150px 30px 50px;
  }
}
@media (max-width: 992px) {
  .cid-vhTV11MXNl .card-wrapper {
    height: 100%;
    padding: 30px 15px 15px;
  }
}
.cid-vhTV11MXNl .card-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vhTV11MXNl .card-wrapper .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0c0c0c;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}
.cid-vhTV11MXNl .card-wrapper .content-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}
.cid-vhTV11MXNl .card-wrapper .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-vhTV11MXNl .card-wrapper .content-wrapper .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-block;
  width: 33%;
  margin-bottom: 20px;
}
@media (max-width: 1440px) {
  .cid-vhTV11MXNl .card-wrapper .content-wrapper .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
    width: 40%;
  }
}
@media (max-width: 992px) {
  .cid-vhTV11MXNl .card-wrapper .content-wrapper .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-vhTV11MXNl .card-wrapper .content-wrapper .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #d4af37;
}
.cid-vhTV11MXNl .card-wrapper .content-wrapper .text-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-vhTV11MXNl .card-wrapper .content-wrapper .text-wrapper {
    display: block;
  }
}
.cid-vhTV11MXNl .card-wrapper .content-wrapper .text-wrapper .mbr-text {
  width: 33%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-vhTV11MXNl .card-wrapper .content-wrapper .text-wrapper .mbr-text {
    width: 40%;
  }
}
@media (max-width: 992px) {
  .cid-vhTV11MXNl .card-wrapper .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vhTV11MXNl .card-wrapper .content-wrapper .text-wrapper .content-wrap {
  width: 33%;
}
@media (max-width: 1440px) {
  .cid-vhTV11MXNl .card-wrapper .content-wrapper .text-wrapper .content-wrap {
    width: 40%;
  }
}
@media (max-width: 992px) {
  .cid-vhTV11MXNl .card-wrapper .content-wrapper .text-wrapper .content-wrap {
    width: 100%;
    margin-top: 20px;
  }
}
.cid-vhTV11MXNl .card-wrapper .content-wrapper .text-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vhTV11MXNl .mbr-section-title {
  color: #ffffff;
}
.cid-vhTV11MXNl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vhTV11MXNl .mbr-text {
  color: #ffffff;
}
.cid-vhTV11MXNl .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vhTV11MXNl .mbr-section-btn {
    text-align: left;
  }
}
.cid-vhTV11MXNl .mbr-section-title,
.cid-vhTV11MXNl .mbr-section-btn {
  color: #d4af37;
}
.cid-vhUNG7OrKx {
  padding-top: 5rem;
  background-color: #0c0c0c;
}
.cid-vhUNG7OrKx .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhUNG7OrKx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhUNG7OrKx .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 5rem;
}
.cid-vhUNG7OrKx .content-wrapper .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vhUNG7OrKx .content-wrapper .icon-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vhUNG7OrKx .content-wrapper .icon-wrapper .mbr-iconfont {
  width: 52px;
  height: 52px;
  min-width: 52px;
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ff6900;
  box-shadow: inset 0 2px 10px 0 #ffffff, 0 10px 10px -2px #c55200;
}
.cid-vhUNG7OrKx .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vhUNG7OrKx .content-wrapper .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vhUNG7OrKx .content-wrapper .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vhUNG7OrKx .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-vhUNG7OrKx .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-vhUNG7OrKx .mbr-section-title {
  color: #d4af37 !important;
  text-align: center;
  font-family: 'Cinzel', serif !important;
  font-size: 48px !important;
  letter-spacing: 6px !important;
  margin-bottom: 30px !important;
}
.cid-vhUNG7OrKx .mbr-text,
.cid-vhUNG7OrKx .text-wrapper {
  color: #f3f3f3;
  text-align: center;
}
.cid-vhUNG7OrKx .mbr-section-btn,
.cid-vhUNG7OrKx .mbr-section-title,
.cid-vhUNG7OrKx .icon-wrapper {
  text-align: center;
}
.cid-vhUNG7OrKx .mbr-section-title,
.cid-vhUNG7OrKx .mbr-section-btn,
.cid-vhUNG7OrKx .icon-wrapper {
  color: #d4af37;
}
.cid-vhUNG7OrKx .text-wrapper .mbr-text {
  width: 100% !important;
  max-width: 780px !important;
  margin: 0 auto !important;
  text-align: center !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 20px !important;
  line-height: 2 !important;
  letter-spacing: 0.5px !important;
  color: #e8e6e3 !important;
}
.cid-vhUNG7OrKx .text-wrapper .mbr-text p {
  margin-bottom: 22px !important;
}
.cid-vhUNG7OrKx .text-wrapper .mbr-text p:first-child {
  font-size: 22px !important;
  color: #ffffff !important;
}
.cid-vhUNG7OrKx .text-wrapper .mbr-text p:last-child {
  font-weight: 500 !important;
  letter-spacing: 1px !important;
}
.cid-vhUT9QGsoW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0c0c0c;
}
.cid-vhUT9QGsoW .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhUT9QGsoW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhUT9QGsoW .content-wrap {
  margin: 0 -20px;
}
.cid-vhUT9QGsoW .content-wrap .card {
  padding: 0 20px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vhUT9QGsoW .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vhUT9QGsoW .title-wrapper .mbr-label {
  margin-bottom: 12px;
}
.cid-vhUT9QGsoW .title-wrapper .mbr-section-title {
  margin-bottom: 12px;
}
.cid-vhUT9QGsoW .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vhUT9QGsoW .title-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-vhUT9QGsoW .title-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vhUT9QGsoW .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 992px) {
  .cid-vhUT9QGsoW .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-vhUT9QGsoW .items-wrapper .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background-color: #2b2b2b;
}
@media (max-width: 992px) {
  .cid-vhUT9QGsoW .items-wrapper .card-wrapper {
    padding: 16px;
  }
}
.cid-vhUT9QGsoW .items-wrapper .card-wrapper .image-wrapper {
  margin-bottom: 48px;
}
.cid-vhUT9QGsoW .items-wrapper .card-wrapper .image-wrapper img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 100% !important;
  display: inline-flex;
}
.cid-vhUT9QGsoW .items-wrapper .card-wrapper .card-box .item-name {
  margin-bottom: 4px;
}
.cid-vhUT9QGsoW .items-wrapper .card-wrapper .card-box .item-desc {
  margin-bottom: 0;
}
.cid-vhUT9QGsoW .items-wrapper .items-wrap .item {
  margin-bottom: 16px;
}
.cid-vhUT9QGsoW .items-wrapper .items-wrap .item:last-child {
  margin-bottom: 0;
}
.cid-vhUT9QGsoW .items-wrapper .items-wrap .item .item-wrapper {
  background-color: #2b2b2b;
  padding: 24px;
}
@media (max-width: 992px) {
  .cid-vhUT9QGsoW .items-wrapper .items-wrap .item .item-wrapper {
    padding: 16px;
  }
}
.cid-vhUT9QGsoW .items-wrapper .items-wrap .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  margin-right: 8px;
  font-size: 25px;
  margin-bottom: 48px;
}
.cid-vhUT9QGsoW .items-wrapper .items-wrap .item .item-wrapper .item-title {
  margin-bottom: 6px;
}
.cid-vhUT9QGsoW .items-wrapper .items-wrap .item .item-wrapper .item-text {
  margin-bottom: 0;
}
.cid-vhUT9QGsoW .btn-wrapper {
  margin-top: -2.5rem;
}
.cid-vhUT9QGsoW .mbr-label {
  color: #a8a8a8;
}
.cid-vhUT9QGsoW .mbr-section-title {
  color: #ffffff;
}
.cid-vhUT9QGsoW .mbr-text {
  color: #ffffff;
}
.cid-vhUT9QGsoW .item-name {
  color: #ffffff;
}
.cid-vhUT9QGsoW .item-desc {
  color: #f3f3f3;
}
.cid-vhUT9QGsoW .item-title {
  color: #ffffff;
}
.cid-vhUT9QGsoW .item-text {
  color: #f3f3f3;
}
.cid-vhUT9QGsoW .mbr-section-title,
.cid-vhUT9QGsoW .mbr-section-btn {
  color: #d4af37;
}
.cid-vhUT9QGsoW .item-title,
.cid-vhUT9QGsoW .iconfont-wrapper {
  color: #d4af37;
}
.cid-vhUT9QGsoW .item-name,
.cid-vhUT9QGsoW .image-wrapper {
  color: #d4af37;
}
.cid-vhUkF1XXa9 {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #0c0c0c;
}
@media (max-width: 767px) {
  .cid-vhUkF1XXa9 .mbr-section-title {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-vhUkF1XXa9 .container {
    position: relative;
  }
  .cid-vhUkF1XXa9 .row {
    margin: 0;
  }
  .cid-vhUkF1XXa9 .mbr-section-title {
    margin: 0;
  }
}
.cid-vhUkF1XXa9 .btn {
  margin: 0;
  position: relative;
  padding: 0.7rem 2.4rem;
}
.cid-vhUkF1XXa9 .mbr-section-subtitle {
  color: #7e7e7e;
}
.cid-vhUkF1XXa9 .line-title {
  width: 40px;
  height: 2px;
  background-color: #d4af37;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-vhUkF1XXa9 .vertical-line:before {
  content: '';
  background-color: #d4af37;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-vhUkF1XXa9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhUkF1XXa9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhUkF1XXa9 .mbr-section-title {
  color: #d4af37;
}
.cid-vhUkF1XXa9 .mbr-text {
  color: #f3f3f3;
}
.cid-vhUzAdZ6y4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0c0c0c;
}
.cid-vhUzAdZ6y4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhUzAdZ6y4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhUzAdZ6y4 .items-wrapper {
  margin: 0 -17px;
}
.cid-vhUzAdZ6y4 .items-wrapper .item {
  padding: 0 17px;
}
.cid-vhUzAdZ6y4 .item {
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(60px);
  animation: luxuryReveal 1.2s ease forwards;
}
@media (max-width: 992px) {
  .cid-vhUzAdZ6y4 .item {
    margin-bottom: 20px;
  }
  .cid-vhUzAdZ6y4 .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vhUzAdZ6y4 .title-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-vhUzAdZ6y4 .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vhUzAdZ6y4 .title-wrapper .label-wrapper .mbr-label {
  margin-bottom: 15px;
}
.cid-vhUzAdZ6y4 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vhUzAdZ6y4 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vhUzAdZ6y4 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vhUzAdZ6y4 .item-wrapper {
  padding: 45px;
  overflow: hidden;
  height: 100%;
  position: relative;
  transition: all 0.6s ease;
  animation: floatLuxury 6s ease-in-out infinite;
}
@media (max-width: 992px) {
  .cid-vhUzAdZ6y4 .item-wrapper {
    padding: 20px;
  }
}
.cid-vhUzAdZ6y4 .item-wrapper .card-box .title-wrap {
  margin-bottom: 10px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-vhUzAdZ6y4 .item-wrapper .card-box .title-wrap {
    display: block;
  }
}
.cid-vhUzAdZ6y4 .item-wrapper .card-box .title-wrap .item-title {
  margin-bottom: 0;
}
.cid-vhUzAdZ6y4 .item-wrapper .card-box .title-wrap .item-number_1,
.cid-vhUzAdZ6y4 .item-wrapper .card-box .title-wrap .item-number_2,
.cid-vhUzAdZ6y4 .item-wrapper .card-box .title-wrap .item-number_3,
.cid-vhUzAdZ6y4 .item-wrapper .card-box .title-wrap .item-number_4 {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vhUzAdZ6y4 .item-wrapper .card-box .title-wrap .item-number_1,
  .cid-vhUzAdZ6y4 .item-wrapper .card-box .title-wrap .item-number_2,
  .cid-vhUzAdZ6y4 .item-wrapper .card-box .title-wrap .item-number_3,
  .cid-vhUzAdZ6y4 .item-wrapper .card-box .title-wrap .item-number_4 {
    margin-bottom: 10px;
  }
}
.cid-vhUzAdZ6y4 .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-vhUzAdZ6y4 .item-wrapper .card-box .item-btn {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-vhUzAdZ6y4 .item-wrapper .card-box .item-btn {
    margin-top: 10px;
  }
}
.cid-vhUzAdZ6y4 .card_1 {
  background-color: #191919;
}
.cid-vhUzAdZ6y4 .card_2 {
  background-color: #191919;
}
.cid-vhUzAdZ6y4 .card_3 {
  background-color: #191919;
}
.cid-vhUzAdZ6y4 .card_4 {
  background-color: #191919;
}
.cid-vhUzAdZ6y4 .main-btn {
  width: 100%;
}
.cid-vhUzAdZ6y4 .main-btn .btn {
  padding: 60px 90px;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vhUzAdZ6y4 .main-btn .btn {
    padding: 30px;
  }
}
.cid-vhUzAdZ6y4 .main-btn .btn:hover,
.cid-vhUzAdZ6y4 .main-btn .btn:focus {
  transform: none !important;
}
.cid-vhUzAdZ6y4 .mbr-label {
  color: #f3f3f3;
}
.cid-vhUzAdZ6y4 .mbr-section-title {
  color: #d4af37;
}
.cid-vhUzAdZ6y4 .mbr-text {
  color: #f3f3f3;
  transition: all 0.6s ease;
}
.cid-vhUzAdZ6y4 .item-number_1 {
  color: #d4af37;
}
.cid-vhUzAdZ6y4 .item-number_2 {
  color: #d4af37;
}
.cid-vhUzAdZ6y4 .item-number_3 {
  color: #d4af37;
}
.cid-vhUzAdZ6y4 .item-number_4 {
  color: #d4af37;
}
.cid-vhUzAdZ6y4 .item-title {
  color: #d4af37;
  transition: all 0.5s ease;
  position: relative;
  display: inline-block;
}
.cid-vhUzAdZ6y4 .item-text {
  color: #3a353e;
}
.cid-vhUzAdZ6y4 .item-text,
.cid-vhUzAdZ6y4 .item-btn {
  color: #f3f3f3;
}
.cid-vhUzAdZ6y4 .item-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.cid-vhUzAdZ6y4 .item-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 175, 55, 0.15);
  opacity: 0;
  transition: all 0.6s ease;
  pointer-events: none;
}
.cid-vhUzAdZ6y4 .item-wrapper:hover {
  transform: translateY(-12px) scale(1.01);
}
.cid-vhUzAdZ6y4 .item-wrapper:hover::before {
  opacity: 1;
}
.cid-vhUzAdZ6y4 .item-wrapper:hover::after {
  opacity: 1;
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}
.cid-vhUzAdZ6y4 .item-wrapper:hover .item-title {
  letter-spacing: 6px;
  color: #f5d77a;
}
.cid-vhUzAdZ6y4 [class*="item_number"] {
  transition: all 0.6s ease;
  opacity: 0.6;
}
.cid-vhUzAdZ6y4 .item-wrapper:hover [class*="item_number"] {
  transform: scale(1.15);
  opacity: 1;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}
.cid-vhUzAdZ6y4 .item-wrapper:hover .mbr-text {
  opacity: 0.95;
  transform: translateY(-4px);
}
.cid-vhUzAdZ6y4 .item:nth-child(1) {
  animation-delay: 0.2s;
}
.cid-vhUzAdZ6y4 .item:nth-child(2) {
  animation-delay: 0.4s;
}
.cid-vhUzAdZ6y4 .item:nth-child(3) {
  animation-delay: 0.6s;
}
.cid-vhUzAdZ6y4 .item:nth-child(4) {
  animation-delay: 0.8s;
}
.cid-vhUzAdZ6y4 .item:nth-child(5) {
  animation-delay: 1s;
}
@keyframes luxuryReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cid-vhUzAdZ6y4 .item:nth-child(2) .item-wrapper,
.cid-vhUzAdZ6y4 .item:nth-child(4) .item-wrapper {
  animation-delay: 2s;
}
@keyframes floatLuxury {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.cid-vhUzAdZ6y4 .item-title::after {
  content: "";
  display: block;
  margin: 14px auto 0;
  width: 0%;
  height: 1px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  transition: width 0.6s ease;
}
.cid-vhUzAdZ6y4 .item-wrapper:hover .item-title::after {
  width: 60%;
}
.cid-vhVajYCL2B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0c0c0c;
}
.cid-vhVajYCL2B .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhVajYCL2B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhVajYCL2B .title-wrapper {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-vhVajYCL2B .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vhVajYCL2B .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vhVajYCL2B .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vhVajYCL2B .card-wrapper {
  border: 1px solid #000000;
  padding: 24px 24px 12px;
}
.cid-vhVajYCL2B .items-wrapper {
  margin: 0 -6px;
}
.cid-vhVajYCL2B .items-wrapper .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
.cid-vhVajYCL2B .items-wrapper .item .item-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border: 1px solid #000000;
  height: 100%;
  background-image: linear-gradient(135deg, #101010 0%, #101010 50%, transparent 100%);
}
@media (max-width: 1440px) {
  .cid-vhVajYCL2B .items-wrapper .item .item-wrapper {
    display: block;
  }
}
@media (max-width: 1440px) {
  .cid-vhVajYCL2B .items-wrapper .item .item-wrapper .iconfont-wrapper {
    margin-bottom: 16px;
  }
}
.cid-vhVajYCL2B .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: #000000;
  border: 1px solid #000000;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.cid-vhVajYCL2B .items-wrapper .item .item-wrapper .item-title {
  width: 100%;
  margin-bottom: 0;
}
.cid-vhVajYCL2B .btn-wrapper {
  margin-top: -8%;
}
.cid-vhVajYCL2B .mbr-section-title {
  color: #ffffff;
}
.cid-vhVajYCL2B .mbr-section-subtitle {
  color: #d4af37;
}
.cid-vhVajYCL2B .item-title {
  color: #ffffff;
}
.cid-vhVgHZNpPW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0c0c0c;
}
.cid-vhVgHZNpPW .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhVgHZNpPW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhVgHZNpPW .content-wrapper .mbr-label {
  margin-bottom: 0;
}
.cid-vhVgHZNpPW .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-vhVgHZNpPW .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vhVgHZNpPW .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-vhVgHZNpPW .mbr-label {
  color: #f3f3f3;
  text-align: center;
}
.cid-vhVgHZNpPW .mbr-section-title {
  color: #ff6d99;
}
.cid-vhVgHZNpPW .mbr-text,
.cid-vhVgHZNpPW .text-wrapper {
  color: #f3f3f3;
  text-align: center;
}
.cid-vhVgHZNpPW .mbr-section-title,
.cid-vhVgHZNpPW .mbr-section-btn {
  text-align: center;
  color: #d4af37;
}
.cid-vhVi2dZIoL {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #0c0c0c;
}
.cid-vhVi2dZIoL .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-vhVi2dZIoL .align-center {
    text-align: center;
  }
  .cid-vhVi2dZIoL .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-vhVi2dZIoL .block-btn {
  display: flex;
}
.cid-vhVi2dZIoL .mbr-section-subtitle {
  margin-bottom: 2rem;
  color: #0c0c0c;
}
.cid-vhVi2dZIoL h1 {
  margin-bottom: 0;
}
.cid-vhVi2dZIoL .wrapper {
  background-color: #d4af37;
  border-radius: 4px;
}
@media (min-width: 767px) {
  .cid-vhVi2dZIoL .container {
    padding: 0 3rem;
  }
  .cid-vhVi2dZIoL .wrapper {
    padding: 3.8rem 4rem;
  }
}
@media (max-width: 992px) {
  .cid-vhVi2dZIoL .block-btn {
    justify-content: center;
  }
  .cid-vhVi2dZIoL .text-block {
    text-align: center;
  }
  .cid-vhVi2dZIoL .mbr-section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vhVi2dZIoL .block-btn {
    justify-content: flex-end;
  }
  .cid-vhVi2dZIoL .btn {
    border-radius: 2px;
    margin-right: 0rem;
  }
}
.cid-vhVi2dZIoL .btn-white:hover {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.cid-vhVi2dZIoL .btn-white:hover::before {
  background-color: #000000 !important;
}
.cid-vhVi2dZIoL .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhVi2dZIoL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhVi2dZIoL .mbr-section-title {
  color: #0c0c0c;
}
.cid-vhVi2dZIoL.lg-cta {
  opacity: 0;
  transform: translateY(60px);
  animation: lgFadeUp 1.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  position: relative;
  overflow: hidden;
}
.cid-vhVi2dZIoL.lg-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: goldShimmer 6s ease-in-out infinite;
}
.cid-vhVi2dZIoL.lg-cta .btn {
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  animation: btnGlow 3s ease-in-out infinite;
}
.cid-vhVi2dZIoL.lg-cta .btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.25);
}
@keyframes lgFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes goldShimmer {
  0% {
    left: -150%;
  }
  50% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
@keyframes btnGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(212, 175, 55, 0);
  }
  50% {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
  }
}
.cid-vhT8ojrHtJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0c0c0c;
}
.cid-vhT8ojrHtJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhT8ojrHtJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhT8ojrHtJ .footer-main-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-vhT8ojrHtJ .col-brand {
  max-width: 33.33%;
  width: 100%;
  padding: 0 40px 0 0 !important;
}
@media (max-width: 1199px) {
  .cid-vhT8ojrHtJ .col-brand {
    padding: 0 !important;
  }
}
@media (max-width: 880px) {
  .cid-vhT8ojrHtJ .col-brand {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-vhT8ojrHtJ .col-brand {
    max-width: 100%;
    padding: 0 0 50px 0!important;
  }
}
.cid-vhT8ojrHtJ .col-contacts {
  max-width: 35.41%;
  width: 100%;
  padding: 0 40px 0 100px !important;
}
@media (max-width: 1199px) {
  .cid-vhT8ojrHtJ .col-contacts {
    padding: 0 0 0 40px !important;
  }
}
@media (max-width: 991px) {
  .cid-vhT8ojrHtJ .col-contacts {
    padding: 0 !important;
  }
}
@media (max-width: 880px) {
  .cid-vhT8ojrHtJ .col-contacts {
    max-width: 50%;
    padding: 0 0 0 50px !important;
  }
}
@media (max-width: 767px) {
  .cid-vhT8ojrHtJ .col-contacts {
    max-width: 100%;
    padding: 0 !important;
  }
}
.cid-vhT8ojrHtJ .col-form {
  max-width: 31.26%;
  width: 100%;
  padding: 0 !important;
}
@media (max-width: 880px) {
  .cid-vhT8ojrHtJ .col-form {
    max-width: 50%;
    padding: 40px 0 0 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-vhT8ojrHtJ .col-form {
    max-width: 100%;
    padding: 0 !important;
  }
}
.cid-vhT8ojrHtJ .col-links {
  max-width: 100%;
  width: 100%;
  padding: 110px 0 0 !important;
}
@media (max-width: 991px) {
  .cid-vhT8ojrHtJ .col-links {
    padding: 60px 0 0 !important;
  }
}
.cid-vhT8ojrHtJ .col-copyright {
  max-width: 100%;
  width: 100%;
  padding: 0 !important;
  margin-top: 20px;
}
.cid-vhT8ojrHtJ .navbar-brand {
  display: flex;
  flex-basis: auto;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  white-space: normal;
}
.cid-vhT8ojrHtJ .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-vhT8ojrHtJ .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-vhT8ojrHtJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-vhT8ojrHtJ .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-vhT8ojrHtJ .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-vhT8ojrHtJ .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-vhT8ojrHtJ .logo-text {
  color: #fff8dc;
  margin-top: 20px;
}
.cid-vhT8ojrHtJ .social-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 15px;
  margin-top: 26px;
}
.cid-vhT8ojrHtJ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 52px;
  max-width: 100%;
  width: fit-content;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.7) !important;
  box-shadow: none !important;
  background-color: transparent !important;
  transition: all 0.4s ease !important;
}
@media (max-width: 991px) {
  .cid-vhT8ojrHtJ .soc-item {
    min-width: 42px;
    min-height: 42px;
  }
}
.cid-vhT8ojrHtJ .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-vhT8ojrHtJ .soc-item a {
    min-width: 38px;
    min-height: 38px;
  }
}
.cid-vhT8ojrHtJ .soc-item a:hover {
  text-decoration-line: none !important;
}
.cid-vhT8ojrHtJ .soc-item .mbr-iconfont {
  font-size: 20px;
  color: #d4af37;
}
.cid-vhT8ojrHtJ .soc-item:hover {
  box-shadow: none;
  border-color: #d4af37;
  transform: translateY(-5px);
}
.cid-vhT8ojrHtJ .soc-item:hover .mbr-iconfont {
  color: #d4af37;
}
.cid-vhT8ojrHtJ .mbr-section-subtitle {
  color: #d4af37;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-vhT8ojrHtJ .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-vhT8ojrHtJ .contact-text {
  color: #fff8dc;
}
.cid-vhT8ojrHtJ .mbr-text {
  color: #131313;
}
.cid-vhT8ojrHtJ .contact-list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
  margin-top: 24px;
  color: #ffffff;
}
.cid-vhT8ojrHtJ .contact-list li {
  width: 100%;
  color: inherit;
  transition: 0.3s all;
}
.cid-vhT8ojrHtJ .contact-list li:not(:first-child) {
  margin-top: 4px;
}
.cid-vhT8ojrHtJ .contact-list li:hover {
  color: #d4af37 !important;
}
.cid-vhT8ojrHtJ .contact-list a {
  line-height: inherit !important;
}
.cid-vhT8ojrHtJ .contact-list a:hover {
  color: #d4af37 !important;
  line-height: inherit !important;
}
.cid-vhT8ojrHtJ form {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 24px;
}
@media (max-width: 880px) {
  .cid-vhT8ojrHtJ form {
    padding-top: 0;
  }
}
.cid-vhT8ojrHtJ form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
  z-index: 2;
}
.cid-vhT8ojrHtJ form p {
  color: #131313;
}
.cid-vhT8ojrHtJ form .mbr-section-btn {
  margin-top: 0;
}
.cid-vhT8ojrHtJ form .mbr-section-btn .btn {
  border-radius: 3px !important;
}
.cid-vhT8ojrHtJ form .form-group {
  margin-top: 0 !important;
  margin-bottom: 30px !important;
}
@media (max-width: 767px) {
  .cid-vhT8ojrHtJ form .form-group {
    margin-bottom: 25px !important;
  }
}
.cid-vhT8ojrHtJ form .form-control {
  height: 64px;
  border: 2px solid #131313 !important;
  box-shadow: 4px 4px 0 #131313;
  outline: none !important;
  border-radius: 4px !important;
  margin-bottom: 0;
  padding: 6px 12px 6px 30px;
  font-size: 18px;
  line-height: 1;
  color: #131313;
  background: #ffffff;
  font-weight: 400;
  transition: .3s;
}
.cid-vhT8ojrHtJ form .form-control::-webkit-input-placeholder {
  color: #131313;
}
.cid-vhT8ojrHtJ form .form-control::-moz-placeholder {
  color: #131313;
}
.cid-vhT8ojrHtJ form .form-control:-moz-placeholder {
  color: #131313;
}
.cid-vhT8ojrHtJ form .form-control:-ms-input-placeholder {
  color: #131313;
}
.cid-vhT8ojrHtJ form select {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form textarea {
  height: 120px !important;
  min-height: 120px !important;
  padding: 6px 12px 6px 30px;
  resize: none;
}
.cid-vhT8ojrHtJ form textarea::-webkit-input-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form textarea::-moz-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form textarea:-moz-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form textarea:-ms-input-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form input,
.cid-vhT8ojrHtJ form textarea {
  transition: .3s all;
}
.cid-vhT8ojrHtJ form input:active,
.cid-vhT8ojrHtJ form textarea:active,
.cid-vhT8ojrHtJ form input:focus,
.cid-vhT8ojrHtJ form textarea:focus {
  background-color: #ffffff !important;
  border-color: #131313 !important;
  box-shadow: none !important;
  outline: none !important;
}
.cid-vhT8ojrHtJ form input:active::-webkit-input-placeholder,
.cid-vhT8ojrHtJ form textarea:active::-webkit-input-placeholder,
.cid-vhT8ojrHtJ form input:focus::-webkit-input-placeholder,
.cid-vhT8ojrHtJ form textarea:focus::-webkit-input-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form input:active::-moz-placeholder,
.cid-vhT8ojrHtJ form textarea:active::-moz-placeholder,
.cid-vhT8ojrHtJ form input:focus::-moz-placeholder,
.cid-vhT8ojrHtJ form textarea:focus::-moz-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form input:active:-moz-placeholder,
.cid-vhT8ojrHtJ form textarea:active:-moz-placeholder,
.cid-vhT8ojrHtJ form input:focus:-moz-placeholder,
.cid-vhT8ojrHtJ form textarea:focus:-moz-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form input:active:-ms-input-placeholder,
.cid-vhT8ojrHtJ form textarea:active:-ms-input-placeholder,
.cid-vhT8ojrHtJ form input:focus:-ms-input-placeholder,
.cid-vhT8ojrHtJ form textarea:focus:-ms-input-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form .row {
  flex-wrap: wrap;
  margin-left: -8px !important;
  margin-right: -8px !important;
}
.cid-vhT8ojrHtJ form .row [class*=col] {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.cid-vhT8ojrHtJ form label {
  width: 100%;
  color: #131313;
  margin-bottom: 8px;
}
.cid-vhT8ojrHtJ form .form-check label {
  color: #131313;
}
.cid-vhT8ojrHtJ form .form-check-input {
  border-color: #131313 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-vhT8ojrHtJ form .form-check-input:focus,
.cid-vhT8ojrHtJ form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #FC7942 !important;
}
.cid-vhT8ojrHtJ form .form-check-input:checked {
  border-color: #FC7942 !important;
  background-color: #FC7942 !important;
}
.cid-vhT8ojrHtJ .list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 20px;
  width: 100%;
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
  color: #f5f5f5;
}
.cid-vhT8ojrHtJ .list li {
  width: auto;
  color: inherit !important;
  transition: 0.3s all;
  line-height: 1 !important;
}
.cid-vhT8ojrHtJ .list a {
  line-height: inherit !important;
}
.cid-vhT8ojrHtJ .list a:hover {
  line-height: inherit !important;
}
.cid-vhT8ojrHtJ .copyright {
  color: #f5f5f5;
  padding-top: 30px;
  border-top: none !important;
  position: relative;
}
.cid-vhT8ojrHtJ .soc-item .mbr-iconfont {
  color: #D4AF37 !important;
  transition: 0.4s;
}
.cid-vhT8ojrHtJ .soc-item:hover {
  transform: translateY(-6px) scale(1.08) !important;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3), 0 10px 40px rgba(0, 0, 0, 0.8) !important;
  border-color: #D4AF37 !important;
}
.cid-vhT8ojrHtJ .soc-item:hover .mbr-iconfont {
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}
.cid-vhT8ojrHtJ .copyright::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.4) 15%, rgba(212, 175, 55, 0.9) 50%, rgba(212, 175, 55, 0.4) 85%, transparent 100%);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
  animation: goldLineFlow 4s ease-in-out infinite;
}
@keyframes goldLineFlow {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}
.cid-vhT8ojrHtJ .appointment-text {
  color: #D4AF37 !important;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 14px;
}
.cid-vhT8ojrHtJ .list li {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: color 0.4s ease;
}
.cid-vhT8ojrHtJ .list li:hover {
  color: #D4AF37 !important;
}
.cid-vhT8ojrHtJ .list li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  transition: width 0.4s ease;
}
.cid-vhT8ojrHtJ .list li:hover::after {
  width: 100%;
}
.cid-veXnEhGRlw {
  z-index: 1000;
  width: 100%;
}
.cid-veXnEhGRlw nav.navbar {
  position: fixed;
}
.cid-veXnEhGRlw .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-veXnEhGRlw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-veXnEhGRlw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-veXnEhGRlw .dropdown-item:hover,
.cid-veXnEhGRlw .dropdown-item:focus {
  background: #d4af37 !important;
  color: black !important;
}
.cid-veXnEhGRlw .dropdown-item:hover span {
  color: white;
}
.cid-veXnEhGRlw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-veXnEhGRlw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-veXnEhGRlw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-veXnEhGRlw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-veXnEhGRlw .nav-link {
  position: relative;
}
.cid-veXnEhGRlw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-veXnEhGRlw .container {
    flex-wrap: nowrap;
  }
}
.cid-veXnEhGRlw .iconfont-wrapper {
  color: #ff014e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-veXnEhGRlw .navbar-nav .nav-item {
  margin: 10px 14px !important;
}
.cid-veXnEhGRlw .navbar-nav .nav-item .nav-link {
  margin: 5px 10px !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 0.5;
}
.cid-veXnEhGRlw .navbar-nav .nav-item .nav-link:hover,
.cid-veXnEhGRlw .navbar-nav .nav-item .nav-link:focus,
.cid-veXnEhGRlw .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #d4af37 !important;
}
.cid-veXnEhGRlw .dropdown-menu,
.cid-veXnEhGRlw .navbar.opened {
  background: #0e0e0e !important;
}
.cid-veXnEhGRlw .nav-item:focus,
.cid-veXnEhGRlw .nav-link:focus {
  outline: none;
}
.cid-veXnEhGRlw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-veXnEhGRlw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-veXnEhGRlw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-veXnEhGRlw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-veXnEhGRlw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-veXnEhGRlw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-veXnEhGRlw .navbar {
  min-height: 122px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0e0e0e;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-veXnEhGRlw .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-veXnEhGRlw .navbar.opened {
  transition: all 0.3s;
}
.cid-veXnEhGRlw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-veXnEhGRlw .navbar .navbar-logo img {
  width: auto;
}
.cid-veXnEhGRlw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-veXnEhGRlw .navbar.collapsed {
  justify-content: center;
}
.cid-veXnEhGRlw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-veXnEhGRlw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-veXnEhGRlw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-veXnEhGRlw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-veXnEhGRlw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-veXnEhGRlw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-veXnEhGRlw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-veXnEhGRlw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-veXnEhGRlw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-veXnEhGRlw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-veXnEhGRlw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-veXnEhGRlw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-veXnEhGRlw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-veXnEhGRlw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-veXnEhGRlw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-veXnEhGRlw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-veXnEhGRlw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-veXnEhGRlw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-veXnEhGRlw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-veXnEhGRlw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-veXnEhGRlw .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-veXnEhGRlw .navbar.navbar-short {
  min-height: 90px;
}
.cid-veXnEhGRlw .navbar.navbar-short .navbar-logo img {
  height: 4.2rem !important;
}
.cid-veXnEhGRlw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-veXnEhGRlw .navbar {
    min-height: 80px;
  }
}
.cid-veXnEhGRlw .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-veXnEhGRlw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-veXnEhGRlw .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-veXnEhGRlw .navbar-brand {
    min-height: 69px;
  }
}
.cid-veXnEhGRlw .dropdown-item.active,
.cid-veXnEhGRlw .dropdown-item:active {
  background-color: transparent;
}
.cid-veXnEhGRlw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-veXnEhGRlw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-veXnEhGRlw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-veXnEhGRlw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e0e0e;
}
.cid-veXnEhGRlw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-veXnEhGRlw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-veXnEhGRlw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-veXnEhGRlw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-veXnEhGRlw button.navbar-toggler {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-veXnEhGRlw button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-veXnEhGRlw button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-veXnEhGRlw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #d4af37;
}
.cid-veXnEhGRlw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-veXnEhGRlw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-veXnEhGRlw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-veXnEhGRlw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-veXnEhGRlw nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veXnEhGRlw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-veXnEhGRlw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-veXnEhGRlw nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veXnEhGRlw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-veXnEhGRlw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-veXnEhGRlw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-veXnEhGRlw .navbar {
    height: 70px;
  }
  .cid-veXnEhGRlw .navbar.opened {
    height: auto;
  }
  .cid-veXnEhGRlw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-veXnEhGRlw .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #0e0e0e;
}
@media (max-width: 575px) {
  .cid-veXnEhGRlw .navbar-short {
    min-height: 70px;
  }
}
.cid-veXnEhGRlw .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-veXnEhGRlw .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-veXnEhGRlw .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-veXnEhGRlw .container-fluid {
    padding: 0 3px;
  }
}
.cid-veXnEhGRlw .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-veXnEhGRlw .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-veXnEhGRlw .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-veXnEhGRlw .container-fluid {
    flex-wrap: wrap;
  }
  .cid-veXnEhGRlw button.navbar-toggler {
    display: flex;
  }
  .cid-veXnEhGRlw .navbar-brand {
    width: auto !important;
  }
  .cid-veXnEhGRlw .navbar-collapse {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cid-veXnEhGRlw .navbar-collapse .nav-item {
    margin: 8px 0 !important;
  }
  .cid-veXnEhGRlw .navbar-collapse .nav-item .nav-link {
    margin: 0 !important;
    padding: 0 !important;
    transition: 0.3s all;
    opacity: 1;
    justify-content: left;
  }
  .cid-veXnEhGRlw .navbar-collapse .nav-item .nav-link:hover {
    opacity: 1;
    color: #FFFFFF !important;
  }
  .cid-veXnEhGRlw .icons-menu {
    margin-top: 10px;
    justify-content: left;
  }
  .cid-veXnEhGRlw .navbar-buttons {
    margin-top: 20px;
    text-align: left;
    margin-left: -0.6rem;
    margin-right: -0.6rem;
  }
}
.cid-vhVrnhpLN5 {
  background-image: url("../../../assets/images/luxury-bg-2000x1250.webp");
}
.cid-vhVrnhpLN5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhVrnhpLN5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhVrnhpLN5 .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-vhVrnhpLN5 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-vhVrnhpLN5 .container {
    padding: 0 26px;
  }
}
.cid-vhVrnhpLN5 .content-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 1000px;
  padding: 45px;
}
@media (max-width: 1440px) {
  .cid-vhVrnhpLN5 .content-wrapper {
    height: 800px;
  }
}
@media (max-width: 992px) {
  .cid-vhVrnhpLN5 .content-wrapper {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .cid-vhVrnhpLN5 .content-wrapper {
    height: auto;
  }
}
.cid-vhVrnhpLN5 .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-vhVrnhpLN5 .content-wrapper .content-wrap {
  width: 100%;
  position: relative;
  z-index: 1;
}
.cid-vhVrnhpLN5 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 40px;
}
.cid-vhVrnhpLN5 .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-flex;
  width: 50%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-vhVrnhpLN5 .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vhVrnhpLN5 .mbr-section-title {
  color: #000000;
}
.cid-vhVrnhpLN5 .mbr-text,
.cid-vhVrnhpLN5 .text-wrapper {
  color: #fff8dc;
  text-align: center;
}
.cid-vhVrnhpLN5 .mbr-section-title,
.cid-vhVrnhpLN5 .mbr-section-btn {
  text-align: center;
  color: #d4af37;
}
.cid-vhX0yEfOhX {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #0c0c0c;
}
@media (max-width: 767px) {
  .cid-vhX0yEfOhX .mbr-section-title {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-vhX0yEfOhX .container {
    position: relative;
  }
  .cid-vhX0yEfOhX .row {
    margin: 0;
  }
  .cid-vhX0yEfOhX .mbr-section-title {
    margin: 0;
  }
}
.cid-vhX0yEfOhX .mbr-section-subtitle {
  color: #fff8dc;
}
.cid-vhX0yEfOhX .mbr-text {
  margin-top: 1.4rem;
  color: #fff8dc;
}
.cid-vhX0yEfOhX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhX0yEfOhX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhX0yEfOhX .mbr-section-title {
  color: #d4af37;
}
.cid-vhX25mgc9E {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #0c0c0c;
}
.cid-vhX25mgc9E .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #d4af37;
  margin-bottom: 1.5rem;
}
.cid-vhX25mgc9E .col-lg-4,
.cid-vhX25mgc9E .col-12 {
  padding: 0 2rem;
}
.cid-vhX25mgc9E .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-vhX25mgc9E .card-wrapper {
  position: relative;
  padding: 3rem 2rem;
  border-radius: 2.5rem;
  background: #000;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.25);
  margin-bottom: 2rem;
}
.cid-vhX25mgc9E .card-title,
.cid-vhX25mgc9E .iconfont-wrapper {
  color: #d4af37;
  text-align: center;
}
.cid-vhX25mgc9E .card-text {
  color: #fff8dc;
  text-align: center;
}
.cid-vhX25mgc9E .mbr-section-subtitle {
  color: #fff8dc;
}
.cid-vhX25mgc9E .mbr-section-title {
  color: #d4af37;
}
.cid-vhX25mgc9E .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhX25mgc9E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhX25mgc9E .card-wrapper:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.6), 0 0 90px rgba(212, 175, 55, 0.25), inset 0 0 18px rgba(212, 175, 55, 0.15);
}
@media (max-width: 767px) {
  .cid-vhX25mgc9E .card-wrapper {
    padding: 1.8rem 1.3rem;
    border-radius: 1.8rem;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.25), 0 0 26px rgba(212, 175, 55, 0.12);
  }
  .cid-vhX25mgc9E .luxury-locations {
    margin-top: 2.5rem;
  }
  .cid-vhX25mgc9E .luxury-locations p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}
.cid-vhX25mgc9E .card-wrapper i {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.cid-vhX25mgc9E .card-wrapper h4 {
  margin: 0.5rem 0;
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  letter-spacing: 2.5px;
  color: #d4af37;
  margin-bottom: 0.8rem;
}
.cid-vhX25mgc9E .card-wrapper p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e6e6e6;
  letter-spacing: 0.6px;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
}
.cid-vhX25mgc9E section {
  padding: 2rem 1rem;
}
.cid-vhX25mgc9E .card-wrapper::before,
.cid-vhX25mgc9E .card-wrapper::after {
  inset: 2px;
}
.cid-vhX25mgc9E .luxury-locations {
  text-align: center;
  margin-top: 3.5rem;
  padding-top: 2rem;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeLuxury 1s ease forwards;
}
.cid-vhX25mgc9E .luxury-locations::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.6), transparent);
}
.cid-vhX25mgc9E .luxury-locations h5 {
  font-family: "Cinzel", serif;
  color: #d4af37;
  letter-spacing: 2.5px;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.cid-vhX25mgc9E .luxury-locations p {
  color: rgba(255, 248, 220, 0.85);
  font-size: 1.05rem;
  letter-spacing: 1px;
}
.cid-vhX25mgc9E .luxury-locations span {
  color: rgba(212, 175, 55, 0.5);
  margin: 0 8px;
}
@keyframes fadeLuxury {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cid-vhX25mgc9E P {
  color: #fff8dc;
}
.cid-vi0O5NTofX {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #0c0c0c;
}
.cid-vi0O5NTofX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vi0O5NTofX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vi0O5NTofX .content-wrap {
  margin: 0 -50px 50px;
}
.cid-vi0O5NTofX .content-wrap .card {
  padding: 0 50px;
}
.cid-vi0O5NTofX .content-wrap .label-wrapper {
  margin-bottom: 20px;
}
.cid-vi0O5NTofX .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.cid-vi0O5NTofX .content-wrap .label-wrapper .label-wrap .iconfont-wrapper {
  display: flex;
}
.cid-vi0O5NTofX .content-wrap .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 20px;
}
.cid-vi0O5NTofX .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vi0O5NTofX .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vi0O5NTofX .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-vi0O5NTofX .image-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-vi0O5NTofX .image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.cid-vi0O5NTofX .image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  pointer-events: none;
}
.cid-vi0O5NTofX .form-wrap {
  background-color: #0c0c0c;
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-vi0O5NTofX .form-wrap {
    padding: 15px;
  }
}
.cid-vi0O5NTofX .form-wrap .dragArea.row {
  margin: 0 -9.6px;
}
.cid-vi0O5NTofX .form-wrap .dragArea.row .form-group {
  margin-bottom: 0 !important;
}
.cid-vi0O5NTofX .form-wrap .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 10px;
}
.cid-vi0O5NTofX .form-wrap .dragArea.row .form-group .form-control {
  padding: 12px;
  background-color: #272727;
  border: 1px solid transparent !important;
  box-shadow: none;
  margin-bottom: 20px;
  color: #d4af37;
  transition: all .3s ease;
}
.cid-vi0O5NTofX .form-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #d4af37;
}
.cid-vi0O5NTofX .form-wrap .dragArea.row .form-group .form-control:hover,
.cid-vi0O5NTofX .form-wrap .dragArea.row .form-group .form-control:focus {
  border: 1px solid #d4af37 !important;
  background-color: #0c0c0c;
}
.cid-vi0O5NTofX .form-wrap .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-vi0O5NTofX .form-wrap .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-vi0O5NTofX .form-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: #d4af37;
  border-color: #d4af37;
}
.cid-vi0O5NTofX .form-wrap .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 0;
}
.cid-vi0O5NTofX .form-wrap .dragArea.row .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
  margin-right: 0;
  margin-top: 0;
}
.cid-vi0O5NTofX .image-wrap {
  margin: 0 -50px 0;
}
.cid-vi0O5NTofX .image-wrap .card {
  padding: 0 50px;
}
.cid-vi0O5NTofX .mbr-label {
  color: #1f1f1f;
}
.cid-vi0O5NTofX .mbr-section-title {
  color: #1f1f1f;
}
.cid-vi0O5NTofX label {
  color: #1f1f1f;
}
.cid-vi0O5NTofX .mbr-section-title,
.cid-vi0O5NTofX .title-wrapper,
.cid-vi0O5NTofX .main-btn {
  color: #d4af37;
}
.cid-vi0O5NTofX LABEL {
  color: #d4af37;
}
.cid-vhT8ojrHtJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0c0c0c;
}
.cid-vhT8ojrHtJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhT8ojrHtJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhT8ojrHtJ .footer-main-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-vhT8ojrHtJ .col-brand {
  max-width: 33.33%;
  width: 100%;
  padding: 0 40px 0 0 !important;
}
@media (max-width: 1199px) {
  .cid-vhT8ojrHtJ .col-brand {
    padding: 0 !important;
  }
}
@media (max-width: 880px) {
  .cid-vhT8ojrHtJ .col-brand {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-vhT8ojrHtJ .col-brand {
    max-width: 100%;
    padding: 0 0 50px 0!important;
  }
}
.cid-vhT8ojrHtJ .col-contacts {
  max-width: 35.41%;
  width: 100%;
  padding: 0 40px 0 100px !important;
}
@media (max-width: 1199px) {
  .cid-vhT8ojrHtJ .col-contacts {
    padding: 0 0 0 40px !important;
  }
}
@media (max-width: 991px) {
  .cid-vhT8ojrHtJ .col-contacts {
    padding: 0 !important;
  }
}
@media (max-width: 880px) {
  .cid-vhT8ojrHtJ .col-contacts {
    max-width: 50%;
    padding: 0 0 0 50px !important;
  }
}
@media (max-width: 767px) {
  .cid-vhT8ojrHtJ .col-contacts {
    max-width: 100%;
    padding: 0 !important;
  }
}
.cid-vhT8ojrHtJ .col-form {
  max-width: 31.26%;
  width: 100%;
  padding: 0 !important;
}
@media (max-width: 880px) {
  .cid-vhT8ojrHtJ .col-form {
    max-width: 50%;
    padding: 40px 0 0 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-vhT8ojrHtJ .col-form {
    max-width: 100%;
    padding: 0 !important;
  }
}
.cid-vhT8ojrHtJ .col-links {
  max-width: 100%;
  width: 100%;
  padding: 110px 0 0 !important;
}
@media (max-width: 991px) {
  .cid-vhT8ojrHtJ .col-links {
    padding: 60px 0 0 !important;
  }
}
.cid-vhT8ojrHtJ .col-copyright {
  max-width: 100%;
  width: 100%;
  padding: 0 !important;
  margin-top: 20px;
}
.cid-vhT8ojrHtJ .navbar-brand {
  display: flex;
  flex-basis: auto;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  white-space: normal;
}
.cid-vhT8ojrHtJ .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-vhT8ojrHtJ .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-vhT8ojrHtJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-vhT8ojrHtJ .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-vhT8ojrHtJ .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-vhT8ojrHtJ .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-vhT8ojrHtJ .logo-text {
  color: #fff8dc;
  margin-top: 20px;
}
.cid-vhT8ojrHtJ .social-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 15px;
  margin-top: 26px;
}
.cid-vhT8ojrHtJ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 52px;
  max-width: 100%;
  width: fit-content;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.7) !important;
  box-shadow: none !important;
  background-color: transparent !important;
  transition: all 0.4s ease !important;
}
@media (max-width: 991px) {
  .cid-vhT8ojrHtJ .soc-item {
    min-width: 42px;
    min-height: 42px;
  }
}
.cid-vhT8ojrHtJ .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-vhT8ojrHtJ .soc-item a {
    min-width: 38px;
    min-height: 38px;
  }
}
.cid-vhT8ojrHtJ .soc-item a:hover {
  text-decoration-line: none !important;
}
.cid-vhT8ojrHtJ .soc-item .mbr-iconfont {
  font-size: 20px;
  color: #d4af37;
}
.cid-vhT8ojrHtJ .soc-item:hover {
  box-shadow: none;
  border-color: #d4af37;
  transform: translateY(-5px);
}
.cid-vhT8ojrHtJ .soc-item:hover .mbr-iconfont {
  color: #d4af37;
}
.cid-vhT8ojrHtJ .mbr-section-subtitle {
  color: #d4af37;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-vhT8ojrHtJ .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-vhT8ojrHtJ .contact-text {
  color: #fff8dc;
}
.cid-vhT8ojrHtJ .mbr-text {
  color: #131313;
}
.cid-vhT8ojrHtJ .contact-list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
  margin-top: 24px;
  color: #ffffff;
}
.cid-vhT8ojrHtJ .contact-list li {
  width: 100%;
  color: inherit;
  transition: 0.3s all;
}
.cid-vhT8ojrHtJ .contact-list li:not(:first-child) {
  margin-top: 4px;
}
.cid-vhT8ojrHtJ .contact-list li:hover {
  color: #d4af37 !important;
}
.cid-vhT8ojrHtJ .contact-list a {
  line-height: inherit !important;
}
.cid-vhT8ojrHtJ .contact-list a:hover {
  color: #d4af37 !important;
  line-height: inherit !important;
}
.cid-vhT8ojrHtJ form {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 24px;
}
@media (max-width: 880px) {
  .cid-vhT8ojrHtJ form {
    padding-top: 0;
  }
}
.cid-vhT8ojrHtJ form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
  z-index: 2;
}
.cid-vhT8ojrHtJ form p {
  color: #131313;
}
.cid-vhT8ojrHtJ form .mbr-section-btn {
  margin-top: 0;
}
.cid-vhT8ojrHtJ form .mbr-section-btn .btn {
  border-radius: 3px !important;
}
.cid-vhT8ojrHtJ form .form-group {
  margin-top: 0 !important;
  margin-bottom: 30px !important;
}
@media (max-width: 767px) {
  .cid-vhT8ojrHtJ form .form-group {
    margin-bottom: 25px !important;
  }
}
.cid-vhT8ojrHtJ form .form-control {
  height: 64px;
  border: 2px solid #131313 !important;
  box-shadow: 4px 4px 0 #131313;
  outline: none !important;
  border-radius: 4px !important;
  margin-bottom: 0;
  padding: 6px 12px 6px 30px;
  font-size: 18px;
  line-height: 1;
  color: #131313;
  background: #ffffff;
  font-weight: 400;
  transition: .3s;
}
.cid-vhT8ojrHtJ form .form-control::-webkit-input-placeholder {
  color: #131313;
}
.cid-vhT8ojrHtJ form .form-control::-moz-placeholder {
  color: #131313;
}
.cid-vhT8ojrHtJ form .form-control:-moz-placeholder {
  color: #131313;
}
.cid-vhT8ojrHtJ form .form-control:-ms-input-placeholder {
  color: #131313;
}
.cid-vhT8ojrHtJ form select {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form textarea {
  height: 120px !important;
  min-height: 120px !important;
  padding: 6px 12px 6px 30px;
  resize: none;
}
.cid-vhT8ojrHtJ form textarea::-webkit-input-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form textarea::-moz-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form textarea:-moz-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form textarea:-ms-input-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form input,
.cid-vhT8ojrHtJ form textarea {
  transition: .3s all;
}
.cid-vhT8ojrHtJ form input:active,
.cid-vhT8ojrHtJ form textarea:active,
.cid-vhT8ojrHtJ form input:focus,
.cid-vhT8ojrHtJ form textarea:focus {
  background-color: #ffffff !important;
  border-color: #131313 !important;
  box-shadow: none !important;
  outline: none !important;
}
.cid-vhT8ojrHtJ form input:active::-webkit-input-placeholder,
.cid-vhT8ojrHtJ form textarea:active::-webkit-input-placeholder,
.cid-vhT8ojrHtJ form input:focus::-webkit-input-placeholder,
.cid-vhT8ojrHtJ form textarea:focus::-webkit-input-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form input:active::-moz-placeholder,
.cid-vhT8ojrHtJ form textarea:active::-moz-placeholder,
.cid-vhT8ojrHtJ form input:focus::-moz-placeholder,
.cid-vhT8ojrHtJ form textarea:focus::-moz-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form input:active:-moz-placeholder,
.cid-vhT8ojrHtJ form textarea:active:-moz-placeholder,
.cid-vhT8ojrHtJ form input:focus:-moz-placeholder,
.cid-vhT8ojrHtJ form textarea:focus:-moz-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form input:active:-ms-input-placeholder,
.cid-vhT8ojrHtJ form textarea:active:-ms-input-placeholder,
.cid-vhT8ojrHtJ form input:focus:-ms-input-placeholder,
.cid-vhT8ojrHtJ form textarea:focus:-ms-input-placeholder {
  color: #131313 !important;
}
.cid-vhT8ojrHtJ form .row {
  flex-wrap: wrap;
  margin-left: -8px !important;
  margin-right: -8px !important;
}
.cid-vhT8ojrHtJ form .row [class*=col] {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.cid-vhT8ojrHtJ form label {
  width: 100%;
  color: #131313;
  margin-bottom: 8px;
}
.cid-vhT8ojrHtJ form .form-check label {
  color: #131313;
}
.cid-vhT8ojrHtJ form .form-check-input {
  border-color: #131313 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-vhT8ojrHtJ form .form-check-input:focus,
.cid-vhT8ojrHtJ form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #FC7942 !important;
}
.cid-vhT8ojrHtJ form .form-check-input:checked {
  border-color: #FC7942 !important;
  background-color: #FC7942 !important;
}
.cid-vhT8ojrHtJ .list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 20px;
  width: 100%;
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
  color: #f5f5f5;
}
.cid-vhT8ojrHtJ .list li {
  width: auto;
  color: inherit !important;
  transition: 0.3s all;
  line-height: 1 !important;
}
.cid-vhT8ojrHtJ .list a {
  line-height: inherit !important;
}
.cid-vhT8ojrHtJ .list a:hover {
  line-height: inherit !important;
}
.cid-vhT8ojrHtJ .copyright {
  color: #f5f5f5;
  padding-top: 30px;
  border-top: none !important;
  position: relative;
}
.cid-vhT8ojrHtJ .soc-item .mbr-iconfont {
  color: #D4AF37 !important;
  transition: 0.4s;
}
.cid-vhT8ojrHtJ .soc-item:hover {
  transform: translateY(-6px) scale(1.08) !important;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3), 0 10px 40px rgba(0, 0, 0, 0.8) !important;
  border-color: #D4AF37 !important;
}
.cid-vhT8ojrHtJ .soc-item:hover .mbr-iconfont {
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}
.cid-vhT8ojrHtJ .copyright::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.4) 15%, rgba(212, 175, 55, 0.9) 50%, rgba(212, 175, 55, 0.4) 85%, transparent 100%);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
  animation: goldLineFlow 4s ease-in-out infinite;
}
@keyframes goldLineFlow {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}
.cid-vhT8ojrHtJ .appointment-text {
  color: #D4AF37 !important;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 14px;
}
.cid-vhT8ojrHtJ .list li {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: color 0.4s ease;
}
.cid-vhT8ojrHtJ .list li:hover {
  color: #D4AF37 !important;
}
.cid-vhT8ojrHtJ .list li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  transition: width 0.4s ease;
}
.cid-vhT8ojrHtJ .list li:hover::after {
  width: 100%;
}
.cid-vi1u2fjj2R {
  z-index: 1000;
  width: 100%;
}
.cid-vi1u2fjj2R nav.navbar {
  position: fixed;
}
.cid-vi1u2fjj2R .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vi1u2fjj2R .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vi1u2fjj2R .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vi1u2fjj2R .dropdown-item:hover,
.cid-vi1u2fjj2R .dropdown-item:focus {
  background: #d4af37 !important;
  color: black !important;
}
.cid-vi1u2fjj2R .dropdown-item:hover span {
  color: white;
}
.cid-vi1u2fjj2R .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vi1u2fjj2R .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vi1u2fjj2R .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vi1u2fjj2R .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vi1u2fjj2R .nav-link {
  position: relative;
}
.cid-vi1u2fjj2R .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vi1u2fjj2R .container {
    flex-wrap: nowrap;
  }
}
.cid-vi1u2fjj2R .iconfont-wrapper {
  color: #ff014e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vi1u2fjj2R .navbar-nav .nav-item {
  margin: 10px 14px !important;
}
.cid-vi1u2fjj2R .navbar-nav .nav-item .nav-link {
  margin: 5px 10px !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 0.5;
}
.cid-vi1u2fjj2R .navbar-nav .nav-item .nav-link:hover,
.cid-vi1u2fjj2R .navbar-nav .nav-item .nav-link:focus,
.cid-vi1u2fjj2R .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #d4af37 !important;
}
.cid-vi1u2fjj2R .dropdown-menu,
.cid-vi1u2fjj2R .navbar.opened {
  background: #0e0e0e !important;
}
.cid-vi1u2fjj2R .nav-item:focus,
.cid-vi1u2fjj2R .nav-link:focus {
  outline: none;
}
.cid-vi1u2fjj2R .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vi1u2fjj2R .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vi1u2fjj2R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vi1u2fjj2R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vi1u2fjj2R .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vi1u2fjj2R .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vi1u2fjj2R .navbar {
  min-height: 122px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0e0e0e;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-vi1u2fjj2R .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-vi1u2fjj2R .navbar.opened {
  transition: all 0.3s;
}
.cid-vi1u2fjj2R .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vi1u2fjj2R .navbar .navbar-logo img {
  width: auto;
}
.cid-vi1u2fjj2R .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vi1u2fjj2R .navbar.collapsed {
  justify-content: center;
}
.cid-vi1u2fjj2R .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vi1u2fjj2R .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vi1u2fjj2R .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-vi1u2fjj2R .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vi1u2fjj2R .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vi1u2fjj2R .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vi1u2fjj2R .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vi1u2fjj2R .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vi1u2fjj2R .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vi1u2fjj2R .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vi1u2fjj2R .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vi1u2fjj2R .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vi1u2fjj2R .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vi1u2fjj2R .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vi1u2fjj2R .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vi1u2fjj2R .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vi1u2fjj2R .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vi1u2fjj2R .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vi1u2fjj2R .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vi1u2fjj2R .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vi1u2fjj2R .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vi1u2fjj2R .navbar.navbar-short {
  min-height: 90px;
}
.cid-vi1u2fjj2R .navbar.navbar-short .navbar-logo img {
  height: 4.2rem !important;
}
.cid-vi1u2fjj2R .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-vi1u2fjj2R .navbar {
    min-height: 80px;
  }
}
.cid-vi1u2fjj2R .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-vi1u2fjj2R .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vi1u2fjj2R .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-vi1u2fjj2R .navbar-brand {
    min-height: 69px;
  }
}
.cid-vi1u2fjj2R .dropdown-item.active,
.cid-vi1u2fjj2R .dropdown-item:active {
  background-color: transparent;
}
.cid-vi1u2fjj2R .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vi1u2fjj2R .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vi1u2fjj2R .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vi1u2fjj2R .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0e0e0e;
}
.cid-vi1u2fjj2R .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vi1u2fjj2R .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vi1u2fjj2R ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vi1u2fjj2R .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vi1u2fjj2R button.navbar-toggler {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-vi1u2fjj2R button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-vi1u2fjj2R button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-vi1u2fjj2R button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #d4af37;
}
.cid-vi1u2fjj2R button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-vi1u2fjj2R button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-vi1u2fjj2R button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-vi1u2fjj2R button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vi1u2fjj2R nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vi1u2fjj2R nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vi1u2fjj2R nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vi1u2fjj2R nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vi1u2fjj2R .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vi1u2fjj2R a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vi1u2fjj2R .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vi1u2fjj2R .navbar {
    height: 70px;
  }
  .cid-vi1u2fjj2R .navbar.opened {
    height: auto;
  }
  .cid-vi1u2fjj2R .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vi1u2fjj2R .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #0e0e0e;
}
@media (max-width: 575px) {
  .cid-vi1u2fjj2R .navbar-short {
    min-height: 70px;
  }
}
.cid-vi1u2fjj2R .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-vi1u2fjj2R .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-vi1u2fjj2R .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-vi1u2fjj2R .container-fluid {
    padding: 0 3px;
  }
}
.cid-vi1u2fjj2R .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vi1u2fjj2R .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-vi1u2fjj2R .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-vi1u2fjj2R .container-fluid {
    flex-wrap: wrap;
  }
  .cid-vi1u2fjj2R button.navbar-toggler {
    display: flex;
  }
  .cid-vi1u2fjj2R .navbar-brand {
    width: auto !important;
  }
  .cid-vi1u2fjj2R .navbar-collapse {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cid-vi1u2fjj2R .navbar-collapse .nav-item {
    margin: 8px 0 !important;
  }
  .cid-vi1u2fjj2R .navbar-collapse .nav-item .nav-link {
    margin: 0 !important;
    padding: 0 !important;
    transition: 0.3s all;
    opacity: 1;
    justify-content: left;
  }
  .cid-vi1u2fjj2R .navbar-collapse .nav-item .nav-link:hover {
    opacity: 1;
    color: #FFFFFF !important;
  }
  .cid-vi1u2fjj2R .icons-menu {
    margin-top: 10px;
    justify-content: left;
  }
  .cid-vi1u2fjj2R .navbar-buttons {
    margin-top: 20px;
    text-align: left;
    margin-left: -0.6rem;
    margin-right: -0.6rem;
  }
}
.cid-vi1u2fRsVK {
  background-image: url("../../../assets/images/luxury-bg-2000x1250.webp");
}
.cid-vi1u2fRsVK .mbr-fallback-image.disabled {
  display: none;
}
.cid-vi1u2fRsVK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vi1u2fRsVK .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-vi1u2fRsVK .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-vi1u2fRsVK .container {
    padding: 0 26px;
  }
}
.cid-vi1u2fRsVK .content-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 1000px;
  padding: 45px;
}
@media (max-width: 1440px) {
  .cid-vi1u2fRsVK .content-wrapper {
    height: 800px;
  }
}
@media (max-width: 992px) {
  .cid-vi1u2fRsVK .content-wrapper {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .cid-vi1u2fRsVK .content-wrapper {
    height: auto;
  }
}
.cid-vi1u2fRsVK .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-vi1u2fRsVK .content-wrapper .content-wrap {
  width: 100%;
  position: relative;
  z-index: 1;
}
.cid-vi1u2fRsVK .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 40px;
}
.cid-vi1u2fRsVK .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-flex;
  width: 50%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-vi1u2fRsVK .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vi1u2fRsVK .mbr-section-title {
  color: #000000;
}
.cid-vi1u2fRsVK .mbr-text,
.cid-vi1u2fRsVK .text-wrapper {
  color: #fff8dc;
  text-align: center;
}
.cid-vi1u2fRsVK .mbr-section-title,
.cid-vi1u2fRsVK .mbr-section-btn {
  text-align: center;
  color: #d4af37;
}
.cid-vi1u2gcyCn {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #0c0c0c;
}
@media (max-width: 767px) {
  .cid-vi1u2gcyCn .mbr-section-title {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-vi1u2gcyCn .container {
    position: relative;
  }
  .cid-vi1u2gcyCn .row {
    margin: 0;
  }
  .cid-vi1u2gcyCn .mbr-section-title {
    margin: 0;
  }
}
.cid-vi1u2gcyCn .mbr-section-subtitle {
  color: #fff8dc;
}
.cid-vi1u2gcyCn .mbr-text {
  margin-top: 1.4rem;
  color: #fff8dc;
}
.cid-vi1u2gcyCn .mbr-fallback-image.disabled {
  display: none;
}
.cid-vi1u2gcyCn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vi1u2gcyCn .mbr-section-title {
  color: #d4af37;
}
.cid-vi1u2hoqDM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0c0c0c;
}
.cid-vi1u2hoqDM .mbr-fallback-image.disabled {
  display: none;
}
.cid-vi1u2hoqDM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vi1u2hoqDM .footer-main-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-vi1u2hoqDM .col-brand {
  max-width: 33.33%;
  width: 100%;
  padding: 0 40px 0 0 !important;
}
@media (max-width: 1199px) {
  .cid-vi1u2hoqDM .col-brand {
    padding: 0 !important;
  }
}
@media (max-width: 880px) {
  .cid-vi1u2hoqDM .col-brand {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-vi1u2hoqDM .col-brand {
    max-width: 100%;
    padding: 0 0 50px 0!important;
  }
}
.cid-vi1u2hoqDM .col-contacts {
  max-width: 35.41%;
  width: 100%;
  padding: 0 40px 0 100px !important;
}
@media (max-width: 1199px) {
  .cid-vi1u2hoqDM .col-contacts {
    padding: 0 0 0 40px !important;
  }
}
@media (max-width: 991px) {
  .cid-vi1u2hoqDM .col-contacts {
    padding: 0 !important;
  }
}
@media (max-width: 880px) {
  .cid-vi1u2hoqDM .col-contacts {
    max-width: 50%;
    padding: 0 0 0 50px !important;
  }
}
@media (max-width: 767px) {
  .cid-vi1u2hoqDM .col-contacts {
    max-width: 100%;
    padding: 0 !important;
  }
}
.cid-vi1u2hoqDM .col-form {
  max-width: 31.26%;
  width: 100%;
  padding: 0 !important;
}
@media (max-width: 880px) {
  .cid-vi1u2hoqDM .col-form {
    max-width: 50%;
    padding: 40px 0 0 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-vi1u2hoqDM .col-form {
    max-width: 100%;
    padding: 0 !important;
  }
}
.cid-vi1u2hoqDM .col-links {
  max-width: 100%;
  width: 100%;
  padding: 110px 0 0 !important;
}
@media (max-width: 991px) {
  .cid-vi1u2hoqDM .col-links {
    padding: 60px 0 0 !important;
  }
}
.cid-vi1u2hoqDM .col-copyright {
  max-width: 100%;
  width: 100%;
  padding: 0 !important;
  margin-top: 20px;
}
.cid-vi1u2hoqDM .navbar-brand {
  display: flex;
  flex-basis: auto;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  white-space: normal;
}
.cid-vi1u2hoqDM .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-vi1u2hoqDM .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-vi1u2hoqDM .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-vi1u2hoqDM .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-vi1u2hoqDM .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-vi1u2hoqDM .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-vi1u2hoqDM .logo-text {
  color: #fff8dc;
  margin-top: 20px;
}
.cid-vi1u2hoqDM .social-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 15px;
  margin-top: 26px;
}
.cid-vi1u2hoqDM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 52px;
  max-width: 100%;
  width: fit-content;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.7) !important;
  box-shadow: none !important;
  background-color: transparent !important;
  transition: all 0.4s ease !important;
}
@media (max-width: 991px) {
  .cid-vi1u2hoqDM .soc-item {
    min-width: 42px;
    min-height: 42px;
  }
}
.cid-vi1u2hoqDM .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-vi1u2hoqDM .soc-item a {
    min-width: 38px;
    min-height: 38px;
  }
}
.cid-vi1u2hoqDM .soc-item a:hover {
  text-decoration-line: none !important;
}
.cid-vi1u2hoqDM .soc-item .mbr-iconfont {
  font-size: 20px;
  color: #d4af37;
}
.cid-vi1u2hoqDM .soc-item:hover {
  box-shadow: none;
  border-color: #d4af37;
  transform: translateY(-5px);
}
.cid-vi1u2hoqDM .soc-item:hover .mbr-iconfont {
  color: #d4af37;
}
.cid-vi1u2hoqDM .mbr-section-subtitle {
  color: #d4af37;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-vi1u2hoqDM .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-vi1u2hoqDM .contact-text {
  color: #fff8dc;
}
.cid-vi1u2hoqDM .mbr-text {
  color: #131313;
}
.cid-vi1u2hoqDM .contact-list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
  margin-top: 24px;
  color: #ffffff;
}
.cid-vi1u2hoqDM .contact-list li {
  width: 100%;
  color: inherit;
  transition: 0.3s all;
}
.cid-vi1u2hoqDM .contact-list li:not(:first-child) {
  margin-top: 4px;
}
.cid-vi1u2hoqDM .contact-list li:hover {
  color: #d4af37 !important;
}
.cid-vi1u2hoqDM .contact-list a {
  line-height: inherit !important;
}
.cid-vi1u2hoqDM .contact-list a:hover {
  color: #d4af37 !important;
  line-height: inherit !important;
}
.cid-vi1u2hoqDM form {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 24px;
}
@media (max-width: 880px) {
  .cid-vi1u2hoqDM form {
    padding-top: 0;
  }
}
.cid-vi1u2hoqDM form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
  z-index: 2;
}
.cid-vi1u2hoqDM form p {
  color: #131313;
}
.cid-vi1u2hoqDM form .mbr-section-btn {
  margin-top: 0;
}
.cid-vi1u2hoqDM form .mbr-section-btn .btn {
  border-radius: 3px !important;
}
.cid-vi1u2hoqDM form .form-group {
  margin-top: 0 !important;
  margin-bottom: 30px !important;
}
@media (max-width: 767px) {
  .cid-vi1u2hoqDM form .form-group {
    margin-bottom: 25px !important;
  }
}
.cid-vi1u2hoqDM form .form-control {
  height: 64px;
  border: 2px solid #131313 !important;
  box-shadow: 4px 4px 0 #131313;
  outline: none !important;
  border-radius: 4px !important;
  margin-bottom: 0;
  padding: 6px 12px 6px 30px;
  font-size: 18px;
  line-height: 1;
  color: #131313;
  background: #ffffff;
  font-weight: 400;
  transition: .3s;
}
.cid-vi1u2hoqDM form .form-control::-webkit-input-placeholder {
  color: #131313;
}
.cid-vi1u2hoqDM form .form-control::-moz-placeholder {
  color: #131313;
}
.cid-vi1u2hoqDM form .form-control:-moz-placeholder {
  color: #131313;
}
.cid-vi1u2hoqDM form .form-control:-ms-input-placeholder {
  color: #131313;
}
.cid-vi1u2hoqDM form select {
  color: #131313 !important;
}
.cid-vi1u2hoqDM form textarea {
  height: 120px !important;
  min-height: 120px !important;
  padding: 6px 12px 6px 30px;
  resize: none;
}
.cid-vi1u2hoqDM form textarea::-webkit-input-placeholder {
  color: #131313 !important;
}
.cid-vi1u2hoqDM form textarea::-moz-placeholder {
  color: #131313 !important;
}
.cid-vi1u2hoqDM form textarea:-moz-placeholder {
  color: #131313 !important;
}
.cid-vi1u2hoqDM form textarea:-ms-input-placeholder {
  color: #131313 !important;
}
.cid-vi1u2hoqDM form input,
.cid-vi1u2hoqDM form textarea {
  transition: .3s all;
}
.cid-vi1u2hoqDM form input:active,
.cid-vi1u2hoqDM form textarea:active,
.cid-vi1u2hoqDM form input:focus,
.cid-vi1u2hoqDM form textarea:focus {
  background-color: #ffffff !important;
  border-color: #131313 !important;
  box-shadow: none !important;
  outline: none !important;
}
.cid-vi1u2hoqDM form input:active::-webkit-input-placeholder,
.cid-vi1u2hoqDM form textarea:active::-webkit-input-placeholder,
.cid-vi1u2hoqDM form input:focus::-webkit-input-placeholder,
.cid-vi1u2hoqDM form textarea:focus::-webkit-input-placeholder {
  color: #131313 !important;
}
.cid-vi1u2hoqDM form input:active::-moz-placeholder,
.cid-vi1u2hoqDM form textarea:active::-moz-placeholder,
.cid-vi1u2hoqDM form input:focus::-moz-placeholder,
.cid-vi1u2hoqDM form textarea:focus::-moz-placeholder {
  color: #131313 !important;
}
.cid-vi1u2hoqDM form input:active:-moz-placeholder,
.cid-vi1u2hoqDM form textarea:active:-moz-placeholder,
.cid-vi1u2hoqDM form input:focus:-moz-placeholder,
.cid-vi1u2hoqDM form textarea:focus:-moz-placeholder {
  color: #131313 !important;
}
.cid-vi1u2hoqDM form input:active:-ms-input-placeholder,
.cid-vi1u2hoqDM form textarea:active:-ms-input-placeholder,
.cid-vi1u2hoqDM form input:focus:-ms-input-placeholder,
.cid-vi1u2hoqDM form textarea:focus:-ms-input-placeholder {
  color: #131313 !important;
}
.cid-vi1u2hoqDM form .row {
  flex-wrap: wrap;
  margin-left: -8px !important;
  margin-right: -8px !important;
}
.cid-vi1u2hoqDM form .row [class*=col] {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.cid-vi1u2hoqDM form label {
  width: 100%;
  color: #131313;
  margin-bottom: 8px;
}
.cid-vi1u2hoqDM form .form-check label {
  color: #131313;
}
.cid-vi1u2hoqDM form .form-check-input {
  border-color: #131313 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-vi1u2hoqDM form .form-check-input:focus,
.cid-vi1u2hoqDM form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #FC7942 !important;
}
.cid-vi1u2hoqDM form .form-check-input:checked {
  border-color: #FC7942 !important;
  background-color: #FC7942 !important;
}
.cid-vi1u2hoqDM .list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 20px;
  width: 100%;
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
  color: #f5f5f5;
}
.cid-vi1u2hoqDM .list li {
  width: auto;
  color: inherit !important;
  transition: 0.3s all;
  line-height: 1 !important;
}
.cid-vi1u2hoqDM .list a {
  line-height: inherit !important;
}
.cid-vi1u2hoqDM .list a:hover {
  line-height: inherit !important;
}
.cid-vi1u2hoqDM .copyright {
  color: #f5f5f5;
  padding-top: 30px;
  border-top: none !important;
  position: relative;
}
.cid-vi1u2hoqDM .soc-item .mbr-iconfont {
  color: #D4AF37 !important;
  transition: 0.4s;
}
.cid-vi1u2hoqDM .soc-item:hover {
  transform: translateY(-6px) scale(1.08) !important;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3), 0 10px 40px rgba(0, 0, 0, 0.8) !important;
  border-color: #D4AF37 !important;
}
.cid-vi1u2hoqDM .soc-item:hover .mbr-iconfont {
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}
.cid-vi1u2hoqDM .copyright::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.4) 15%, rgba(212, 175, 55, 0.9) 50%, rgba(212, 175, 55, 0.4) 85%, transparent 100%);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
  animation: goldLineFlow 4s ease-in-out infinite;
}
@keyframes goldLineFlow {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}
.cid-vi1u2hoqDM .appointment-text {
  color: #D4AF37 !important;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 14px;
}
.cid-vi1u2hoqDM .list li {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: color 0.4s ease;
}
.cid-vi1u2hoqDM .list li:hover {
  color: #D4AF37 !important;
}
.cid-vi1u2hoqDM .list li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  transition: width 0.4s ease;
}
.cid-vi1u2hoqDM .list li:hover::after {
  width: 100%;
}
