.btn {
  border-width: 1px;
}
.video-wrapper {
  overflow: hidden;
}
body {
  background-color: #fcf8f8;
}
body {
  font-family: Roboto Flex;
}
.display-1 {
  font-family: 'Roboto Flex', sans-serif;
  font-size: 5rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Roboto Flex', sans-serif;
  font-size: 4.375rem;
  line-height: 1;
}
.display-2 > .mbr-iconfont {
  font-size: 5.46875rem;
}
.display-4 {
  font-family: 'Roboto Flex', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Roboto Flex', sans-serif;
  font-size: 3.375rem;
  line-height: 1.15;
  font-weight: 500;
}
.display-5 > .mbr-iconfont {
  font-size: 4.21875rem;
}
.display-7 {
  font-family: 'Roboto Flex', sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.09375rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.5rem;
    font-size: calc( 2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.5 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.7rem;
    font-size: calc( 1.83125rem + (3.375 - 1.83125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.15 * (1.83125rem + (3.375 - 1.83125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
  }
}
@media (min-width: 992px) and (max-width: 1400px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1 * (2.4rem + (5 - 2.4) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-2 {
    font-size: 3.5rem;
    font-size: calc( 2.18125rem + (4.375 - 2.18125) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.3 * (2.18125rem + (4.375 - 2.18125) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.5 * (1rem + (1 - 1) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-5 {
    font-size: 2.7rem;
    font-size: calc( 1.83125rem + (3.375 - 1.83125) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.15 * (1.83125rem + (3.375 - 1.83125) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-7 {
    font-size: 0.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 62rem) / (87 - 62))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .btn {
    padding: 0.75rem 1.5rem;
  }
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #bca88e !important;
}
.bg-success {
  background-color: #3cdb91 !important;
}
.bg-info {
  background-color: #24d0f3 !important;
}
.bg-warning {
  background-color: #ffc518 !important;
}
.bg-danger {
  background-color: #dd3a4a !important;
}
.btn-primary .mbr-iconfont {
  background-color: #0f0c09;
  color: #bca88e;
  transition: all .3s ease;
}
.btn-primary,
.btn-primary:active {
  background-color: #bca88e !important;
  border-color: #bca88e !important;
  color: #0f0c09 !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: inherit;
  background-color: #cfc1ae !important;
  border-color: #cfc1ae !important;
  box-shadow: none;
}
.btn-primary:hover .mbr-iconfont,
.btn-primary:focus .mbr-iconfont,
.btn-primary.focus .mbr-iconfont,
.btn-primary.active .mbr-iconfont {
  background-color: #0f0c09 !important;
  color: #cfc1ae;
  transform: rotate(45deg);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #0f0c09 !important;
  background-color: #cfc1ae !important;
  border-color: #cfc1ae !important;
}
.btn-secondary .mbr-iconfont {
  background-color: #ffffff;
  color: #9da993;
  transition: all .3s ease;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #9da993 !important;
  border-color: #9da993 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: inherit;
  background-color: #b7c0af !important;
  border-color: #b7c0af !important;
  box-shadow: none;
}
.btn-secondary:hover .mbr-iconfont,
.btn-secondary:focus .mbr-iconfont,
.btn-secondary.focus .mbr-iconfont,
.btn-secondary.active .mbr-iconfont {
  background-color: #ffffff !important;
  color: #b7c0af;
  transform: rotate(45deg);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b7c0af !important;
  border-color: #b7c0af !important;
}
.btn-info .mbr-iconfont {
  background-color: #000000;
  color: #24d0f3;
  transition: all .3s ease;
}
.btn-info,
.btn-info:active {
  background-color: #24d0f3 !important;
  border-color: #24d0f3 !important;
  color: #000000 !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: inherit;
  background-color: #54daf6 !important;
  border-color: #54daf6 !important;
  box-shadow: none;
}
.btn-info:hover .mbr-iconfont,
.btn-info:focus .mbr-iconfont,
.btn-info.focus .mbr-iconfont,
.btn-info.active .mbr-iconfont {
  background-color: #000000 !important;
  color: #54daf6;
  transform: rotate(45deg);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #000000 !important;
  background-color: #54daf6 !important;
  border-color: #54daf6 !important;
}
.btn-success .mbr-iconfont {
  background-color: #000000;
  color: #3cdb91;
  transition: all .3s ease;
}
.btn-success,
.btn-success:active {
  background-color: #3cdb91 !important;
  border-color: #3cdb91 !important;
  color: #000000 !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: inherit;
  background-color: #67e3a9 !important;
  border-color: #67e3a9 !important;
  box-shadow: none;
}
.btn-success:hover .mbr-iconfont,
.btn-success:focus .mbr-iconfont,
.btn-success.focus .mbr-iconfont,
.btn-success.active .mbr-iconfont {
  background-color: #000000 !important;
  color: #67e3a9;
  transform: rotate(45deg);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #67e3a9 !important;
  border-color: #67e3a9 !important;
}
.btn-warning .mbr-iconfont {
  background-color: #000000;
  color: #ffc518;
  transition: all .3s ease;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffc518 !important;
  border-color: #ffc518 !important;
  color: #000000 !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: inherit;
  background-color: #ffd24b !important;
  border-color: #ffd24b !important;
  box-shadow: none;
}
.btn-warning:hover .mbr-iconfont,
.btn-warning:focus .mbr-iconfont,
.btn-warning.focus .mbr-iconfont,
.btn-warning.active .mbr-iconfont {
  background-color: #000000 !important;
  color: #ffd24b;
  transform: rotate(45deg);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #000000 !important;
  background-color: #ffd24b !important;
  border-color: #ffd24b !important;
}
.btn-danger .mbr-iconfont {
  background-color: #ffffff;
  color: #dd3a4a;
  transition: all .3s ease;
}
.btn-danger,
.btn-danger:active {
  background-color: #dd3a4a !important;
  border-color: #dd3a4a !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: inherit;
  background-color: #e56572 !important;
  border-color: #e56572 !important;
  box-shadow: none;
}
.btn-danger:hover .mbr-iconfont,
.btn-danger:focus .mbr-iconfont,
.btn-danger.focus .mbr-iconfont,
.btn-danger.active .mbr-iconfont {
  background-color: #ffffff !important;
  color: #e56572;
  transform: rotate(45deg);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #e56572 !important;
  border-color: #e56572 !important;
}
.btn-white .mbr-iconfont {
  background-color: #666666;
  color: #ffffff;
  transition: all .3s ease;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #666666 !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-white:hover .mbr-iconfont,
.btn-white:focus .mbr-iconfont,
.btn-white.focus .mbr-iconfont,
.btn-white.active .mbr-iconfont {
  background-color: #666666 !important;
  color: #ffffff;
  transform: rotate(45deg);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #666666 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black .mbr-iconfont {
  background-color: #ffffff;
  color: #080a10;
  transition: all .3s ease;
}
.btn-black,
.btn-black:active {
  background-color: #080a10 !important;
  border-color: #080a10 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: inherit;
  background-color: #191f32 !important;
  border-color: #191f32 !important;
  box-shadow: none;
}
.btn-black:hover .mbr-iconfont,
.btn-black:focus .mbr-iconfont,
.btn-black.focus .mbr-iconfont,
.btn-black.active .mbr-iconfont {
  background-color: #ffffff !important;
  color: #191f32;
  transform: rotate(45deg);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #191f32 !important;
  border-color: #191f32 !important;
}
.btn-primary-outline .mbr-iconfont {
  border: 1px solid #bca88e;
  color: #bca88e;
  transition: all .3s ease;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #bca88e;
  color: #bca88e;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #997e5b !important;
  background-color: transparent !important;
  border-color: #997e5b !important;
  box-shadow: none !important;
}
.btn-primary-outline:hover .mbr-iconfont,
.btn-primary-outline:focus .mbr-iconfont,
.btn-primary-outline.focus .mbr-iconfont,
.btn-primary-outline.active .mbr-iconfont {
  border: 1px solid #997e5b !important;
  color: #997e5b !important;
  transform: rotate(45deg);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #bca88e !important;
  border-color: #bca88e !important;
}
.btn-secondary-outline .mbr-iconfont {
  border: 1px solid #9da993;
  color: #9da993;
  transition: all .3s ease;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #9da993;
  color: #9da993;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #718066 !important;
  background-color: transparent !important;
  border-color: #718066 !important;
  box-shadow: none !important;
}
.btn-secondary-outline:hover .mbr-iconfont,
.btn-secondary-outline:focus .mbr-iconfont,
.btn-secondary-outline.focus .mbr-iconfont,
.btn-secondary-outline.active .mbr-iconfont {
  border: 1px solid #718066 !important;
  color: #718066 !important;
  transform: rotate(45deg);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #9da993 !important;
  border-color: #9da993 !important;
}
.btn-info-outline .mbr-iconfont {
  border: 1px solid #24d0f3;
  color: #24d0f3;
  transition: all .3s ease;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #24d0f3;
  color: #24d0f3;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #0a99b6 !important;
  background-color: transparent !important;
  border-color: #0a99b6 !important;
  box-shadow: none !important;
}
.btn-info-outline:hover .mbr-iconfont,
.btn-info-outline:focus .mbr-iconfont,
.btn-info-outline.focus .mbr-iconfont,
.btn-info-outline.active .mbr-iconfont {
  border: 1px solid #0a99b6 !important;
  color: #0a99b6 !important;
  transform: rotate(45deg);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #24d0f3 !important;
  border-color: #24d0f3 !important;
}
.btn-success-outline .mbr-iconfont {
  border: 1px solid #3cdb91;
  color: #3cdb91;
  transition: all .3s ease;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #3cdb91;
  color: #3cdb91;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #1ea265 !important;
  background-color: transparent !important;
  border-color: #1ea265 !important;
  box-shadow: none !important;
}
.btn-success-outline:hover .mbr-iconfont,
.btn-success-outline:focus .mbr-iconfont,
.btn-success-outline.focus .mbr-iconfont,
.btn-success-outline.active .mbr-iconfont {
  border: 1px solid #1ea265 !important;
  color: #1ea265 !important;
  transform: rotate(45deg);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #3cdb91 !important;
  border-color: #3cdb91 !important;
}
.btn-warning-outline .mbr-iconfont {
  border: 1px solid #ffc518;
  color: #ffc518;
  transition: all .3s ease;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffc518;
  color: #ffc518;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #c09000 !important;
  background-color: transparent !important;
  border-color: #c09000 !important;
  box-shadow: none !important;
}
.btn-warning-outline:hover .mbr-iconfont,
.btn-warning-outline:focus .mbr-iconfont,
.btn-warning-outline.focus .mbr-iconfont,
.btn-warning-outline.active .mbr-iconfont {
  border: 1px solid #c09000 !important;
  color: #c09000 !important;
  transform: rotate(45deg);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #181200 !important;
  background-color: #ffc518 !important;
  border-color: #ffc518 !important;
}
.btn-danger-outline .mbr-iconfont {
  border: 1px solid #dd3a4a;
  color: #dd3a4a;
  transition: all .3s ease;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #dd3a4a;
  color: #dd3a4a;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #a41c2a !important;
  background-color: transparent !important;
  border-color: #a41c2a !important;
  box-shadow: none !important;
}
.btn-danger-outline:hover .mbr-iconfont,
.btn-danger-outline:focus .mbr-iconfont,
.btn-danger-outline.focus .mbr-iconfont,
.btn-danger-outline.active .mbr-iconfont {
  border: 1px solid #a41c2a !important;
  color: #a41c2a !important;
  transform: rotate(45deg);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #dd3a4a !important;
  border-color: #dd3a4a !important;
}
.btn-black-outline .mbr-iconfont {
  border: 1px solid #080a10;
  color: #080a10;
  transition: all .3s ease;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #080a10;
  color: #080a10;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline:hover .mbr-iconfont,
.btn-black-outline:focus .mbr-iconfont,
.btn-black-outline.focus .mbr-iconfont,
.btn-black-outline.active .mbr-iconfont {
  border: 1px solid #000000 !important;
  color: #000000 !important;
  transform: rotate(45deg);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #080a10 !important;
  border-color: #080a10 !important;
}
.btn-white-outline .mbr-iconfont {
  border: 1px solid #ffffff;
  color: #ffffff;
  transition: all .3s ease;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}
.btn-white-outline:hover .mbr-iconfont,
.btn-white-outline:focus .mbr-iconfont,
.btn-white-outline.focus .mbr-iconfont,
.btn-white-outline.active .mbr-iconfont {
  border: 1px solid #d4d4d4 !important;
  color: #d4d4d4 !important;
  transform: rotate(45deg);
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.text-primary {
  color: #bca88e !important;
}
.text-secondary {
  color: #9da993 !important;
}
.text-success {
  color: #3cdb91 !important;
}
.text-info {
  color: #24d0f3 !important;
}
.text-warning {
  color: #ffc518 !important;
}
.text-danger {
  color: #dd3a4a !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #080a10 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #8f7655 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #6a775f !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #1c955d !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #098da8 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #b18500 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #971a26 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #bca88e;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #24d0f3;
}
.alert-warning {
  background-color: #ffc518;
}
.alert-danger {
  background-color: #dd3a4a;
}
.mbr-section-btn .btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #bca88e;
  border-color: #bca88e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav.nav-tabs {
  border-radius: 100px !important;
}
@media (max-width: 992px) {
  .nav.nav-tabs {
    border-radius: 1rem !important;
  }
}
.nav-tabs .nav-link {
  font-weight: 600;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
@media (max-width: 992px) {
  .nav-tabs .nav-link {
    border-radius: 1rem !important;
  }
}
a,
a:hover {
  color: #bca88e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ebe6de;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e8fbf2;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #e5fafe;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fff8e4;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fbe8ea;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto Flex', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  border-radius: 0 !important;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #bca88e !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Roboto Flex', sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.09375rem;
}
blockquote {
  border-color: #bca88e;
}
/* Forms */
.mbr-form .input-group-btn .btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn .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: #bca88e;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #bca88e;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #232323;
  border-bottom-color: #232323;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #bca88e;
  border-bottom-color: #bca88e;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #bca88e !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #9da993 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("../../../data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23bca88e' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.mbr-section-btn .btn {
  padding: 21px 24px 17px;
  font-weight: 600;
}
.mbr-section-btn .btn .mbr-iconfont {
  width: 26px;
  height: 26px;
  min-width: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  border-radius: 100%;
  font-size: 100%;
}
.mbr-section-btn .btn-white {
  background-color: #ffffff !important;
  color: #080a10 !important;
}
.mbr-section-btn .btn-white .mbr-iconfont {
  background-color: #080a10 !important;
  color: #ffffff !important;
}
.mbr-section-btn .btn-white:hover,
.mbr-section-btn .btn-white:focus,
.mbr-section-btn .btn-white.focus,
.mbr-section-btn .btn-white.active {
  background-color: #ededed !important;
  color: #141928 !important;
}
.mbr-section-btn .btn-white:hover .mbr-iconfont,
.mbr-section-btn .btn-white:focus .mbr-iconfont,
.mbr-section-btn .btn-white.focus .mbr-iconfont,
.mbr-section-btn .btn-white.active .mbr-iconfont {
  background-color: #141928 !important;
  color: #ededed !important;
}
.mbr-section-btn .btn-black {
  border-color: #ffffff !important;
  background-color: #080a10 !important;
  color: #ffffff !important;
}
.mbr-section-btn .btn-black .mbr-iconfont {
  background-color: #ffffff !important;
  color: #080a10 !important;
}
.mbr-section-btn .btn-black:hover,
.mbr-section-btn .btn-black:focus,
.mbr-section-btn .btn-black.focus,
.mbr-section-btn .btn-black.active {
  background-color: #191f32 !important;
  color: #e6e6e6 !important;
}
.mbr-section-btn .btn-black:hover .mbr-iconfont,
.mbr-section-btn .btn-black:focus .mbr-iconfont,
.mbr-section-btn .btn-black.focus .mbr-iconfont,
.mbr-section-btn .btn-black.active .mbr-iconfont {
  background-color: #e6e6e6 !important;
  color: #191f32 !important;
}
img,
.card-wrap,
.card-wrapper,
.video-wrapper,
.mbr-figure iframe,
.google-map iframe,
.slide-content,
.plan,
.card,
.item-wrapper {
  border-radius: 0 !important;
}
.btn-radius {
  border-radius: 100px !important;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-vkOIR97vfl .navbar-dropdown {
  position: relative !important;
}
.cid-vkOIR97vfl .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-vkOIR97vfl .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-vkOIR97vfl .dropdown-item {
  border: none !important;
  background: #bca88e !important;
  font-weight: 700;
}
.cid-vkOIR97vfl .dropdown-item:hover,
.cid-vkOIR97vfl .dropdown-item:focus {
  background: #bca88e !important;
  color: #000000 !important;
}
.cid-vkOIR97vfl .dropdown-item:hover span {
  color: white;
}
.cid-vkOIR97vfl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vkOIR97vfl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vkOIR97vfl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vkOIR97vfl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.2rem;
}
.cid-vkOIR97vfl .nav-link {
  position: relative;
}
.cid-vkOIR97vfl .container {
  display: flex;
  margin: 0 auto;
  max-width: 1318px;
}
@media (min-width: 992px) {
  .cid-vkOIR97vfl .container {
    flex-wrap: nowrap;
  }
}
.cid-vkOIR97vfl .iconfont-wrapper {
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.cid-vkOIR97vfl .iconfont-wrapper:hover {
  opacity: 0.5;
}
.cid-vkOIR97vfl .dropdown-menu,
.cid-vkOIR97vfl .navbar.opened {
  background: #bca88e !important;
}
.cid-vkOIR97vfl .nav-item:focus,
.cid-vkOIR97vfl .nav-link:focus {
  outline: none;
}
.cid-vkOIR97vfl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vkOIR97vfl .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-vkOIR97vfl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vkOIR97vfl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vkOIR97vfl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vkOIR97vfl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 14px !important;
  transition: none;
  margin: 0 !important;
}
.cid-vkOIR97vfl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #bca88e;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(5px);
}
.cid-vkOIR97vfl .navbar.opened {
  transition: all 0.3s;
}
.cid-vkOIR97vfl .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 20px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-vkOIR97vfl .navbar .navbar-logo {
  margin-right: 1rem;
}
.cid-vkOIR97vfl .navbar .navbar-logo img {
  width: auto;
}
.cid-vkOIR97vfl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vkOIR97vfl .navbar.collapsed {
  justify-content: center;
}
.cid-vkOIR97vfl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vkOIR97vfl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-vkOIR97vfl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vkOIR97vfl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vkOIR97vfl .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-vkOIR97vfl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vkOIR97vfl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vkOIR97vfl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vkOIR97vfl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vkOIR97vfl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vkOIR97vfl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vkOIR97vfl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vkOIR97vfl .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-vkOIR97vfl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vkOIR97vfl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vkOIR97vfl .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
    box-shadow: none;
  }
  .cid-vkOIR97vfl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-vkOIR97vfl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vkOIR97vfl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vkOIR97vfl .navbar.navbar-short {
  min-height: 70px;
}
.cid-vkOIR97vfl .navbar.navbar-short .navbar-brand {
  min-height: 70px;
}
.cid-vkOIR97vfl .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-vkOIR97vfl .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
  font-size: 150%;
}
@media (max-width: 992px) {
  .cid-vkOIR97vfl .navbar-brand .navbar-caption {
    line-height: 1.5;
  }
}
.cid-vkOIR97vfl .navbar-brand .navbar-caption:hover,
.cid-vkOIR97vfl .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-vkOIR97vfl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vkOIR97vfl .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-vkOIR97vfl .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-vkOIR97vfl .dropdown-item.active,
.cid-vkOIR97vfl .dropdown-item:active {
  background-color: transparent;
}
.cid-vkOIR97vfl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vkOIR97vfl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vkOIR97vfl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vkOIR97vfl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bca88e;
  top: 2.3rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-vkOIR97vfl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-vkOIR97vfl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-vkOIR97vfl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vkOIR97vfl ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-vkOIR97vfl ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-vkOIR97vfl .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-vkOIR97vfl .navbar-buttons {
    text-align: left;
  }
}
.cid-vkOIR97vfl .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
  margin-right: 0;
  padding: 15px 24px 11px;
}
@media (max-width: 575px) {
  .cid-vkOIR97vfl .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-vkOIR97vfl button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #bca88e !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vkOIR97vfl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vkOIR97vfl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-vkOIR97vfl button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vkOIR97vfl button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vkOIR97vfl button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-vkOIR97vfl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vkOIR97vfl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vkOIR97vfl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vkOIR97vfl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vkOIR97vfl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-vkOIR97vfl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vkOIR97vfl .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-vkOIR97vfl .navbar {
    height: 70px;
  }
  .cid-vkOIR97vfl .navbar.opened {
    height: auto;
  }
  .cid-vkOIR97vfl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vkOIR97vfl .navbar-nav {
  width: 100%;
  justify-content: space-around;
}
.cid-vkOIR97vfl .nav-item {
  padding: 0;
  margin: 0;
}
.cid-vkOIR97vfl .nav-item .nav-link {
  padding: 10px !important;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.cid-vkOIR97vfl .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: 0.3s;
}
.cid-vkOIR97vfl .nav-item .nav-link:hover,
.cid-vkOIR97vfl .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
}
.cid-vkOIR97vfl .nav-item .nav-link:hover::after,
.cid-vkOIR97vfl .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-vkOIR97vfl .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-vkOIR97vfl .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-vkOIR97vfl .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-vkOIR97vfl .navbar {
    justify-content: flex-start !important;
  }
  .cid-vkOIR97vfl .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-vkOIR97vfl .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-vkOIR97vfl .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-vkOIR97vfl .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-vkOIR97vfl .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-vkOIR97vfl .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-vkOIR97vfl .content-wrap {
  min-height: 70px;
}
.cid-vkOIR97vfl .navbar-caption {
  color: #000000;
}
.cid-vkOIR97vfl .nav-link,
.cid-vkOIR97vfl .dropdown-item {
  color: #000000;
}
.cid-vkOIR98Gft {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #22090b;
  overflow: hidden;
}
.cid-vkOIR98Gft .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR98Gft .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR98Gft .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR98Gft .content-wrapper .card {
  position: relative;
  z-index: 1;
  padding: 0;
  justify-content: flex-end;
}
.cid-vkOIR98Gft .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #341315;
  pointer-events: none;
  padding: 0;
  top: -100%;
}
.cid-vkOIR98Gft .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR98Gft .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR98Gft .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR98Gft .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR98Gft .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR98Gft .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR98Gft .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR98Gft .content-wrap {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 750px;
  padding: 24px;
  margin-right: -1px;
  clip-path: polygon(38px 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 38px);
}
@media (max-width: 1440px) {
  .cid-vkOIR98Gft .content-wrap {
    min-height: 600px;
  }
}
@media (max-width: 1200px) {
  .cid-vkOIR98Gft .content-wrap {
    min-height: 500px;
  }
}
.cid-vkOIR98Gft .content-wrap .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vkOIR98Gft .content-wrap .overlay-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #22090b;
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}
.cid-vkOIR98Gft .title-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}
.cid-vkOIR98Gft .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vkOIR98Gft .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-vkOIR98Gft .title-wrapper .text-wrapper .mbr-text {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .cid-vkOIR98Gft .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vkOIR98Gft .title-wrapper .mbr-section-btn {
  margin-top: 20px;
  margin-bottom: -9.6px;
}
@media (max-width: 992px) {
  .cid-vkOIR98Gft .title-wrapper .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-vkOIR98Gft .mbr-section-title {
  color: #ffffff;
}
.cid-vkOIR98Gft .mbr-text,
.cid-vkOIR98Gft .text-wrapper {
  color: #FFFFFF;
  text-align: center;
}
.cid-vkOIR98Gft .mbr-section-title,
.cid-vkOIR98Gft .mbr-section-btn {
  text-align: center;
  color: #FFFFFF;
}
.cid-vkOIR99nhc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #22090b;
  overflow: hidden;
}
.cid-vkOIR99nhc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR99nhc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR99nhc .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR99nhc .content-wrapper .content {
  padding: 0;
}
.cid-vkOIR99nhc .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #341315;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR99nhc .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR99nhc .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR99nhc .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR99nhc .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR99nhc .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR99nhc .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR99nhc .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR99nhc .items-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px 8px;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-vkOIR99nhc .items-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.cid-vkOIR99nhc .items-wrapper .item:hover .item-wrapper .image-wrapper .item-img img,
.cid-vkOIR99nhc .items-wrapper .item:focus .item-wrapper .image-wrapper .item-img img {
  transform: scale(1.1);
}
.cid-vkOIR99nhc .items-wrapper .item:hover .item-wrapper .image-wrapper .mbr-section-btn,
.cid-vkOIR99nhc .items-wrapper .item:focus .item-wrapper .image-wrapper .mbr-section-btn {
  opacity: 1;
}
.cid-vkOIR99nhc .items-wrapper .item .item-wrapper .card-box {
  background-color: #22090b;
  padding: 2px 12px 3px;
  border: 1px solid #341315;
}
@media (max-width: 992px) {
  .cid-vkOIR99nhc .items-wrapper .item .item-wrapper .card-box {
    padding: 2px 12px 4px;
  }
}
.cid-vkOIR99nhc .items-wrapper .item .item-wrapper .card-box .card-label-wrapper .card-label-wrap {
  display: inline-flex;
  gap: 16px;
  align-items: center;
}
.cid-vkOIR99nhc .items-wrapper .item .item-wrapper .card-box .card-label-wrapper .card-label-wrap .marker-wrap {
  width: 12px;
  height: 12px;
  min-width: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #efd9be;
}
.cid-vkOIR99nhc .items-wrapper .item .item-wrapper .card-box .card-label-wrapper .card-label-wrap .marker-wrap .circle-wrap {
  background-color: #22090b;
  width: 6px;
  height: 6px;
  border-radius: 100%;
}
.cid-vkOIR99nhc .items-wrapper .item .item-wrapper .card-box .card-label-wrapper .card-label-wrap .item-label {
  margin-bottom: 0;
}
.cid-vkOIR99nhc .items-wrapper .item .item-wrapper .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
  height: 400px;
}
@media (max-width: 992px) {
  .cid-vkOIR99nhc .items-wrapper .item .item-wrapper .image-wrapper {
    height: 300px;
  }
}
.cid-vkOIR99nhc .items-wrapper .item .item-wrapper .image-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
.cid-vkOIR99nhc .items-wrapper .item .item-wrapper .image-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease;
}
.cid-vkOIR99nhc .items-wrapper .item .item-wrapper .item-content {
  padding: 20px 12px 12px;
}
.cid-vkOIR99nhc .items-wrapper .item .item-wrapper .item-content .item-price {
  margin-bottom: 12px;
}
.cid-vkOIR99nhc .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 12px;
  font-size: 150%;
}
@media (max-width: 992px) {
  .cid-vkOIR99nhc .items-wrapper .item .item-wrapper .item-content .item-title {
    line-height: 1.5;
  }
}
.cid-vkOIR99nhc .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-vkOIR99nhc .btn-wrapper {
  margin-top: 2rem;
}
.cid-vkOIR99nhc .item-label {
  color: #9e9e9e;
}
.cid-vkOIR99nhc .item-price {
  color: #FFFFFF;
}
.cid-vkOIR99nhc .item-title {
  color: #FFFFFF;
}
.cid-vkOIR99nhc .item-text {
  color: #9e9e9e;
}
.cid-vkOIR99PN7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eaeaea;
  overflow: hidden;
}
.cid-vkOIR99PN7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR99PN7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR99PN7 .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR99PN7 .content-wrapper .content {
  padding: 0;
}
.cid-vkOIR99PN7 .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #ffffff;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR99PN7 .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR99PN7 .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR99PN7 .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR99PN7 .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR99PN7 .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR99PN7 .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR99PN7 .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR99PN7 .content-wrap {
  position: relative;
  z-index: 1;
  margin: 0 0 80px 0;
}
@media (max-width: 992px) {
  .cid-vkOIR99PN7 .content-wrap {
    margin: 0 0 40px 0;
  }
}
.cid-vkOIR99PN7 .content-wrap .card {
  padding: 0;
}
.cid-vkOIR99PN7 .label-wrapper {
  margin-bottom: 20px;
}
.cid-vkOIR99PN7 .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background-color: #e1e1e1;
  padding: 7px 14px 6px;
}
.cid-vkOIR99PN7 .label-wrapper .label-wrap .marker-wrap {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
  background-color: #8b7961;
}
.cid-vkOIR99PN7 .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vkOIR99PN7 .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vkOIR99PN7 .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vkOIR99PN7 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vkOIR99PN7 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vkOIR99PN7 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vkOIR99PN7 .items-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR99PN7 .items-wrapper .items {
  padding: 0;
}
.cid-vkOIR99PN7 .items-wrapper .items-wrap {
  margin-right: -1px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
@media (max-width: 1200px) {
  .cid-vkOIR99PN7 .items-wrapper .items-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cid-vkOIR99PN7 .items-wrapper .items-wrap {
    grid-template-columns: 1fr;
  }
}
.cid-vkOIR99PN7 .items-wrapper .items-wrap .item .item-wrapper .card-box {
  background-color: #eaeaea;
  padding: 2px 12px;
  border: 1px solid #dedede;
}
@media (max-width: 992px) {
  .cid-vkOIR99PN7 .items-wrapper .items-wrap .item .item-wrapper .card-box {
    padding: 2px 12px 4px;
  }
}
.cid-vkOIR99PN7 .items-wrapper .items-wrap .item .item-wrapper .card-box .card-label-wrapper .card-label-wrap {
  display: inline-flex;
  gap: 16px;
  align-items: center;
}
.cid-vkOIR99PN7 .items-wrapper .items-wrap .item .item-wrapper .card-box .card-label-wrapper .card-label-wrap .marker-wrap {
  width: 12px;
  height: 12px;
  min-width: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #8b7961;
}
.cid-vkOIR99PN7 .items-wrapper .items-wrap .item .item-wrapper .card-box .card-label-wrapper .card-label-wrap .marker-wrap .circle-wrap {
  background-color: #eaeaea;
  width: 6px;
  height: 6px;
  border-radius: 100%;
}
.cid-vkOIR99PN7 .items-wrapper .items-wrap .item .item-wrapper .card-box .card-label-wrapper .card-label-wrap .item-label {
  margin-bottom: 0;
}
.cid-vkOIR99PN7 .items-wrapper .items-wrap .item .item-wrapper .item-img {
  overflow: hidden;
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
  background-color: #ffffff;
}
.cid-vkOIR99PN7 .items-wrapper .items-wrap .item .item-wrapper .item-img img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-vkOIR99PN7 .items-wrapper .items-wrap .item .item-wrapper .item-img img {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .cid-vkOIR99PN7 .items-wrapper .items-wrap .item .item-wrapper .item-img img {
    height: 150px;
  }
}
.cid-vkOIR99PN7 .mbr-label,
.cid-vkOIR99PN7 .label-wrapper {
  color: #686868;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vkOIR99PN7 .mbr-label,
  .cid-vkOIR99PN7 .label-wrapper {
    text-align: left;
  }
}
.cid-vkOIR99PN7 .mbr-section-title {
  color: #080a10;
}
.cid-vkOIR99PN7 .mbr-section-subtitle {
  color: #5e5e5e;
}
.cid-vkOIR99PN7 .mbr-text {
  color: #686868;
}
.cid-vkOIR99PN7 .item-label {
  color: #686868;
}
.cid-vkOIR9ahTa {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
  overflow: hidden;
}
.cid-vkOIR9ahTa .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9ahTa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR9ahTa .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9ahTa .content-wrapper .content {
  padding: 0;
}
.cid-vkOIR9ahTa .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #ffffff;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR9ahTa .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9ahTa .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR9ahTa .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR9ahTa .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9ahTa .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR9ahTa .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR9ahTa .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9ahTa .content-wrap {
  position: relative;
  z-index: 1;
  margin: 0 0 80px 0;
}
@media (max-width: 992px) {
  .cid-vkOIR9ahTa .content-wrap {
    margin: 0 0 40px 0;
  }
}
.cid-vkOIR9ahTa .content-wrap .card {
  padding: 0;
  justify-content: flex-end;
}
.cid-vkOIR9ahTa .label-wrapper {
  margin-bottom: 20px;
}
.cid-vkOIR9ahTa .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background-color: #e1e1e1;
  padding: 7px 14px 6px;
}
.cid-vkOIR9ahTa .label-wrapper .label-wrap .marker-wrap {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
  background-color: #8b7961;
}
.cid-vkOIR9ahTa .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vkOIR9ahTa .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vkOIR9ahTa .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vkOIR9ahTa .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vkOIR9ahTa .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vkOIR9ahTa .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vkOIR9ahTa .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
  width: 100%;
}
.cid-vkOIR9ahTa .mbr-section-btn .btn {
  width: 100%;
}
.cid-vkOIR9ahTa .items-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9ahTa .items-wrapper .item {
  padding: 0;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vkOIR9ahTa .items-wrapper .item {
    margin-bottom: 8px;
  }
  .cid-vkOIR9ahTa .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vkOIR9ahTa .items-wrapper .item:hover .item-wrapper .item-img img,
.cid-vkOIR9ahTa .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: scale(1.1);
}
.cid-vkOIR9ahTa .items-wrapper .item .item-wrapper {
  margin-right: 8px;
}
.cid-vkOIR9ahTa .items-wrapper .item .item-wrapper .card-box {
  background-color: #eaeaea;
  padding: 2px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border: 1px solid #dedede;
}
@media (max-width: 992px) {
  .cid-vkOIR9ahTa .items-wrapper .item .item-wrapper .card-box {
    padding: 2px 12px 4px;
  }
}
.cid-vkOIR9ahTa .items-wrapper .item .item-wrapper .card-box .card-label-wrapper .card-label-wrap {
  display: inline-flex;
  gap: 16px;
  align-items: center;
}
.cid-vkOIR9ahTa .items-wrapper .item .item-wrapper .card-box .card-label-wrapper .card-label-wrap .marker-wrap {
  width: 12px;
  height: 12px;
  min-width: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #8b7961;
}
.cid-vkOIR9ahTa .items-wrapper .item .item-wrapper .card-box .card-label-wrapper .card-label-wrap .marker-wrap .circle-wrap {
  background-color: #eaeaea;
  width: 6px;
  height: 6px;
  border-radius: 100%;
}
.cid-vkOIR9ahTa .items-wrapper .item .item-wrapper .card-box .card-label-wrapper .card-label-wrap .item-label {
  margin-bottom: 0;
}
.cid-vkOIR9ahTa .items-wrapper .item .item-wrapper .card-box .item-tag {
  margin-bottom: 0;
  white-space: nowrap;
}
.cid-vkOIR9ahTa .items-wrapper .item .item-wrapper .item-img {
  overflow: hidden;
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
.cid-vkOIR9ahTa .items-wrapper .item .item-wrapper .item-img img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: all 0.3s ease;
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-vkOIR9ahTa .items-wrapper .item .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-vkOIR9ahTa .items-wrapper .item .card_2 .item-img img {
  height: 490px;
}
@media (max-width: 992px) {
  .cid-vkOIR9ahTa .items-wrapper .item .card_2 .item-img img {
    height: 300px;
  }
}
.cid-vkOIR9ahTa .mbr-label {
  color: #686868;
}
.cid-vkOIR9ahTa .mbr-section-title {
  color: #080a10;
}
.cid-vkOIR9ahTa .mbr-section-subtitle {
  color: #5e5e5e;
}
.cid-vkOIR9ahTa .mbr-text {
  color: #686868;
}
.cid-vkOIR9ahTa .item-label {
  color: #686868;
}
.cid-vkOIR9ahTa .item-tag {
  color: #686868;
}
.cid-vkOIR9bdqO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow-anchor: none;
  background-color: #22090b;
  overflow: hidden;
}
.cid-vkOIR9bdqO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9bdqO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR9bdqO .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9bdqO .content-wrapper .content {
  padding: 0;
}
.cid-vkOIR9bdqO .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #341315;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR9bdqO .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9bdqO .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR9bdqO .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR9bdqO .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9bdqO .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR9bdqO .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR9bdqO .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9bdqO .content-wrap {
  position: relative;
  z-index: 1;
  margin: 0 0 80px 0;
}
@media (max-width: 992px) {
  .cid-vkOIR9bdqO .content-wrap {
    margin: 0 0 40px 0;
  }
}
.cid-vkOIR9bdqO .content-wrap .card {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-vkOIR9bdqO .label-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vkOIR9bdqO .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background-color: #341315;
  padding: 7px 14px 6px;
}
.cid-vkOIR9bdqO .label-wrapper .label-wrap .marker-wrap {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
  background-color: #efd9be;
}
.cid-vkOIR9bdqO .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vkOIR9bdqO .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vkOIR9bdqO .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vkOIR9bdqO .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vkOIR9bdqO .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vkOIR9bdqO .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vkOIR9bdqO .items-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9bdqO .items-wrapper .content {
  padding: 0;
}
.cid-vkOIR9bdqO .panel-group {
  margin-right: -1px;
}
.cid-vkOIR9bdqO .panel-group .card {
  position: relative;
  padding: 0;
  border: none;
  background-color: transparent;
  border-radius: 0 !important;
  margin-top: 8px;
  will-change: transform;
}
.cid-vkOIR9bdqO .panel-group .card:first-child {
  margin-top: 0;
}
.cid-vkOIR9bdqO .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-vkOIR9bdqO .panel-group .card .card-header .panel-title {
  display: flex;
  gap: 40px;
  transition: all 0.3s ease;
  background-color: #341315;
  padding: 24px;
  clip-path: polygon(24px 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 24px);
}
@media (max-width: 992px) {
  .cid-vkOIR9bdqO .panel-group .card .card-header .panel-title {
    display: block;
  }
}
.cid-vkOIR9bdqO .panel-group .card .card-header .panel-title .number-wrapper {
  min-width: 260px;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vkOIR9bdqO .panel-group .card .card-header .panel-title .number-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vkOIR9bdqO .panel-group .card .card-header .panel-title .number-wrapper .number-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 13px;
  border: 1px dashed #686868;
  transition: all 0.3s ease;
}
.cid-vkOIR9bdqO .panel-group .card .card-header .panel-title .number-wrapper .number-wrap .marker-wrap {
  width: 12px;
  height: 12px;
  min-width: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #efd9be;
  transition: all 0.3s ease;
}
.cid-vkOIR9bdqO .panel-group .card .card-header .panel-title .number-wrapper .number-wrap .marker-wrap .circle-wrap {
  background-color: #341315;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  transition: all 0.3s ease;
}
.cid-vkOIR9bdqO .panel-group .card .card-header .panel-title .number-wrapper::after {
  content: '';
  width: 100%;
  border-top: 1px dashed #686868;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .cid-vkOIR9bdqO .panel-group .card .card-header .panel-title .number-wrapper::after {
    content: none;
  }
}
.cid-vkOIR9bdqO .panel-group .card .card-header .panel-title .title-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-vkOIR9bdqO .panel-group .card .card-header .panel-title .title-wrap .panel-title-edit {
  margin-bottom: 0;
  width: 100%;
  font-size: 150%;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-vkOIR9bdqO .panel-group .card .card-header .panel-title .title-wrap .panel-title-edit {
    line-height: 1.5;
  }
}
.cid-vkOIR9bdqO .panel-group .card .card-header .panel-title .title-wrap .icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #686868;
  border-radius: 100%;
}
.cid-vkOIR9bdqO .panel-group .card .card-header .panel-title .title-wrap .icon-wrapper .mbr-iconfont {
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  color: #686868;
}
.cid-vkOIR9bdqO .panel-group .card .card-header .panel-title:not(.collapsed) {
  background-color: #bca88e;
}
.cid-vkOIR9bdqO .panel-group .card .card-header .panel-title:not(.collapsed) .number-wrapper .number-wrap {
  border: 1px dashed #000000;
}
.cid-vkOIR9bdqO .panel-group .card .card-header .panel-title:not(.collapsed) .number-wrapper .number-wrap .marker-wrap {
  background-color: #000000;
}
.cid-vkOIR9bdqO .panel-group .card .card-header .panel-title:not(.collapsed) .number-wrapper .number-wrap .marker-wrap .circle-wrap {
  background-color: #bca88e;
}
.cid-vkOIR9bdqO .panel-group .card .card-header .panel-title:not(.collapsed) .number-wrapper .number-wrap .panel-number {
  color: #000000;
}
.cid-vkOIR9bdqO .panel-group .card .card-header .panel-title:not(.collapsed) .number-wrapper::after {
  border-top: 1px dashed #000000;
}
.cid-vkOIR9bdqO .panel-group .card .card-header .panel-title:not(.collapsed) .title-wrap .panel-title-edit {
  color: #000000 !important;
}
.cid-vkOIR9bdqO .panel-group .card .card-header .panel-title:not(.collapsed) .title-wrap .icon-wrapper {
  border: 1px solid #000000;
}
.cid-vkOIR9bdqO .panel-group .card .card-header .panel-title:not(.collapsed) .title-wrap .icon-wrapper .mbr-iconfont {
  transform: rotate(45deg);
  color: #000000;
}
.cid-vkOIR9bdqO .panel-group .card .panel-collapse .panel-body {
  padding: 0 24px 24px 324px;
  background-color: #bca88e;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .cid-vkOIR9bdqO .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 24px;
  }
}
.cid-vkOIR9bdqO .panel-group .card .panel-collapse .panel-body .text-wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-vkOIR9bdqO .panel-group .card .panel-collapse .panel-body .text-wrap {
    display: block;
    width: 100%;
  }
}
.cid-vkOIR9bdqO .panel-group .card .panel-collapse .panel-body .text-wrap .panel-text {
  margin-bottom: 0;
  width: 75%;
  transition: all 0.3s ease;
  color: #000000;
  transform: translateY(10px);
  opacity: 0;
}
.cid-vkOIR9bdqO .panel-group .card .panel-collapse .panel-body .text-wrap .image-wrap img {
  display: inline-flex;
  width: 128px;
  height: 150px;
  object-fit: cover;
  transition: all 0.3s ease;
  transform: translateY(10px);
  opacity: 0;
}
@media (max-width: 992px) {
  .cid-vkOIR9bdqO .panel-group .card .panel-collapse .panel-body .text-wrap .image-wrap img {
    width: 100%;
    height: 300px;
    margin-top: 20px;
  }
}
.cid-vkOIR9bdqO .panel-group .card .panel-collapse .panel-body .tags-wrapper {
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-vkOIR9bdqO .panel-group .card .panel-collapse .panel-body .tags-wrapper {
    margin-top: 20px;
  }
}
.cid-vkOIR9bdqO .panel-group .card .panel-collapse .panel-body .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px 2px;
  padding: 0;
  margin: 0;
  list-style-type: none;
  transition: all 0.3s ease;
  transform: translateY(10px);
  opacity: 0;
}
.cid-vkOIR9bdqO .panel-group .card .panel-collapse .panel-body .tags-wrapper .list .item-wrap {
  padding: 0;
  margin-bottom: 0;
  color: #000000;
}
.cid-vkOIR9bdqO .panel-group .card .panel-collapse.show .panel-body .text-wrap .panel-text {
  transform: translateY(0);
  opacity: 1;
}
.cid-vkOIR9bdqO .panel-group .card .panel-collapse.show .panel-body .text-wrap .image-wrap img {
  transform: translateY(0);
  opacity: 1;
}
.cid-vkOIR9bdqO .panel-group .card .panel-collapse.show .panel-body .tags-wrapper .list {
  transform: translateY(0);
  opacity: 1;
}
.cid-vkOIR9bdqO .mbr-label {
  color: #ffffff;
}
.cid-vkOIR9bdqO .mbr-section-title {
  color: #FFFFFF;
}
.cid-vkOIR9bdqO .mbr-section-subtitle {
  color: #9e9e9e;
}
.cid-vkOIR9bdqO .mbr-text {
  color: #9e9e9e;
}
.cid-vkOIR9bdqO .panel-number {
  color: #ffffff;
}
.cid-vkOIR9bdqO .panel-title-edit {
  color: #FFFFFF;
}
.cid-vkOIR9bdqO .panel-text {
  color: #000000;
}
.cid-vkOIR9bdqO .list {
  color: #ffffff;
}
.cid-vkOIR9bdqO .mbr-label,
.cid-vkOIR9bdqO .label-wrapper {
  color: #FFFFFF;
}
.cid-vkOIR9bdqO .list,
.cid-vkOIR9bdqO .item-wrap,
.cid-vkOIR9bdqO .tags-wrapper {
  color: #000000;
}
.cid-vkOIR9ccXE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #22090b;
}
.cid-vkOIR9ccXE .content-wrapper {
  position: relative;
}
.cid-vkOIR9ccXE .content-wrapper .border-wrap {
  position: absolute;
  height: 1000vh;
  width: 1px;
  border-left: 1px solid #341315;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR9ccXE .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9ccXE .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR9ccXE .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR9ccXE .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9ccXE .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR9ccXE .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR9ccXE .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9ccXE .item:focus,
.cid-vkOIR9ccXE span:focus {
  outline: none;
}
.cid-vkOIR9ccXE .item {
  cursor: pointer;
}
.cid-vkOIR9ccXE .grid-container {
  grid-row-gap: 8px;
}
@media (max-width: 767px) {
  .cid-vkOIR9ccXE .grid-container {
    grid-row-gap: 8px;
  }
}
.cid-vkOIR9ccXE .grid-container-1,
.cid-vkOIR9ccXE .grid-container-2,
.cid-vkOIR9ccXE .grid-container-3 {
  gap: 0 8px;
}
@media (max-width: 767px) {
  .cid-vkOIR9ccXE .grid-container-1,
  .cid-vkOIR9ccXE .grid-container-2,
  .cid-vkOIR9ccXE .grid-container-3 {
    gap: 0 8px;
  }
}
.cid-vkOIR9ccXE .mbr-section-title {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  color: #9e9e9e;
  text-align: center;
}
.cid-vkOIR9ccXE .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-vkOIR9ccXE .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vkOIR9ccXE .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 450px;
  object-fit: cover;
  clip-path: polygon(38px 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 38px);
}
@media (max-width: 1440px) {
  .cid-vkOIR9ccXE .grid-item img {
    height: 400px;
  }
}
@media (max-width: 1200px) {
  .cid-vkOIR9ccXE .grid-item img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-vkOIR9ccXE .grid-item img {
    min-width: 35vw;
    height: 250px;
    clip-path: polygon(24px 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 24px);
  }
}
@media (max-width: 425px) {
  .cid-vkOIR9ccXE .grid-item img {
    min-width: 35vw;
    height: 140px;
  }
}
.cid-vkOIR9ccXE .grid-container-1,
.cid-vkOIR9ccXE .grid-container-2,
.cid-vkOIR9ccXE .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-vkOIR9ccXE .grid-container-1 {
  align-items: flex-end;
}
.cid-vkOIR9ccXE .grid-container-2 {
  align-items: flex-start;
}
.cid-vkOIR9ccXE .gallery-wrapper {
  mask-image: linear-gradient(to right, transparent 0%, #000000 12.5%, #000000 87.5%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000000 12.5%, #000000 87.5%, transparent 100%);
}
@media (max-width: 768px) {
  .cid-vkOIR9ccXE .gallery-wrapper {
    mask-image: none;
    -webkit-mask-image: none;
  }
}
.cid-vkOIR9c3NB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eaeaea;
  overflow: hidden;
}
.cid-vkOIR9c3NB .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9c3NB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR9c3NB .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9c3NB .content-wrapper .content {
  padding: 0;
}
.cid-vkOIR9c3NB .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #ffffff;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR9c3NB .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9c3NB .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR9c3NB .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR9c3NB .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9c3NB .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR9c3NB .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR9c3NB .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9c3NB .content-wrap {
  position: relative;
  z-index: 1;
  margin: 0 0 80px 0;
}
@media (max-width: 992px) {
  .cid-vkOIR9c3NB .content-wrap {
    margin: 0 0 40px 0;
  }
}
.cid-vkOIR9c3NB .content-wrap .card {
  padding: 0;
  justify-content: flex-end;
}
.cid-vkOIR9c3NB .label-wrapper {
  margin-bottom: 20px;
}
.cid-vkOIR9c3NB .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background-color: #e1e1e1;
  padding: 7px 14px 6px;
}
.cid-vkOIR9c3NB .label-wrapper .label-wrap .marker-wrap {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
  background-color: #8b7961;
}
.cid-vkOIR9c3NB .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vkOIR9c3NB .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vkOIR9c3NB .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vkOIR9c3NB .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vkOIR9c3NB .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-vkOIR9c3NB .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vkOIR9c3NB .tabs-wrapper .nav.nav-tabs {
  border: 1px solid #ffffff;
  padding: 2px;
  background-color: #e1e1e1;
  display: inline-flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cid-vkOIR9c3NB .tabs-wrapper .nav.nav-tabs {
    display: block;
  }
}
.cid-vkOIR9c3NB .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
}
.cid-vkOIR9c3NB .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  display: flex;
  color: #080a10;
  padding: 12px 24px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-vkOIR9c3NB .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
    width: 100%;
  }
}
.cid-vkOIR9c3NB .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: #080a10;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.cid-vkOIR9c3NB .tab-content {
  margin-right: -1px;
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 992px) {
  .cid-vkOIR9c3NB .tab-content .tab-pane .tab-card {
    grid-template-columns: 1fr;
  }
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .card-box .frame-wrapper {
  display: flex;
  margin-bottom: -1px;
  will-change: transform;
  position: relative;
  z-index: 1;
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .card-box .frame-wrapper .cross-section {
  width: 24px;
  height: 24px;
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .card-box .frame-wrapper .cross_1 {
  background-image: linear-gradient(135deg, transparent 45%, #bca88e 45%);
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .card-box .frame-wrapper .cross_2 {
  background-image: linear-gradient(225deg, transparent 45%, #bca88e 45%);
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .card-box .frame-wrapper .cross_3 {
  background-image: linear-gradient(315deg, transparent 45%, #bca88e 45%);
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .card-box .frame-wrapper .frame-wrap {
  width: 100%;
  background-color: #bca88e;
  margin: 0 -1px;
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .card-box .frame_2 {
  margin-top: -1px;
  margin-bottom: 0;
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .card-box .frame_2 .frame-wrap {
  margin: 0 -1px 0 0;
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .card-box .item-box {
  background-color: #bca88e;
  padding: 1px 24px;
  will-change: transform;
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .card-box .item-box .card-label-wrapper .item-label {
  display: inline-flex;
  padding: 7px 14px 6px;
  border: 1px dashed #000000;
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .card-box .item-box .card-label-wrapper .item-label {
    margin-bottom: 20px;
  }
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .card-box .item-box .item-price {
  margin-bottom: 8px;
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .card-box .item-box .item-title {
  margin-bottom: 12px;
  font-size: 150%;
}
@media (max-width: 992px) {
  .cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .card-box .item-box .item-title {
    line-height: 1.5;
  }
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .card-box .item-box .text-wrap .item-text {
  display: inline-block;
  margin-bottom: 0;
  width: 35%;
}
@media (max-width: 1440px) {
  .cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .card-box .item-box .text-wrap .item-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .card-box .item-box .text-wrap .item-text {
    width: 100%;
  }
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .card-box .item-box .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
  width: 100%;
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .card-box .item-box .mbr-section-btn .btn {
  width: 100%;
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .item-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .item-content .list-wrapper .item-subtitle {
  margin-bottom: 12px;
  font-size: 150%;
}
@media (max-width: 992px) {
  .cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .item-content .list-wrapper .item-subtitle {
    line-height: 1.5;
  }
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .item-content .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .item-content .list-wrapper .list .item-wrap {
  position: relative;
  padding-left: 24px;
  margin-bottom: 4px;
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .item-content .list-wrapper .list .item-wrap:before {
  content: '—';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  color: inherit;
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .item-content .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .item-content .desc-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  border-top: 1px dashed #c7c7c7;
  padding-top: 16px;
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .item-content .desc-wrapper .item-desc {
  margin-bottom: 0;
}
.cid-vkOIR9c3NB .tab-content .tab-pane .tab-card .item-content .desc-wrapper .item-time {
  margin-bottom: 0;
}
.cid-vkOIR9c3NB .mbr-label {
  color: #686868;
}
.cid-vkOIR9c3NB .mbr-section-title {
  color: #080a10;
}
.cid-vkOIR9c3NB .mbr-section-subtitle {
  color: #686868;
}
.cid-vkOIR9c3NB .mbr-text {
  color: #686868;
}
.cid-vkOIR9c3NB .item-label {
  color: #ffffff;
}
.cid-vkOIR9c3NB .item-title {
  color: #ffffff;
}
.cid-vkOIR9c3NB .item-price {
  color: #000000;
}
.cid-vkOIR9c3NB .item-text {
  color: #ffffff;
}
.cid-vkOIR9c3NB .item-subtitle {
  color: #080a10;
}
.cid-vkOIR9c3NB .list {
  color: #686868;
}
.cid-vkOIR9c3NB .item-desc {
  color: #5e5e5e;
}
.cid-vkOIR9c3NB .item-time {
  color: #080a10;
}
.cid-vkOIR9c3NB .item-label,
.cid-vkOIR9c3NB .card-label-wrapper {
  color: #000000;
}
.cid-vkOIR9c3NB .item-text,
.cid-vkOIR9c3NB .text-wrap {
  color: #000000;
}
.cid-vkOIR9dRro {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #22090b;
  overflow: hidden;
}
.cid-vkOIR9dRro .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9dRro .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR9dRro .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9dRro .content-wrapper .content {
  padding: 0;
}
.cid-vkOIR9dRro .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #341315;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR9dRro .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9dRro .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR9dRro .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR9dRro .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9dRro .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR9dRro .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR9dRro .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9dRro .content-wrap {
  position: relative;
  z-index: 1;
  margin: 0;
}
.cid-vkOIR9dRro .content-wrap .card {
  padding: 0;
}
.cid-vkOIR9dRro .label-wrapper {
  margin-bottom: 20px;
}
.cid-vkOIR9dRro .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background-color: #341315;
  padding: 7px 14px 6px;
}
.cid-vkOIR9dRro .label-wrapper .label-wrap .marker-wrap {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
  background-color: #efd9be;
}
.cid-vkOIR9dRro .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vkOIR9dRro .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-vkOIR9dRro .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vkOIR9dRro .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vkOIR9dRro .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vkOIR9dRro .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 460px;
  max-width: 460px;
}
@media (max-width: 768px) {
  .cid-vkOIR9dRro .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vkOIR9dRro .embla__slide .slide-content {
  width: 100%;
}
.cid-vkOIR9dRro .embla__slide .slide-content .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cid-vkOIR9dRro .embla__slide .slide-content .item-wrapper .frame-wrapper {
  display: flex;
  margin-bottom: -1px;
  will-change: transform;
  position: relative;
  z-index: 1;
}
.cid-vkOIR9dRro .embla__slide .slide-content .item-wrapper .frame-wrapper .cross-section {
  width: 24px;
  height: 24px;
}
.cid-vkOIR9dRro .embla__slide .slide-content .item-wrapper .frame-wrapper .cross_1 {
  background-image: linear-gradient(135deg, transparent 45%, #341315 45%);
}
.cid-vkOIR9dRro .embla__slide .slide-content .item-wrapper .frame-wrapper .cross_2 {
  background-image: linear-gradient(225deg, transparent 45%, #341315 45%);
}
.cid-vkOIR9dRro .embla__slide .slide-content .item-wrapper .frame-wrapper .cross_3 {
  background-image: linear-gradient(315deg, transparent 45%, #341315 45%);
}
.cid-vkOIR9dRro .embla__slide .slide-content .item-wrapper .frame-wrapper .frame-wrap {
  width: 100%;
  background-color: #341315;
  margin: 0 -1px;
}
.cid-vkOIR9dRro .embla__slide .slide-content .item-wrapper .frame_2 {
  margin-top: -1px;
  margin-bottom: 0;
}
.cid-vkOIR9dRro .embla__slide .slide-content .item-wrapper .frame_2 .frame-wrap {
  margin: 0 -1px 0 0;
}
.cid-vkOIR9dRro .embla__slide .slide-content .item-wrapper .card-box {
  position: relative;
  z-index: 1;
  padding: 1px 24px;
  background-color: #341315;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  will-change: transform;
}
.cid-vkOIR9dRro .embla__slide .slide-content .item-wrapper .card-box .item-content .item-title {
  margin-bottom: 8px;
}
.cid-vkOIR9dRro .embla__slide .slide-content .item-wrapper .card-box .item-content .item-text {
  margin-bottom: 0;
}
.cid-vkOIR9dRro .embla__slide .slide-content .item-wrapper .card-box .item-content .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
  width: 100%;
}
.cid-vkOIR9dRro .embla__slide .slide-content .item-wrapper .card-box .item-content .mbr-section-btn .btn {
  width: 100%;
}
.cid-vkOIR9dRro .embla__slide .slide-content .item-wrapper .card-box .item-img {
  margin-top: 32px;
}
.cid-vkOIR9dRro .embla__slide .slide-content .item-wrapper .card-box .item-img img {
  height: 326px;
  width: 100%;
  object-fit: cover;
  clip-path: polygon(24px 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 24px);
}
@media (max-width: 992px) {
  .cid-vkOIR9dRro .embla__slide .slide-content .item-wrapper .card-box .item-img img {
    height: 300px;
  }
}
.cid-vkOIR9dRro .embla__button--next,
.cid-vkOIR9dRro .embla__button--prev {
  display: flex;
}
.cid-vkOIR9dRro .embla__button {
  bottom: 0;
  width: 20px;
  height: 20px;
  font-size: 20px;
  background-color: transparent !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100% !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5 !important;
}
.cid-vkOIR9dRro .embla__button:hover {
  opacity: 1 !important;
}
.cid-vkOIR9dRro .embla__button:disabled {
  opacity: 0.2 !important;
}
.cid-vkOIR9dRro .embla__button.embla__button--prev {
  right: 34px;
}
.cid-vkOIR9dRro .embla__button.embla__button--next {
  right: 0;
}
.cid-vkOIR9dRro .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 3rem !important;
}
.cid-vkOIR9dRro .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  mask-image: linear-gradient(to right, transparent 0%, #000000 12.5%, #000000 87.5%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000000 12.5%, #000000 87.5%, transparent 100%);
}
@media (max-width: 768px) {
  .cid-vkOIR9dRro .embla__viewport {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-vkOIR9dRro .embla__viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }
}
.cid-vkOIR9dRro .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vkOIR9dRro .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vkOIR9dRro .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vkOIR9dRro .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vkOIR9dRro .mbr-label {
  color: #ffffff;
}
.cid-vkOIR9dRro .mbr-section-title {
  color: #ffffff;
}
.cid-vkOIR9dRro .mbr-section-subtitle {
  color: #9e9e9e;
}
.cid-vkOIR9dRro .item-title {
  color: #FFFFFF;
}
.cid-vkOIR9dRro .item-text {
  color: #9e9e9e;
}
.cid-vkOIR9dRro .mbr-label,
.cid-vkOIR9dRro .label-wrapper {
  color: #FFFFFF;
}
.cid-vkOIR9eqLR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eaeaea;
  overflow: hidden;
}
.cid-vkOIR9eqLR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9eqLR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR9eqLR .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9eqLR .content-wrapper .items-wrapper {
  padding: 0;
}
.cid-vkOIR9eqLR .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #ffffff;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR9eqLR .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9eqLR .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR9eqLR .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR9eqLR .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9eqLR .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR9eqLR .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR9eqLR .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9eqLR .slider-wrap {
  margin-top: 8px;
  margin-right: -1px;
}
.cid-vkOIR9eqLR .slider-wrap .frame-wrapper {
  display: flex;
  margin-bottom: -1px;
  will-change: transform;
  position: relative;
  z-index: 1;
}
.cid-vkOIR9eqLR .slider-wrap .frame-wrapper .cross-section {
  width: 24px;
  height: 24px;
}
.cid-vkOIR9eqLR .slider-wrap .frame-wrapper .cross_1 {
  background-image: linear-gradient(135deg, transparent 45%, #ffffff 45%);
}
.cid-vkOIR9eqLR .slider-wrap .frame-wrapper .cross_2 {
  background-image: linear-gradient(225deg, transparent 45%, #ffffff 45%);
}
.cid-vkOIR9eqLR .slider-wrap .frame-wrapper .frame-wrap {
  width: 100%;
  background-color: #ffffff;
  margin: 0 -1px;
}
.cid-vkOIR9eqLR .slider-wrap .embla {
  padding: 1px 24px 24px;
  background-color: #ffffff;
  will-change: transform;
}
.cid-vkOIR9eqLR .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 120px;
  max-width: 120px;
}
@media (max-width: 768px) {
  .cid-vkOIR9eqLR .embla__slide {
    min-width: 50%;
    max-width: 50%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 425px) {
  .cid-vkOIR9eqLR .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vkOIR9eqLR .embla__slide .slide-content {
  width: 100%;
}
.cid-vkOIR9eqLR .embla__slide .slide-content .item-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-vkOIR9eqLR .embla__slide .slide-content .item-wrapper .item-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vkOIR9eqLR .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  object-fit: cover;
  height: 40px;
  max-height: 100px;
}
.cid-vkOIR9eqLR .embla__button--next,
.cid-vkOIR9eqLR .embla__button--prev {
  display: flex;
}
.cid-vkOIR9eqLR .embla__button {
  bottom: 12px;
  width: 20px;
  height: 20px;
  font-size: 20px;
  background-color: transparent !important;
  color: #080a10 !important;
  border: none !important;
  border-radius: 100% !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5 !important;
  display: none;
}
.cid-vkOIR9eqLR .embla__button:hover {
  opacity: 1 !important;
}
.cid-vkOIR9eqLR .embla__button:disabled {
  opacity: 0.2 !important;
}
.cid-vkOIR9eqLR .embla__button.embla__button--prev {
  right: 56px;
}
.cid-vkOIR9eqLR .embla__button.embla__button--next {
  right: 24px;
}
.cid-vkOIR9eqLR .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-vkOIR9eqLR .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  mask-image: linear-gradient(to right, transparent 0%, #000000 12.5%, #000000 87.5%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000000 12.5%, #000000 87.5%, transparent 100%);
}
@media (max-width: 768px) {
  .cid-vkOIR9eqLR .embla__viewport {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-vkOIR9eqLR .embla__viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }
}
.cid-vkOIR9eqLR .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vkOIR9eqLR .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vkOIR9eqLR .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vkOIR9eqLR .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vkOIR9fPrO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #22090b;
  overflow: hidden;
}
.cid-vkOIR9fPrO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9fPrO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR9fPrO .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9fPrO .content-wrapper .content {
  padding: 0;
}
.cid-vkOIR9fPrO .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #341315;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR9fPrO .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9fPrO .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR9fPrO .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR9fPrO .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9fPrO .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR9fPrO .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR9fPrO .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9fPrO .content-wrap {
  position: relative;
  z-index: 1;
  margin: 0 0 80px 0;
}
@media (max-width: 992px) {
  .cid-vkOIR9fPrO .content-wrap {
    margin: 0 0 40px 0;
  }
}
.cid-vkOIR9fPrO .content-wrap .card {
  padding: 0;
}
.cid-vkOIR9fPrO .label-wrapper {
  margin-bottom: 20px;
}
.cid-vkOIR9fPrO .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background-color: #341315;
  padding: 7px 14px 6px;
}
.cid-vkOIR9fPrO .label-wrapper .label-wrap .marker-wrap {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
  background-color: #efd9be;
}
.cid-vkOIR9fPrO .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vkOIR9fPrO .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vkOIR9fPrO .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vkOIR9fPrO .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vkOIR9fPrO .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vkOIR9fPrO .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vkOIR9fPrO .items-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9fPrO .items-wrapper .item {
  padding: 0;
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .cid-vkOIR9fPrO .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vkOIR9fPrO .items-wrapper .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-vkOIR9fPrO .items-wrapper .item .item-wrapper {
    padding-right: 0;
  }
}
.cid-vkOIR9fPrO .items-wrapper .item .item-wrapper .frame-wrapper {
  display: flex;
  margin-bottom: -1px;
  will-change: transform;
  position: relative;
  z-index: 1;
}
.cid-vkOIR9fPrO .items-wrapper .item .item-wrapper .frame-wrapper .cross-section {
  width: 24px;
  height: 24px;
}
.cid-vkOIR9fPrO .items-wrapper .item .item-wrapper .frame-wrapper .cross_1 {
  background-image: linear-gradient(135deg, transparent 45%, #341315 45%);
}
.cid-vkOIR9fPrO .items-wrapper .item .item-wrapper .frame-wrapper .cross_2 {
  background-image: linear-gradient(225deg, transparent 45%, #341315 45%);
}
.cid-vkOIR9fPrO .items-wrapper .item .item-wrapper .frame-wrapper .cross_3 {
  background-image: linear-gradient(315deg, transparent 45%, #341315 45%);
}
.cid-vkOIR9fPrO .items-wrapper .item .item-wrapper .frame-wrapper .frame-wrap {
  width: 100%;
  background-color: #341315;
  margin: 0 -1px;
}
.cid-vkOIR9fPrO .items-wrapper .item .item-wrapper .frame_2 {
  margin-top: -1px;
  margin-bottom: 0;
}
.cid-vkOIR9fPrO .items-wrapper .item .item-wrapper .frame_2 .frame-wrap {
  margin: 0 -1px 0 0;
}
.cid-vkOIR9fPrO .items-wrapper .item .item-wrapper .card-box {
  position: relative;
  z-index: 2;
  background-color: #341315;
  padding: 1px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 200px;
  will-change: transform;
}
@media (max-width: 992px) {
  .cid-vkOIR9fPrO .items-wrapper .item .item-wrapper .card-box {
    height: auto;
    min-height: auto;
  }
}
.cid-vkOIR9fPrO .items-wrapper .item .item-wrapper .card-box .item-content .card-label-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-vkOIR9fPrO .items-wrapper .item .item-wrapper .card-box .item-content .card-label-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vkOIR9fPrO .items-wrapper .item .item-wrapper .card-box .item-content .card-label-wrapper .card-label-wrap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}
.cid-vkOIR9fPrO .items-wrapper .item .item-wrapper .card-box .item-content .card-label-wrapper .card-label-wrap .marker-wrap {
  width: 12px;
  height: 12px;
  min-width: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #efd9be;
}
.cid-vkOIR9fPrO .items-wrapper .item .item-wrapper .card-box .item-content .card-label-wrapper .card-label-wrap .marker-wrap .circle-wrap {
  background-color: #341315;
  width: 6px;
  height: 6px;
  border-radius: 100%;
}
.cid-vkOIR9fPrO .items-wrapper .item .item-wrapper .card-box .item-content .card-label-wrapper .card-label-wrap .item-label {
  margin-bottom: 0;
}
.cid-vkOIR9fPrO .items-wrapper .item .item-wrapper .card-box .item-content .item-title {
  margin-bottom: 8px;
}
.cid-vkOIR9fPrO .items-wrapper .item .item-wrapper .card-box .item-content .item-text {
  margin-bottom: 0;
}
.cid-vkOIR9fPrO .items-wrapper .item .item-wrapper .card-box .item-content .mbr-section-btn {
  width: 100%;
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-vkOIR9fPrO .items-wrapper .item .item-wrapper .card-box .item-content .mbr-section-btn .btn {
  width: 100%;
}
.cid-vkOIR9fPrO .items-wrapper .item .item-wrapper .card-box .item-number {
  margin-top: 20px;
  margin-bottom: -24px;
  margin-right: -24px;
}
.cid-vkOIR9fPrO .btn-wrapper {
  margin-top: -2rem;
}
.cid-vkOIR9fPrO .mbr-label,
.cid-vkOIR9fPrO .label-wrapper {
  color: #FFFFFF;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vkOIR9fPrO .mbr-label,
  .cid-vkOIR9fPrO .label-wrapper {
    text-align: left;
  }
}
.cid-vkOIR9fPrO .mbr-section-title {
  color: #FFFFFF;
}
.cid-vkOIR9fPrO .mbr-section-subtitle {
  color: #9e9e9e;
}
.cid-vkOIR9fPrO .mbr-text {
  color: #9e9e9e;
}
.cid-vkOIR9fPrO .item-label {
  color: #ffffff;
}
.cid-vkOIR9fPrO .item-title {
  color: #FFFFFF;
}
.cid-vkOIR9fPrO .item-text {
  color: #9e9e9e;
}
.cid-vkOIR9fPrO .item-number {
  color: #22090B;
  text-align: right;
}
.cid-vkOIR9fPrO .item-label,
.cid-vkOIR9fPrO .card-label-wrapper {
  color: #FFFFFF;
}
.cid-vkOIR9f0P3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #22090b;
  overflow: hidden;
}
.cid-vkOIR9f0P3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9f0P3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR9f0P3 .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9f0P3 .content-wrapper .content {
  padding: 0;
}
.cid-vkOIR9f0P3 .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #341315;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR9f0P3 .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9f0P3 .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR9f0P3 .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR9f0P3 .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9f0P3 .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR9f0P3 .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR9f0P3 .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9f0P3 .google-map {
  position: relative;
  z-index: 1;
  margin-right: -1px;
}
.cid-vkOIR9f0P3 .google-map iframe {
  height: 650px;
  filter: grayscale(1);
}
@media (max-width: 1440px) {
  .cid-vkOIR9f0P3 .google-map iframe {
    height: 500px;
  }
}
@media (max-width: 992px) {
  .cid-vkOIR9f0P3 .google-map iframe {
    height: 300px;
  }
}
.cid-vkOIR9gZOP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eaeaea;
  overflow: hidden;
}
.cid-vkOIR9gZOP .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9gZOP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR9gZOP .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9gZOP .content-wrapper .content {
  padding: 0;
}
.cid-vkOIR9gZOP .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #ffffff;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR9gZOP .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9gZOP .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR9gZOP .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR9gZOP .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9gZOP .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR9gZOP .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR9gZOP .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9gZOP .content-wrap {
  position: relative;
  z-index: 1;
  margin: 0;
}
.cid-vkOIR9gZOP .content-wrap .card {
  padding: 0;
}
.cid-vkOIR9gZOP .title-wrapper {
  margin-bottom: 40px;
}
.cid-vkOIR9gZOP .label-wrapper {
  margin-bottom: 20px;
}
.cid-vkOIR9gZOP .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background-color: #e1e1e1;
  padding: 7px 14px 6px;
}
.cid-vkOIR9gZOP .label-wrapper .label-wrap .marker-wrap {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
  background-color: #8b7961;
}
.cid-vkOIR9gZOP .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vkOIR9gZOP .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-vkOIR9gZOP .title-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vkOIR9gZOP .main-btn {
  margin-top: 20px;
  margin-bottom: -9.6px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vkOIR9gZOP .main-btn {
    margin-top: 10px;
  }
}
.cid-vkOIR9gZOP .main-btn .btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-vkOIR9gZOP .main-btn .btn {
    width: 100%;
  }
}
.cid-vkOIR9gZOP .items-wrapper {
  margin-right: -1px;
}
.cid-vkOIR9gZOP .items-wrapper .item {
  margin-bottom: 8px;
}
.cid-vkOIR9gZOP .items-wrapper .item:last-child {
  margin-bottom: 0;
}
.cid-vkOIR9gZOP .items-wrapper .item .item-wrapper {
  height: 100%;
}
.cid-vkOIR9gZOP .items-wrapper .item .item-wrapper .frame-wrapper {
  display: flex;
  margin-bottom: -1px;
  will-change: transform;
  position: relative;
  z-index: 1;
}
.cid-vkOIR9gZOP .items-wrapper .item .item-wrapper .frame-wrapper .cross-section {
  width: 24px;
  height: 24px;
}
.cid-vkOIR9gZOP .items-wrapper .item .item-wrapper .frame-wrapper .cross_1 {
  background-image: linear-gradient(135deg, transparent 45%, #ffffff 45%);
}
.cid-vkOIR9gZOP .items-wrapper .item .item-wrapper .frame-wrapper .cross_2 {
  background-image: linear-gradient(225deg, transparent 45%, #ffffff 45%);
}
.cid-vkOIR9gZOP .items-wrapper .item .item-wrapper .frame-wrapper .cross_3 {
  background-image: linear-gradient(315deg, transparent 45%, #ffffff 45%);
}
.cid-vkOIR9gZOP .items-wrapper .item .item-wrapper .frame-wrapper .frame-wrap {
  width: 100%;
  background-color: #ffffff;
  margin: 0 -1px;
}
.cid-vkOIR9gZOP .items-wrapper .item .item-wrapper .frame_2 {
  margin-top: -1px;
  margin-bottom: 0;
}
.cid-vkOIR9gZOP .items-wrapper .item .item-wrapper .frame_2 .frame-wrap {
  margin: 0 -1px 0 0;
}
.cid-vkOIR9gZOP .items-wrapper .item .item-wrapper .card-box {
  padding: 1px 24px;
  background-color: #ffffff;
  position: relative;
  z-index: 2;
  height: 100%;
  will-change: transform;
}
.cid-vkOIR9gZOP .items-wrapper .item .item-wrapper .card-box .number-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.cid-vkOIR9gZOP .items-wrapper .item .item-wrapper .card-box .number-wrapper .number-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 13px;
  border: 1px dashed #c7c7c7;
}
.cid-vkOIR9gZOP .items-wrapper .item .item-wrapper .card-box .number-wrapper .number-wrap .marker-wrap {
  width: 12px;
  height: 12px;
  min-width: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #8b7961;
}
.cid-vkOIR9gZOP .items-wrapper .item .item-wrapper .card-box .number-wrapper .number-wrap .marker-wrap .circle-wrap {
  background-color: #ffffff;
  width: 6px;
  height: 6px;
  border-radius: 100%;
}
.cid-vkOIR9gZOP .items-wrapper .item .item-wrapper .card-box .number-wrapper::after {
  content: '';
  width: 100%;
  border-top: 1px dashed #c7c7c7;
}
@media (max-width: 992px) {
  .cid-vkOIR9gZOP .items-wrapper .item .item-wrapper .card-box .number-wrapper::after {
    content: none;
  }
}
.cid-vkOIR9gZOP .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 6px;
  font-size: 150%;
}
@media (max-width: 992px) {
  .cid-vkOIR9gZOP .items-wrapper .item .item-wrapper .card-box .item-title {
    line-height: 1.5;
  }
}
.cid-vkOIR9gZOP .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-vkOIR9gZOP .items-wrapper .item .item-wrapper .card-box .item-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-vkOIR9gZOP .mbr-label {
  color: #686868;
}
.cid-vkOIR9gZOP .mbr-section-title {
  color: #080a10;
}
.cid-vkOIR9gZOP .mbr-section-subtitle {
  color: #5e5e5e;
}
.cid-vkOIR9gZOP .item-number {
  color: #686868;
}
.cid-vkOIR9gZOP .item-title {
  color: #080a10;
}
.cid-vkOIR9gZOP .item-text {
  color: #5e5e5e;
}
.cid-vkOIR9gvyJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eaeaea;
  overflow: hidden;
}
.cid-vkOIR9gvyJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9gvyJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR9gvyJ .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9gvyJ .content-wrapper .content {
  padding: 0;
}
.cid-vkOIR9gvyJ .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #ffffff;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR9gvyJ .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9gvyJ .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR9gvyJ .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR9gvyJ .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9gvyJ .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR9gvyJ .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR9gvyJ .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9gvyJ .content-wrap {
  position: relative;
  z-index: 1;
  margin: 0;
}
.cid-vkOIR9gvyJ .content-wrap .card {
  padding: 0;
}
.cid-vkOIR9gvyJ .title-wrapper {
  margin-bottom: 40px;
}
.cid-vkOIR9gvyJ .label-wrapper {
  margin-bottom: 20px;
}
.cid-vkOIR9gvyJ .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background-color: #e1e1e1;
  padding: 7px 14px 6px;
}
.cid-vkOIR9gvyJ .label-wrapper .label-wrap .marker-wrap {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
  background-color: #8b7961;
}
.cid-vkOIR9gvyJ .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vkOIR9gvyJ .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-vkOIR9gvyJ .title-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vkOIR9gvyJ .main-btn {
  margin-top: 20px;
  margin-bottom: -9.6px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vkOIR9gvyJ .main-btn {
    margin-top: 10px;
  }
}
.cid-vkOIR9gvyJ .main-btn .btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-vkOIR9gvyJ .main-btn .btn {
    width: 100%;
  }
}
.cid-vkOIR9gvyJ .items-wrapper {
  margin-right: -1px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 992px) {
  .cid-vkOIR9gvyJ .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-vkOIR9gvyJ .items-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  min-height: 395px;
  overflow: hidden;
  clip-path: polygon(24px 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 24px);
}
@media (max-width: 992px) {
  .cid-vkOIR9gvyJ .items-wrapper .item .item-wrapper {
    min-height: 350px;
  }
}
.cid-vkOIR9gvyJ .items-wrapper .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vkOIR9gvyJ .items-wrapper .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, transparent 0%, #22090b 100%);
  z-index: 1;
  pointer-events: none;
}
.cid-vkOIR9gvyJ .items-wrapper .item .item-wrapper .card-box {
  position: relative;
  z-index: 1;
  padding: 14px 16px;
}
@media (max-width: 992px) {
  .cid-vkOIR9gvyJ .items-wrapper .item .item-wrapper .card-box {
    padding: 24px;
  }
}
.cid-vkOIR9gvyJ .items-wrapper .item .item-wrapper .card-box .marker-wrapper {
  margin-bottom: 12px;
}
.cid-vkOIR9gvyJ .items-wrapper .item .item-wrapper .card-box .marker-wrapper .marker-wrap {
  width: 12px;
  height: 12px;
  min-width: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #8b7961;
}
.cid-vkOIR9gvyJ .items-wrapper .item .item-wrapper .card-box .marker-wrapper .marker-wrap .circle-wrap {
  background-color: #ffffff;
  width: 6px;
  height: 6px;
  border-radius: 100%;
}
.cid-vkOIR9gvyJ .items-wrapper .item .item-wrapper .card-box .item-name {
  margin-bottom: 2px;
}
.cid-vkOIR9gvyJ .items-wrapper .item .item-wrapper .card-box .item-role {
  margin-bottom: 0;
}
.cid-vkOIR9gvyJ .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-top: 12px;
  border-top: 1px dashed #686868;
  padding-top: 12px;
  margin-bottom: 0;
}
.cid-vkOIR9gvyJ .mbr-label {
  color: #686868;
}
.cid-vkOIR9gvyJ .mbr-section-title {
  color: #080a10;
}
.cid-vkOIR9gvyJ .mbr-section-subtitle {
  color: #5e5e5e;
}
.cid-vkOIR9gvyJ .item-name {
  color: #ffffff;
}
.cid-vkOIR9gvyJ .item-role {
  color: #FFFFFF;
}
.cid-vkOIR9gvyJ .item-text {
  color: #FFFFFF;
}
.cid-vkOIR9gvyJ .item-name,
.cid-vkOIR9gvyJ .marker-wrapper {
  color: #FFFFFF;
}
.cid-vkOIR9jZUl {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../images/HhdfCbzehe4U.jpeg");
  overflow: hidden;
}
.cid-vkOIR9jZUl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9jZUl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR9jZUl .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9jZUl .content-wrapper .card {
  position: relative;
  z-index: 1;
  padding: 0;
  justify-content: flex-end;
}
.cid-vkOIR9jZUl .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #bca88e;
  pointer-events: none;
  padding: 0;
  top: -100%;
}
.cid-vkOIR9jZUl .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9jZUl .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR9jZUl .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR9jZUl .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9jZUl .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR9jZUl .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR9jZUl .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9jZUl .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vkOIR9jZUl .text-wrapper {
  margin-top: 240px;
}
@media (max-width: 1440px) {
  .cid-vkOIR9jZUl .text-wrapper {
    margin-top: 140px;
  }
}
@media (max-width: 992px) {
  .cid-vkOIR9jZUl .text-wrapper {
    margin-top: 40px;
  }
}
.cid-vkOIR9jZUl .text-wrapper .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-vkOIR9jZUl .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vkOIR9jZUl .text-wrapper .mbr-section-btn {
  margin-top: 80px;
  margin-bottom: -9.6px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vkOIR9jZUl .text-wrapper .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-vkOIR9jZUl .text-wrapper .mbr-section-btn .btn {
  width: 100%;
}
.cid-vkOIR9jZUl .image-wrapper {
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-vkOIR9jZUl .image-wrapper {
    margin-top: 40px;
  }
}
.cid-vkOIR9jZUl .image-wrapper img {
  height: 245px;
  width: 100%;
  object-fit: cover;
}
.cid-vkOIR9jZUl .mbr-section-title {
  color: #000000;
}
.cid-vkOIR9jZUl .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vkOIR9jZUl .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-vkOIR9jZUl .mbr-text {
  color: #ffffff;
}
.cid-vkOIR9jZUl .mbr-text,
.cid-vkOIR9jZUl .mbr-section-btn {
  color: #000000;
}
.cid-vkOIR9kO73 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #22090b;
  overflow: hidden;
}
.cid-vkOIR9kO73 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9kO73 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR9kO73 .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9kO73 .content-wrapper .content {
  padding: 0;
}
.cid-vkOIR9kO73 .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #341315;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR9kO73 .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9kO73 .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR9kO73 .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR9kO73 .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9kO73 .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR9kO73 .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR9kO73 .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9kO73 .content-wrap {
  position: relative;
  z-index: 1;
  margin: 0;
}
.cid-vkOIR9kO73 .content-wrap .card {
  padding: 0;
}
.cid-vkOIR9kO73 .title-wrapper {
  margin-bottom: 40px;
}
.cid-vkOIR9kO73 .label-wrapper {
  margin-bottom: 20px;
}
.cid-vkOIR9kO73 .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background-color: #341315;
  padding: 7px 14px 6px;
}
.cid-vkOIR9kO73 .label-wrapper .label-wrap .marker-wrap {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
  background-color: #efd9be;
}
.cid-vkOIR9kO73 .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vkOIR9kO73 .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-vkOIR9kO73 .title-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vkOIR9kO73 .main-btn {
  margin-top: 20px;
  margin-bottom: -9.6px;
}
.cid-vkOIR9kO73 .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-vkOIR9kO73 .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-vkOIR9kO73 .items-wrapper .items-wrap:first-child {
  padding-top: 170px;
}
@media (max-width: 992px) {
  .cid-vkOIR9kO73 .items-wrapper .items-wrap:first-child {
    padding-top: 0;
  }
}
.cid-vkOIR9kO73 .items-wrapper .items-wrap:first-child .item .item-wrapper .frame_2 .frame-wrap {
  margin: 0 0 0 -1px;
}
.cid-vkOIR9kO73 .items-wrapper .item {
  margin-top: 8px;
}
.cid-vkOIR9kO73 .items-wrapper .item:first-child {
  margin-top: 0;
}
.cid-vkOIR9kO73 .items-wrapper .item .item-wrapper {
  height: 100%;
}
.cid-vkOIR9kO73 .items-wrapper .item .item-wrapper .frame-wrapper {
  display: flex;
  margin-bottom: -1px;
  will-change: transform;
  position: relative;
  z-index: 1;
}
.cid-vkOIR9kO73 .items-wrapper .item .item-wrapper .frame-wrapper .cross-section {
  width: 24px;
  height: 24px;
}
.cid-vkOIR9kO73 .items-wrapper .item .item-wrapper .frame-wrapper .cross_1 {
  background-image: linear-gradient(135deg, transparent 45%, #ffffff 45%);
}
.cid-vkOIR9kO73 .items-wrapper .item .item-wrapper .frame-wrapper .cross_2 {
  background-image: linear-gradient(225deg, transparent 45%, #ffffff 45%);
}
.cid-vkOIR9kO73 .items-wrapper .item .item-wrapper .frame-wrapper .cross_3 {
  background-image: linear-gradient(315deg, transparent 45%, #ffffff 45%);
}
.cid-vkOIR9kO73 .items-wrapper .item .item-wrapper .frame-wrapper .cross_4 {
  background-image: linear-gradient(45deg, transparent 45%, #ffffff 45%);
}
.cid-vkOIR9kO73 .items-wrapper .item .item-wrapper .frame-wrapper .frame-wrap {
  width: 100%;
  background-color: #ffffff;
  margin: 0 -1px;
}
.cid-vkOIR9kO73 .items-wrapper .item .item-wrapper .frame_2 {
  margin-top: -1px;
  margin-bottom: 0;
}
.cid-vkOIR9kO73 .items-wrapper .item .item-wrapper .frame_2 .frame-wrap {
  margin: 0 -1px 0 0;
}
.cid-vkOIR9kO73 .items-wrapper .item .item-wrapper .card-box {
  padding: 1px 24px;
  background-color: #ffffff;
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  will-change: transform;
}
.cid-vkOIR9kO73 .items-wrapper .item .item-wrapper .card-box .item-content .number-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-vkOIR9kO73 .items-wrapper .item .item-wrapper .card-box .item-content .number-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vkOIR9kO73 .items-wrapper .item .item-wrapper .card-box .item-content .number-wrapper .number-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cid-vkOIR9kO73 .items-wrapper .item .item-wrapper .card-box .item-content .number-wrapper .number-wrap .marker-wrap {
  width: 12px;
  height: 12px;
  min-width: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #8b7961;
}
.cid-vkOIR9kO73 .items-wrapper .item .item-wrapper .card-box .item-content .number-wrapper .number-wrap .marker-wrap .circle-wrap {
  background-color: #ffffff;
  width: 6px;
  height: 6px;
  border-radius: 100%;
}
.cid-vkOIR9kO73 .items-wrapper .item .item-wrapper .card-box .item-content .number-wrapper .number-wrap .item-number {
  margin-bottom: 0;
  white-space: nowrap;
}
.cid-vkOIR9kO73 .items-wrapper .item .item-wrapper .card-box .item-content .item-text {
  margin-bottom: 20px;
}
.cid-vkOIR9kO73 .items-wrapper .item .item-wrapper .card-box .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cid-vkOIR9kO73 .items-wrapper .item .item-wrapper .card-box .person-wrapper .person-wrap .item-img img {
  display: inline-flex;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 100% !important;
  object-fit: cover;
}
.cid-vkOIR9kO73 .items-wrapper .item .item-wrapper .card-box .person-wrapper .person-wrap .name-wrapper {
  position: relative;
  z-index: 1;
}
.cid-vkOIR9kO73 .items-wrapper .item .item-wrapper .card-box .person-wrapper .person-wrap .name-wrapper .item-name {
  margin-bottom: 0;
}
.cid-vkOIR9kO73 .items-wrapper .item .item-wrapper .card-box .person-wrapper .person-wrap .name-wrapper .item-role {
  margin-bottom: 0;
}
.cid-vkOIR9kO73 .mbr-label {
  color: #ffffff;
}
.cid-vkOIR9kO73 .mbr-section-title {
  color: #ffffff;
}
.cid-vkOIR9kO73 .mbr-section-subtitle {
  color: #9e9e9e;
}
.cid-vkOIR9kO73 .item-number {
  color: #686868;
}
.cid-vkOIR9kO73 .item-text {
  color: #080a10;
}
.cid-vkOIR9kO73 .item-name {
  color: #080a10;
}
.cid-vkOIR9kO73 .item-role {
  color: #686868;
}
.cid-vkOIR9kO73 .mbr-label,
.cid-vkOIR9kO73 .label-wrapper {
  color: #FFFFFF;
}
.cid-vkOIR9kO73 .mbr-section-title,
.cid-vkOIR9kO73 .main-btn {
  color: #FFFFFF;
}
.cid-vkOIR9k9v5 {
  background-image: url("../images/R4C6pIcOfBQr.jpeg");
}
.cid-vkOIR9k9v5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9k9v5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR9k9v5 .image-wrapper {
  height: 400px;
}
@media (max-width: 992px) {
  .cid-vkOIR9k9v5 .image-wrapper {
    min-height: 300px;
  }
}
.cid-vkOIR9lFNI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eaeaea;
  overflow: hidden;
}
.cid-vkOIR9lFNI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9lFNI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR9lFNI .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9lFNI .content-wrapper .content {
  padding: 0;
}
.cid-vkOIR9lFNI .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #ffffff;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR9lFNI .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9lFNI .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR9lFNI .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR9lFNI .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9lFNI .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR9lFNI .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR9lFNI .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9lFNI .content-wrap {
  position: relative;
  z-index: 1;
  margin: 0 0 80px 0;
}
@media (max-width: 992px) {
  .cid-vkOIR9lFNI .content-wrap {
    margin: 0 0 40px 0;
  }
}
.cid-vkOIR9lFNI .content-wrap .card {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-vkOIR9lFNI .label-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vkOIR9lFNI .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background-color: #e1e1e1;
  padding: 7px 14px 6px;
}
.cid-vkOIR9lFNI .label-wrapper .label-wrap .marker-wrap {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
  background-color: #8b7961;
}
.cid-vkOIR9lFNI .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vkOIR9lFNI .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vkOIR9lFNI .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vkOIR9lFNI .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vkOIR9lFNI .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vkOIR9lFNI .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vkOIR9lFNI .items-wrapper {
  position: relative;
  margin: 0 -4px;
}
.cid-vkOIR9lFNI .items-wrapper .card {
  padding: 0 4px;
}
.cid-vkOIR9lFNI .items-wrapper .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-vkOIR9lFNI .items-wrapper .card-wrapper {
    margin-bottom: 8px;
  }
}
.cid-vkOIR9lFNI .items-wrapper .card-wrapper .frame-wrapper {
  display: flex;
  margin-bottom: -1px;
  will-change: transform;
  position: relative;
  z-index: 1;
}
.cid-vkOIR9lFNI .items-wrapper .card-wrapper .frame-wrapper .cross-section {
  width: 24px;
  height: 24px;
}
.cid-vkOIR9lFNI .items-wrapper .card-wrapper .frame-wrapper .cross_1 {
  background-image: linear-gradient(135deg, transparent 45%, #ffffff 45%);
}
.cid-vkOIR9lFNI .items-wrapper .card-wrapper .frame-wrapper .cross_2 {
  background-image: linear-gradient(225deg, transparent 45%, #ffffff 45%);
}
.cid-vkOIR9lFNI .items-wrapper .card-wrapper .frame-wrapper .frame-wrap {
  width: 100%;
  background-color: #ffffff;
  margin: 0 -1px;
}
.cid-vkOIR9lFNI .items-wrapper .card-wrapper .item-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 24px 0;
  background-color: #ffffff;
  will-change: transform;
}
.cid-vkOIR9lFNI .items-wrapper .card-wrapper .item-content .person-wrapper {
  margin-bottom: 20px;
}
.cid-vkOIR9lFNI .items-wrapper .card-wrapper .item-content .person-wrapper .item-name {
  margin-bottom: 0;
  font-size: 150%;
}
@media (max-width: 992px) {
  .cid-vkOIR9lFNI .items-wrapper .card-wrapper .item-content .person-wrapper .item-name {
    line-height: 1.5;
  }
}
.cid-vkOIR9lFNI .items-wrapper .card-wrapper .item-content .person-wrapper .item-role {
  margin-bottom: 0;
  font-size: 150%;
}
@media (max-width: 992px) {
  .cid-vkOIR9lFNI .items-wrapper .card-wrapper .item-content .person-wrapper .item-role {
    line-height: 1.5;
  }
}
.cid-vkOIR9lFNI .items-wrapper .card-wrapper .item-content .image-wrapper img {
  width: 100%;
  height: 378px;
  object-fit: cover;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  clip-path: polygon(24px 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 24px);
  mask-image: linear-gradient(to bottom, transparent -100%, #000000 12.5%, #000000 60%, transparent 105%);
  -webkit-mask-image: linear-gradient(to bottom, transparent -100%, #000000 12.5%, #000000 60%, transparent 105%);
}
@media (max-width: 992px) {
  .cid-vkOIR9lFNI .items-wrapper .card-wrapper .item-content .image-wrapper img {
    height: 300px;
  }
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 992px) {
  .cid-vkOIR9lFNI .items-wrapper .items-wrap {
    grid-template-columns: 1fr;
  }
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_1 {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_1 .card-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_1 .card-box .frame-wrapper {
  display: flex;
  margin-bottom: -1px;
  will-change: transform;
  position: relative;
  z-index: 1;
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_1 .card-box .frame-wrapper .cross-section {
  width: 24px;
  height: 24px;
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_1 .card-box .frame-wrapper .cross_1 {
  background-image: linear-gradient(135deg, transparent 45%, #ffffff 45%);
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_1 .card-box .frame-wrapper .cross_2 {
  background-image: linear-gradient(225deg, transparent 45%, #ffffff 45%);
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_1 .card-box .frame-wrapper .frame-wrap {
  width: 100%;
  background-color: #ffffff;
  margin: 0 -1px;
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_1 .card-box .item-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 24px 24px;
  background-color: #ffffff;
  will-change: transform;
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_1 .card-box .item-content .item-title {
  margin-bottom: 8px;
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_1 .card-box .item-content .item-text {
  margin-bottom: 0;
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_1 .card-box .item-content .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
  width: 100%;
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_1 .card-box .item-content .mbr-section-btn .btn {
  width: 100%;
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_1 .item-img {
  height: 100%;
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_1 .item-img img {
  height: 100%;
  min-height: 350px;
  width: 100%;
  object-fit: cover;
  clip-path: polygon(23px 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 23px);
  clip-path: none;
}
@media (max-width: 992px) {
  .cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_1 .item-img img {
    height: 300px;
  }
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_2 {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_2 .frame-wrapper {
  display: flex;
  margin-bottom: -1px;
  will-change: transform;
  position: relative;
  z-index: 1;
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_2 .frame-wrapper .cross-section {
  width: 24px;
  height: 24px;
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_2 .frame-wrapper .cross_1 {
  background-image: linear-gradient(135deg, transparent 45%, #ffffff 45%);
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_2 .frame-wrapper .cross_2 {
  background-image: linear-gradient(225deg, transparent 45%, #ffffff 45%);
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_2 .frame-wrapper .frame-wrap {
  width: 100%;
  background-color: #ffffff;
  margin: 0 -1px;
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_2 .card-box {
  padding: 6px 24px 24px;
  background-color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  will-change: transform;
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_2 .card-box .item-content {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_2 .card-box .item-content {
    margin-bottom: 24px;
  }
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_2 .card-box .item-content .item-title {
  margin-bottom: 8px;
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_2 .card-box .item-content .item-text {
  margin-bottom: 0;
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_2 .card-box .item-content .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
  width: 100%;
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_2 .card-box .item-content .mbr-section-btn .btn {
  width: 100%;
}
.cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_2 .card-box .item-img img {
  height: 326px;
  width: 100%;
  object-fit: cover;
  clip-path: polygon(24px 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 24px);
}
@media (max-width: 992px) {
  .cid-vkOIR9lFNI .items-wrapper .items-wrap .item .card_2 .card-box .item-img img {
    height: 300px;
  }
}
.cid-vkOIR9lFNI .btn-wrapper {
  margin-top: -2rem;
}
.cid-vkOIR9lFNI .mbr-label {
  color: #686868;
}
.cid-vkOIR9lFNI .mbr-section-title {
  color: #080a10;
}
.cid-vkOIR9lFNI .mbr-section-subtitle {
  color: #5e5e5e;
}
.cid-vkOIR9lFNI .mbr-text {
  color: #686868;
}
.cid-vkOIR9lFNI .item-name {
  color: #080a10;
}
.cid-vkOIR9lFNI .item-role {
  color: #686868;
}
.cid-vkOIR9lFNI .item-title {
  color: #080a10;
}
.cid-vkOIR9lFNI .item-text {
  color: #5e5e5e;
}
.cid-vkOIR9lQgI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eaeaea;
  overflow: hidden;
}
.cid-vkOIR9lQgI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9lQgI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR9lQgI .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9lQgI .content-wrapper .content {
  padding: 0;
}
.cid-vkOIR9lQgI .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #ffffff;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR9lQgI .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9lQgI .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR9lQgI .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR9lQgI .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9lQgI .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR9lQgI .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR9lQgI .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9lQgI .content-wrap {
  position: relative;
  z-index: 1;
  margin: 0 0 80px 0;
}
@media (max-width: 992px) {
  .cid-vkOIR9lQgI .content-wrap {
    margin: 0 0 40px 0;
  }
}
.cid-vkOIR9lQgI .content-wrap .card {
  padding: 0;
  justify-content: flex-end;
}
.cid-vkOIR9lQgI .label-wrapper {
  margin-bottom: 20px;
}
.cid-vkOIR9lQgI .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background-color: #e1e1e1;
  padding: 7px 14px 6px;
}
.cid-vkOIR9lQgI .label-wrapper .label-wrap .marker-wrap {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
  background-color: #8b7961;
}
.cid-vkOIR9lQgI .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vkOIR9lQgI .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vkOIR9lQgI .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vkOIR9lQgI .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vkOIR9lQgI .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vkOIR9lQgI .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
  width: 100%;
}
.cid-vkOIR9lQgI .mbr-section-btn .btn {
  width: 100%;
}
.cid-vkOIR9lQgI .items-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9lQgI .items-wrapper .item {
  padding: 0;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-vkOIR9lQgI .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vkOIR9lQgI .items-wrapper .item:hover .item-wrapper .item-img img,
.cid-vkOIR9lQgI .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: scale(1.1);
}
.cid-vkOIR9lQgI .items-wrapper .item .item-wrapper {
  margin-right: 8px;
}
.cid-vkOIR9lQgI .items-wrapper .item .item-wrapper .card-box {
  background-color: #eaeaea;
  padding: 2px 12px;
  border: 1px solid #dedede;
}
@media (max-width: 992px) {
  .cid-vkOIR9lQgI .items-wrapper .item .item-wrapper .card-box {
    padding: 2px 12px 4px;
  }
}
.cid-vkOIR9lQgI .items-wrapper .item .item-wrapper .card-box .card-label-wrapper .card-label-wrap {
  display: inline-flex;
  gap: 16px;
  align-items: center;
}
.cid-vkOIR9lQgI .items-wrapper .item .item-wrapper .card-box .card-label-wrapper .card-label-wrap .marker-wrap {
  width: 12px;
  height: 12px;
  min-width: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #8b7961;
}
.cid-vkOIR9lQgI .items-wrapper .item .item-wrapper .card-box .card-label-wrapper .card-label-wrap .marker-wrap .circle-wrap {
  background-color: #eaeaea;
  width: 6px;
  height: 6px;
  border-radius: 100%;
}
.cid-vkOIR9lQgI .items-wrapper .item .item-wrapper .card-box .card-label-wrapper .card-label-wrap .item-label {
  margin-bottom: 0;
}
.cid-vkOIR9lQgI .items-wrapper .item .item-wrapper .item-img {
  overflow: hidden;
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
.cid-vkOIR9lQgI .items-wrapper .item .item-wrapper .item-img img {
  width: 100%;
  height: 286px;
  object-fit: cover;
  transition: all 0.3s ease;
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-vkOIR9lQgI .items-wrapper .item .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-vkOIR9lQgI .items-wrapper .item .item-wrapper .item-title {
  padding: 12px 12px 0;
  margin-bottom: 0;
}
.cid-vkOIR9lQgI .items-wrapper .item .item-wrapper .item-text {
  padding: 8px 12px 0;
  margin-bottom: 0;
}
.cid-vkOIR9lQgI .items-wrapper .item .card_2 .item-img img {
  height: 425px;
}
@media (max-width: 992px) {
  .cid-vkOIR9lQgI .items-wrapper .item .card_2 .item-img img {
    height: 300px;
  }
}
.cid-vkOIR9lQgI .btn-wrapper {
  margin-top: 2rem;
}
.cid-vkOIR9lQgI .mbr-label {
  color: #686868;
}
.cid-vkOIR9lQgI .mbr-section-title {
  color: #080a10;
}
.cid-vkOIR9lQgI .mbr-text {
  color: #686868;
}
.cid-vkOIR9lQgI .item-label {
  color: #686868;
}
.cid-vkOIR9lQgI .item-title {
  color: #080a10;
}
.cid-vkOIR9lQgI .item-text {
  color: #5e5e5e;
}
.cid-vkOIR9mXlb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eaeaea;
  overflow: hidden;
}
.cid-vkOIR9mXlb .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9mXlb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR9mXlb .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9mXlb .content-wrapper .content {
  padding: 0;
}
.cid-vkOIR9mXlb .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #ffffff;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR9mXlb .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9mXlb .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR9mXlb .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR9mXlb .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9mXlb .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR9mXlb .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR9mXlb .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9mXlb .content-wrap {
  position: relative;
  z-index: 1;
  margin: 0 0 80px 0;
}
@media (max-width: 992px) {
  .cid-vkOIR9mXlb .content-wrap {
    margin: 0 0 40px 0;
  }
}
.cid-vkOIR9mXlb .content-wrap .card {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-vkOIR9mXlb .label-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vkOIR9mXlb .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background-color: #e1e1e1;
  padding: 7px 14px 6px;
}
.cid-vkOIR9mXlb .label-wrapper .label-wrap .marker-wrap {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
  background-color: #8b7961;
}
.cid-vkOIR9mXlb .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vkOIR9mXlb .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vkOIR9mXlb .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vkOIR9mXlb .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vkOIR9mXlb .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vkOIR9mXlb .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vkOIR9mXlb .items-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9mXlb .items-wrapper .item {
  padding: 0;
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .cid-vkOIR9mXlb .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vkOIR9mXlb .items-wrapper .item:nth-child(2n) {
  padding-top: 160px;
}
@media (max-width: 1440px) {
  .cid-vkOIR9mXlb .items-wrapper .item:nth-child(2n) {
    padding-top: 80px;
  }
}
@media (max-width: 992px) {
  .cid-vkOIR9mXlb .items-wrapper .item:nth-child(2n) {
    padding-top: 0;
  }
}
.cid-vkOIR9mXlb .items-wrapper .item .item-wrapper {
  height: 100%;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-vkOIR9mXlb .items-wrapper .item .item-wrapper {
    padding-right: 0;
  }
}
.cid-vkOIR9mXlb .items-wrapper .item .item-wrapper .frame-wrapper {
  display: flex;
  margin-bottom: -1px;
  will-change: transform;
  position: relative;
  z-index: 1;
}
.cid-vkOIR9mXlb .items-wrapper .item .item-wrapper .frame-wrapper .cross-section {
  width: 24px;
  height: 24px;
}
.cid-vkOIR9mXlb .items-wrapper .item .item-wrapper .frame-wrapper .cross_1 {
  background-image: linear-gradient(135deg, transparent 45%, #ffffff 45%);
}
.cid-vkOIR9mXlb .items-wrapper .item .item-wrapper .frame-wrapper .cross_2 {
  background-image: linear-gradient(225deg, transparent 45%, #ffffff 45%);
}
.cid-vkOIR9mXlb .items-wrapper .item .item-wrapper .frame-wrapper .cross_3 {
  background-image: linear-gradient(315deg, transparent 45%, #ffffff 45%);
}
.cid-vkOIR9mXlb .items-wrapper .item .item-wrapper .frame-wrapper .frame-wrap {
  width: 100%;
  background-color: #ffffff;
  margin: 0 -1px;
}
.cid-vkOIR9mXlb .items-wrapper .item .item-wrapper .frame_2 {
  margin-top: -1px;
  margin-bottom: 0;
}
.cid-vkOIR9mXlb .items-wrapper .item .item-wrapper .frame_2 .frame-wrap {
  margin: 0 -1px 0 0;
}
.cid-vkOIR9mXlb .items-wrapper .item .item-wrapper .card-box {
  background-color: #ffffff;
  padding: 1px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  will-change: transform;
}
@media (max-width: 992px) {
  .cid-vkOIR9mXlb .items-wrapper .item .item-wrapper .card-box {
    min-height: auto;
  }
}
.cid-vkOIR9mXlb .items-wrapper .item .item-wrapper .card-box .card-label-wrapper {
  margin-bottom: 20px;
}
.cid-vkOIR9mXlb .items-wrapper .item .item-wrapper .card-box .card-label-wrapper .card-label-wrap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}
.cid-vkOIR9mXlb .items-wrapper .item .item-wrapper .card-box .card-label-wrapper .card-label-wrap .marker-wrap {
  width: 12px;
  height: 12px;
  min-width: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #8b7961;
}
.cid-vkOIR9mXlb .items-wrapper .item .item-wrapper .card-box .card-label-wrapper .card-label-wrap .marker-wrap .circle-wrap {
  background-color: #ffffff;
  width: 6px;
  height: 6px;
  border-radius: 100%;
}
.cid-vkOIR9mXlb .items-wrapper .item .item-wrapper .card-box .card-label-wrapper .card-label-wrap .item-label {
  margin-bottom: 0;
}
.cid-vkOIR9mXlb .items-wrapper .item .item-wrapper .card-box .item-content .item-number {
  margin-bottom: 6px;
}
.cid-vkOIR9mXlb .items-wrapper .item .item-wrapper .card-box .item-content .item-title {
  margin-bottom: 22px;
}
.cid-vkOIR9mXlb .items-wrapper .item .item-wrapper .card-box .item-content .text-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #e1e1e1;
  padding-top: 22px;
}
.cid-vkOIR9mXlb .items-wrapper .item .item-wrapper .card-box .item-content .text-wrap .item-text {
  margin-bottom: 0;
}
.cid-vkOIR9mXlb .items-wrapper .item .item-wrapper .card-box .item-content .text-wrap .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 40px;
}
.cid-vkOIR9mXlb .mbr-label {
  color: #686868;
}
.cid-vkOIR9mXlb .mbr-section-title {
  color: #080a10;
}
.cid-vkOIR9mXlb .mbr-section-subtitle {
  color: #5e5e5e;
}
.cid-vkOIR9mXlb .mbr-text {
  color: #686868;
}
.cid-vkOIR9mXlb .item-label {
  color: #686868;
}
.cid-vkOIR9mXlb .item-number {
  color: #080a10;
}
.cid-vkOIR9mXlb .item-title {
  color: #686868;
}
.cid-vkOIR9mXlb .item-text {
  color: #5e5e5e;
}
.cid-vkOIR9nWRL .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9nWRL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../images/eb9GASvY0555.jpg");
}
.cid-vkOIR9nWRL .image-wrapper {
  height: 400px;
}
@media (max-width: 992px) {
  .cid-vkOIR9nWRL .image-wrapper {
    min-height: 300px;
  }
}
.cid-vkOIR9n7Df {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eaeaea;
  overflow: hidden;
}
.cid-vkOIR9n7Df .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9n7Df .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR9n7Df .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9n7Df .content-wrapper .content {
  padding: 0;
}
.cid-vkOIR9n7Df .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #ffffff;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR9n7Df .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9n7Df .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR9n7Df .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR9n7Df .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9n7Df .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR9n7Df .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR9n7Df .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9n7Df .content-wrap {
  position: relative;
  z-index: 1;
  margin: 0 0 80px 0;
}
@media (max-width: 992px) {
  .cid-vkOIR9n7Df .content-wrap {
    margin: 0 0 40px 0;
  }
}
.cid-vkOIR9n7Df .content-wrap .card {
  padding: 0;
  justify-content: flex-end;
}
.cid-vkOIR9n7Df .label-wrapper {
  margin-bottom: 20px;
}
.cid-vkOIR9n7Df .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background-color: #e1e1e1;
  padding: 7px 14px 6px;
}
.cid-vkOIR9n7Df .label-wrapper .label-wrap .marker-wrap {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
  background-color: #8b7961;
}
.cid-vkOIR9n7Df .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vkOIR9n7Df .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vkOIR9n7Df .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vkOIR9n7Df .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vkOIR9n7Df .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vkOIR9n7Df .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
  width: 100%;
}
.cid-vkOIR9n7Df .mbr-section-btn .btn {
  width: 100%;
}
.cid-vkOIR9n7Df .card-box {
  position: relative;
  z-index: 1;
}
.cid-vkOIR9n7Df .card-box .mbr-figure {
  margin-right: -1px;
}
.cid-vkOIR9n7Df .mbr-label {
  color: #686868;
}
.cid-vkOIR9n7Df .mbr-section-title {
  color: #080a10;
}
.cid-vkOIR9n7Df .mbr-text {
  color: #686868;
}
.cid-vkOIR9ncxq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eaeaea;
  overflow: hidden;
}
.cid-vkOIR9ncxq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9ncxq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR9ncxq .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9ncxq .content-wrapper .content {
  padding: 0;
}
.cid-vkOIR9ncxq .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #ffffff;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR9ncxq .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9ncxq .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR9ncxq .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR9ncxq .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9ncxq .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR9ncxq .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR9ncxq .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9ncxq .content-wrap {
  position: relative;
  z-index: 1;
  margin: 0;
}
.cid-vkOIR9ncxq .content-wrap .card {
  padding: 0;
}
.cid-vkOIR9ncxq .title-wrapper {
  margin-bottom: 40px;
}
.cid-vkOIR9ncxq .label-wrapper {
  margin-bottom: 20px;
}
.cid-vkOIR9ncxq .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background-color: #e1e1e1;
  padding: 7px 14px 6px;
}
.cid-vkOIR9ncxq .label-wrapper .label-wrap .marker-wrap {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
  background-color: #8b7961;
}
.cid-vkOIR9ncxq .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vkOIR9ncxq .title-wrap {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vkOIR9ncxq .title-wrap {
    margin-bottom: 20px;
  }
}
.cid-vkOIR9ncxq .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-vkOIR9ncxq .title-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vkOIR9ncxq .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vkOIR9ncxq .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vkOIR9ncxq .main-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
  width: 100%;
}
.cid-vkOIR9ncxq .main-btn .btn {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-vkOIR9ncxq .main-btn .btn {
    width: 100%;
  }
}
.cid-vkOIR9ncxq .image-wrapper {
  margin-right: -1px;
}
.cid-vkOIR9ncxq .image-wrapper img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vkOIR9ncxq .image-wrapper img {
    height: 300px;
  }
}
.cid-vkOIR9ncxq .mbr-label {
  color: #686868;
}
.cid-vkOIR9ncxq .mbr-section-title {
  color: #080a10;
}
.cid-vkOIR9ncxq .mbr-section-subtitle {
  color: #5e5e5e;
}
.cid-vkOIR9ncxq .mbr-text {
  color: #686868;
}
.cid-vkOIR9ored {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #eaeaea;
}
.cid-vkOIR9ored .content-wrapper {
  position: relative;
}
.cid-vkOIR9ored .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #ffffff;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR9ored .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9ored .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR9ored .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR9ored .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9ored .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR9ored .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR9ored .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9ored .item:focus,
.cid-vkOIR9ored span:focus {
  outline: none;
}
.cid-vkOIR9ored .content-wrap {
  overflow: hidden;
}
.cid-vkOIR9ored .item {
  padding: 10px 0;
  color: #080a10;
  font-weight: 700;
}
.cid-vkOIR9okir {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #22090b;
  overflow: hidden;
}
.cid-vkOIR9okir .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9okir .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR9okir .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9okir .content-wrapper .content {
  padding: 0;
}
.cid-vkOIR9okir .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #341315;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR9okir .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9okir .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR9okir .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR9okir .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9okir .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR9okir .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR9okir .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9okir .content-wrap {
  position: relative;
  z-index: 1;
  margin: 0;
}
.cid-vkOIR9okir .content-wrap .card {
  padding: 0;
}
.cid-vkOIR9okir .label-wrapper {
  margin-bottom: 20px;
}
.cid-vkOIR9okir .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background-color: #341315;
  padding: 7px 14px 6px;
}
.cid-vkOIR9okir .label-wrapper .label-wrap .marker-wrap {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
  background-color: #efd9be;
}
.cid-vkOIR9okir .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vkOIR9okir .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-vkOIR9okir .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vkOIR9okir .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vkOIR9okir .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vkOIR9okir .text-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 3rem;
}
@media (max-width: 992px) {
  .cid-vkOIR9okir .text-wrapper {
    padding-bottom: 0;
  }
}
.cid-vkOIR9okir .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vkOIR9okir .text-wrapper .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
  width: 100%;
}
.cid-vkOIR9okir .text-wrapper .mbr-section-btn .btn {
  width: 100%;
}
.cid-vkOIR9okir .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 340px;
  max-width: 340px;
}
@media (max-width: 768px) {
  .cid-vkOIR9okir .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vkOIR9okir .embla__slide .slide-content {
  width: 100%;
}
.cid-vkOIR9okir .embla__slide .slide-content .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  min-height: 395px;
  clip-path: polygon(24px 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 24px);
}
@media (max-width: 992px) {
  .cid-vkOIR9okir .embla__slide .slide-content .item-wrapper {
    min-height: 350px;
  }
}
.cid-vkOIR9okir .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vkOIR9okir .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, transparent 0%, #22090b 150%);
  z-index: 1;
  pointer-events: none;
}
.cid-vkOIR9okir .embla__slide .slide-content .item-wrapper .card-box {
  position: relative;
  z-index: 1;
  padding: 14px 16px;
}
@media (max-width: 992px) {
  .cid-vkOIR9okir .embla__slide .slide-content .item-wrapper .card-box {
    padding: 24px;
  }
}
.cid-vkOIR9okir .embla__slide .slide-content .item-wrapper .card-box .marker-wrapper {
  margin-bottom: 12px;
}
.cid-vkOIR9okir .embla__slide .slide-content .item-wrapper .card-box .marker-wrapper .marker-wrap {
  width: 12px;
  height: 12px;
  min-width: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #8b7961;
}
.cid-vkOIR9okir .embla__slide .slide-content .item-wrapper .card-box .marker-wrapper .marker-wrap .circle-wrap {
  background-color: #ffffff;
  width: 6px;
  height: 6px;
  border-radius: 100%;
}
.cid-vkOIR9okir .embla__slide .slide-content .item-wrapper .card-box .item-name {
  margin-bottom: 2px;
}
.cid-vkOIR9okir .embla__slide .slide-content .item-wrapper .card-box .item-role {
  margin-bottom: 0;
}
.cid-vkOIR9okir .embla__button--next,
.cid-vkOIR9okir .embla__button--prev {
  display: flex;
}
.cid-vkOIR9okir .embla__button {
  bottom: 0;
  width: 20px;
  height: 20px;
  font-size: 20px;
  background-color: transparent !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100% !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5 !important;
}
.cid-vkOIR9okir .embla__button:hover {
  opacity: 1 !important;
}
.cid-vkOIR9okir .embla__button:disabled {
  opacity: 0.2 !important;
}
.cid-vkOIR9okir .embla__button.embla__button--prev {
  right: 34px;
}
.cid-vkOIR9okir .embla__button.embla__button--next {
  right: 0;
}
.cid-vkOIR9okir .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 3rem !important;
}
@media (max-width: 992px) {
  .cid-vkOIR9okir .embla {
    margin-top: 40px;
  }
}
.cid-vkOIR9okir .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin-right: -1px;
  mask-image: linear-gradient(to right, transparent 0%, #000000 12.5%, #000000 87.5%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000000 12.5%, #000000 87.5%, transparent 100%);
}
@media (max-width: 768px) {
  .cid-vkOIR9okir .embla__viewport {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-vkOIR9okir .embla__viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }
}
.cid-vkOIR9okir .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vkOIR9okir .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vkOIR9okir .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vkOIR9okir .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vkOIR9okir .mbr-label {
  color: #ffffff;
}
.cid-vkOIR9okir .mbr-section-title {
  color: #FFFFFF;
}
.cid-vkOIR9okir .mbr-section-subtitle {
  color: #9e9e9e;
}
.cid-vkOIR9okir .mbr-text {
  color: #9e9e9e;
}
.cid-vkOIR9okir .item-name {
  color: #ffffff;
}
.cid-vkOIR9okir .item-role {
  color: #FFFFFF;
}
.cid-vkOIR9okir .mbr-label,
.cid-vkOIR9okir .label-wrapper {
  color: #FFFFFF;
}
.cid-vkOIR9okir .item-name,
.cid-vkOIR9okir .marker-wrapper {
  color: #FFFFFF;
}
.cid-vkOIR9pLji {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow-anchor: none;
  background-color: #eaeaea;
  overflow: hidden;
}
.cid-vkOIR9pLji .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9pLji .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR9pLji .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9pLji .content-wrapper .content {
  padding: 0;
}
.cid-vkOIR9pLji .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #ffffff;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR9pLji .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9pLji .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR9pLji .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR9pLji .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9pLji .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR9pLji .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR9pLji .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9pLji .content-wrap {
  position: relative;
  z-index: 1;
  margin: 0;
}
.cid-vkOIR9pLji .content-wrap .card {
  padding: 0;
}
.cid-vkOIR9pLji .title-wrapper {
  margin-bottom: 40px;
}
.cid-vkOIR9pLji .label-wrapper {
  margin-bottom: 20px;
}
.cid-vkOIR9pLji .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background-color: #e1e1e1;
  padding: 7px 14px 6px;
}
.cid-vkOIR9pLji .label-wrapper .label-wrap .marker-wrap {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
  background-color: #8b7961;
}
.cid-vkOIR9pLji .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vkOIR9pLji .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-vkOIR9pLji .title-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vkOIR9pLji .panel-group {
  margin-right: -1px;
}
.cid-vkOIR9pLji .panel-group .card {
  position: relative;
  padding: 0;
  border: none;
  background-color: transparent;
  border-radius: 0 !important;
  margin-top: 8px;
  will-change: transform;
}
.cid-vkOIR9pLji .panel-group .card:first-child {
  margin-top: 0;
}
.cid-vkOIR9pLji .panel-group .card .frame-wrapper {
  display: flex;
  margin-bottom: -1px;
  will-change: transform;
  position: relative;
  z-index: 1;
}
.cid-vkOIR9pLji .panel-group .card .frame-wrapper .cross-section {
  width: 24px;
  height: 24px;
}
.cid-vkOIR9pLji .panel-group .card .frame-wrapper .cross_1 {
  background-image: linear-gradient(135deg, transparent 45%, #ffffff 45%);
}
.cid-vkOIR9pLji .panel-group .card .frame-wrapper .cross_2 {
  background-image: linear-gradient(225deg, transparent 45%, #ffffff 45%);
}
.cid-vkOIR9pLji .panel-group .card .frame-wrapper .cross_3 {
  background-image: linear-gradient(315deg, transparent 45%, #ffffff 45%);
}
.cid-vkOIR9pLji .panel-group .card .frame-wrapper .frame-wrap {
  width: 100%;
  background-color: #ffffff;
  margin: 0 -1px;
}
.cid-vkOIR9pLji .panel-group .card .frame_2 {
  margin-top: -1px;
  margin-bottom: 0;
}
.cid-vkOIR9pLji .panel-group .card .frame_2 .frame-wrap {
  margin: 0 -1px 0 0;
}
.cid-vkOIR9pLji .panel-group .card .card-header {
  background-color: #ffffff;
  will-change: transform;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-vkOIR9pLji .panel-group .card .card-header .panel-title {
  display: flex;
  gap: 20px;
  padding: 1px 24px 0;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-vkOIR9pLji .panel-group .card .card-header .panel-title {
    gap: 0;
  }
}
.cid-vkOIR9pLji .panel-group .card .card-header .panel-title .title-wrap {
  width: 100%;
}
.cid-vkOIR9pLji .panel-group .card .card-header .panel-title .title-wrap .number-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.cid-vkOIR9pLji .panel-group .card .card-header .panel-title .title-wrap .number-wrapper .number-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 13px;
  border: 1px dashed #c7c7c7;
}
.cid-vkOIR9pLji .panel-group .card .card-header .panel-title .title-wrap .number-wrapper .number-wrap .marker-wrap {
  width: 12px;
  height: 12px;
  min-width: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #8b7961;
  transition: all 0.3s ease;
}
.cid-vkOIR9pLji .panel-group .card .card-header .panel-title .title-wrap .number-wrapper .number-wrap .marker-wrap .circle-wrap {
  background-color: #ffffff;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  transition: all 0.3s ease;
}
.cid-vkOIR9pLji .panel-group .card .card-header .panel-title .title-wrap .number-wrapper::after {
  content: '';
  width: 100%;
  border-top: 1px dashed #c7c7c7;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .cid-vkOIR9pLji .panel-group .card .card-header .panel-title .title-wrap .number-wrapper::after {
    content: none;
  }
}
.cid-vkOIR9pLji .panel-group .card .card-header .panel-title .title-wrap .panel-title-edit {
  margin-bottom: 0;
  width: 100%;
  font-size: 150%;
}
@media (max-width: 992px) {
  .cid-vkOIR9pLji .panel-group .card .card-header .panel-title .title-wrap .panel-title-edit {
    line-height: 1.5;
  }
}
.cid-vkOIR9pLji .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border: 1px solid #9e9e9e;
  border-radius: 100%;
}
.cid-vkOIR9pLji .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  color: #686868;
}
.cid-vkOIR9pLji .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-vkOIR9pLji .panel-group .card .panel-collapse .panel-body {
  padding: 12px 24px 12px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.cid-vkOIR9pLji .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  width: 75%;
  display: inline-block;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .cid-vkOIR9pLji .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-vkOIR9pLji .panel-group .card .panel-collapse.show .panel-body .panel-text {
  transform: translateY(0);
  opacity: 1;
}
.cid-vkOIR9pLji .mbr-label {
  color: #686868;
}
.cid-vkOIR9pLji .mbr-section-title {
  color: #080a10;
}
.cid-vkOIR9pLji .mbr-section-subtitle {
  color: #5e5e5e;
}
.cid-vkOIR9pLji .panel-number {
  color: #686868;
}
.cid-vkOIR9pLji .panel-title-edit {
  color: #080a10;
}
.cid-vkOIR9pLji .panel-text {
  color: #686868;
}
.cid-vkOIR9ptWC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #22090b;
  overflow: hidden;
}
.cid-vkOIR9ptWC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9ptWC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR9ptWC .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9ptWC .content-wrapper .content {
  padding: 0;
}
.cid-vkOIR9ptWC .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #341315;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR9ptWC .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9ptWC .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR9ptWC .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR9ptWC .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9ptWC .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR9ptWC .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR9ptWC .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9ptWC .content-wrap {
  position: relative;
  z-index: 1;
  margin: 0 0 80px 0;
}
@media (max-width: 992px) {
  .cid-vkOIR9ptWC .content-wrap {
    margin: 0 0 40px 0;
  }
}
.cid-vkOIR9ptWC .content-wrap .card {
  padding: 0;
}
.cid-vkOIR9ptWC .label-wrapper {
  margin-bottom: 20px;
}
.cid-vkOIR9ptWC .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background-color: #341315;
  padding: 7px 14px 6px;
}
.cid-vkOIR9ptWC .label-wrapper .label-wrap .marker-wrap {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
  background-color: #efd9be;
}
.cid-vkOIR9ptWC .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vkOIR9ptWC .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vkOIR9ptWC .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vkOIR9ptWC .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vkOIR9ptWC .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vkOIR9ptWC .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vkOIR9ptWC .desc-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vkOIR9ptWC .desc-wrapper .mbr-desc {
    margin-top: 40px;
  }
}
.cid-vkOIR9ptWC .mbr-section-btn {
  width: 100%;
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-vkOIR9ptWC .mbr-section-btn .btn {
  width: 100%;
}
.cid-vkOIR9ptWC .mbr-label,
.cid-vkOIR9ptWC .label-wrapper {
  color: #FFFFFF;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vkOIR9ptWC .mbr-label,
  .cid-vkOIR9ptWC .label-wrapper {
    text-align: left;
  }
}
.cid-vkOIR9ptWC .mbr-section-title {
  color: #FFFFFF;
}
.cid-vkOIR9ptWC .mbr-section-subtitle {
  color: #9e9e9e;
}
.cid-vkOIR9ptWC .mbr-text {
  color: #9e9e9e;
}
.cid-vkOIR9ptWC .mbr-desc {
  color: #9e9e9e;
}
.cid-vkOIR9q2iG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bca88e;
  overflow: hidden;
}
.cid-vkOIR9q2iG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9q2iG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR9q2iG .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9q2iG .content-wrapper .content {
  padding: 0;
}
.cid-vkOIR9q2iG .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #efd9be;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR9q2iG .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9q2iG .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR9q2iG .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR9q2iG .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9q2iG .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR9q2iG .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR9q2iG .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9q2iG .content-wrap {
  position: relative;
  z-index: 1;
  margin: 0;
}
.cid-vkOIR9q2iG .content-wrap .card {
  padding: 0;
}
.cid-vkOIR9q2iG .label-wrapper {
  margin-bottom: 20px;
}
.cid-vkOIR9q2iG .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background-color: #8b7961;
  padding: 7px 14px 6px;
}
.cid-vkOIR9q2iG .label-wrapper .label-wrap .marker-wrap {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
  background-color: #ffffff;
}
.cid-vkOIR9q2iG .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vkOIR9q2iG .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-vkOIR9q2iG .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vkOIR9q2iG .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vkOIR9q2iG .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vkOIR9q2iG .form-wrap {
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-vkOIR9q2iG .form-wrap {
    margin-top: 40px;
  }
}
.cid-vkOIR9q2iG .form-wrap .dragArea.row {
  margin: 0 -9.6px;
}
.cid-vkOIR9q2iG .form-wrap .dragArea.row .form-group {
  margin-bottom: 0 !important;
}
.cid-vkOIR9q2iG .form-wrap .dragArea.row .form-group .form-control-label {
  margin-bottom: 6px;
  padding-left: 14px;
}
.cid-vkOIR9q2iG .form-wrap .dragArea.row .form-group .form-control {
  padding: 14px 14px 24px;
  background-color: transparent;
  border: none !important;
  border-bottom: 1px solid #000000 !important;
  box-shadow: none;
  margin-bottom: 30px;
  border-radius: 0 !important;
}
.cid-vkOIR9q2iG .form-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
  opacity: 0.5;
}
.cid-vkOIR9q2iG .form-wrap .dragArea.row .form-group .form-control:hover,
.cid-vkOIR9q2iG .form-wrap .dragArea.row .form-group .form-control:focus {
  border: none !important;
  border-bottom: 1px solid #000000 !important;
}
.cid-vkOIR9q2iG .form-wrap .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-vkOIR9q2iG .form-wrap .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-vkOIR9q2iG .form-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: #000000;
  border-color: #000000;
}
.cid-vkOIR9q2iG .form-wrap .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-vkOIR9q2iG .form-wrap .dragArea.row .mbr-section-btn .btn {
  margin-bottom: 0;
  margin-right: 0;
  margin-top: 0;
  min-height: auto;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-vkOIR9q2iG .form-wrap .dragArea.row .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-vkOIR9q2iG .mbr-label {
  color: #ffffff;
}
.cid-vkOIR9q2iG .mbr-section-title {
  color: #000000;
}
.cid-vkOIR9q2iG .mbr-text {
  color: #ffffff;
}
.cid-vkOIR9q2iG label {
  color: #ffffff;
}
.cid-vkOIR9q2iG .mbr-label,
.cid-vkOIR9q2iG .label-wrapper {
  color: #FFFFFF;
}
.cid-vkOIR9q2iG .mbr-text,
.cid-vkOIR9q2iG .mbr-section-btn {
  color: #000000;
}
.cid-vkOIR9q2iG .form-control-label {
  color: #000000;
}
.cid-vkOIR9qqQd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #22090b;
  overflow: hidden;
}
.cid-vkOIR9qqQd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9qqQd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR9qqQd .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9qqQd .content-wrapper .content {
  padding: 0;
}
.cid-vkOIR9qqQd .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #341315;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR9qqQd .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9qqQd .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vkOIR9qqQd .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vkOIR9qqQd .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9qqQd .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vkOIR9qqQd .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vkOIR9qqQd .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9qqQd .content-wrap {
  position: relative;
  z-index: 1;
  margin: 0;
}
.cid-vkOIR9qqQd .content-wrap .card {
  padding: 0;
}
.cid-vkOIR9qqQd .title-wrapper {
  margin-bottom: 40px;
}
.cid-vkOIR9qqQd .label-wrapper {
  margin-bottom: 20px;
}
.cid-vkOIR9qqQd .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background-color: #341315;
  padding: 7px 14px 6px;
}
.cid-vkOIR9qqQd .label-wrapper .label-wrap .marker-wrap {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
  background-color: #efd9be;
}
.cid-vkOIR9qqQd .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vkOIR9qqQd .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-vkOIR9qqQd .title-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vkOIR9qqQd .items-wrapper {
  margin-right: -1px;
}
.cid-vkOIR9qqQd .items-wrapper .item {
  margin-bottom: 8px;
}
.cid-vkOIR9qqQd .items-wrapper .item:last-child {
  margin-bottom: 0;
}
.cid-vkOIR9qqQd .items-wrapper .item .item-wrapper {
  height: 100%;
}
.cid-vkOIR9qqQd .items-wrapper .item .item-wrapper .frame-wrapper {
  display: flex;
  margin-bottom: -1px;
  will-change: transform;
  position: relative;
  z-index: 1;
}
.cid-vkOIR9qqQd .items-wrapper .item .item-wrapper .frame-wrapper .cross-section {
  width: 24px;
  height: 24px;
}
.cid-vkOIR9qqQd .items-wrapper .item .item-wrapper .frame-wrapper .cross_1 {
  background-image: linear-gradient(135deg, transparent 45%, #341315 45%);
}
.cid-vkOIR9qqQd .items-wrapper .item .item-wrapper .frame-wrapper .cross_2 {
  background-image: linear-gradient(225deg, transparent 45%, #341315 45%);
}
.cid-vkOIR9qqQd .items-wrapper .item .item-wrapper .frame-wrapper .cross_3 {
  background-image: linear-gradient(315deg, transparent 45%, #341315 45%);
}
.cid-vkOIR9qqQd .items-wrapper .item .item-wrapper .frame-wrapper .frame-wrap {
  width: 100%;
  background-color: #341315;
  margin: 0 -1px;
}
.cid-vkOIR9qqQd .items-wrapper .item .item-wrapper .frame_2 {
  margin-top: -1px;
  margin-bottom: 0;
}
.cid-vkOIR9qqQd .items-wrapper .item .item-wrapper .frame_2 .frame-wrap {
  margin: 0 -1px 0 0;
}
.cid-vkOIR9qqQd .items-wrapper .item .item-wrapper .card-box {
  padding: 1px 24px;
  background-color: #341315;
  position: relative;
  z-index: 2;
  height: 100%;
  will-change: transform;
}
.cid-vkOIR9qqQd .items-wrapper .item .item-wrapper .card-box .number-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.cid-vkOIR9qqQd .items-wrapper .item .item-wrapper .card-box .number-wrapper .number-wrap {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 7px 14px 6px;
  border: 1px dashed #686868;
}
.cid-vkOIR9qqQd .items-wrapper .item .item-wrapper .card-box .number-wrapper .number-wrap .marker-wrap {
  width: 12px;
  height: 12px;
  min-width: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #efd9be;
}
.cid-vkOIR9qqQd .items-wrapper .item .item-wrapper .card-box .number-wrapper .number-wrap .marker-wrap .circle-wrap {
  background-color: #341315;
  width: 6px;
  height: 6px;
  border-radius: 100%;
}
.cid-vkOIR9qqQd .items-wrapper .item .item-wrapper .card-box .number-wrapper .number-wrap .item-number {
  margin-bottom: 0;
  white-space: nowrap;
}
.cid-vkOIR9qqQd .items-wrapper .item .item-wrapper .card-box .number-wrapper::after {
  content: '';
  width: 100%;
  border-top: 1px dashed #686868;
}
@media (max-width: 992px) {
  .cid-vkOIR9qqQd .items-wrapper .item .item-wrapper .card-box .number-wrapper::after {
    content: none;
  }
}
.cid-vkOIR9qqQd .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 0;
  font-size: 150%;
}
@media (max-width: 992px) {
  .cid-vkOIR9qqQd .items-wrapper .item .item-wrapper .card-box .item-title {
    line-height: 1.5;
  }
}
.cid-vkOIR9qqQd .mbr-label {
  color: #ffffff;
}
.cid-vkOIR9qqQd .mbr-section-title {
  color: #ffffff;
}
.cid-vkOIR9qqQd .mbr-section-subtitle {
  color: #9e9e9e;
}
.cid-vkOIR9qqQd .item-number {
  color: #9e9e9e;
}
.cid-vkOIR9qqQd .item-title {
  color: #ffffff;
}
.cid-vkOIR9qqQd .mbr-label,
.cid-vkOIR9qqQd .label-wrapper {
  color: #FFFFFF;
}
.cid-vkOIR9qqQd .item-title,
.cid-vkOIR9qqQd .item-btn {
  color: #FFFFFF;
}
.cid-vkOIR9qqQd .mbr-section-title,
.cid-vkOIR9qqQd .main-btn {
  color: #FFFFFF;
}
.cid-vkOIR9rSPP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #22090b;
  overflow: hidden;
}
.cid-vkOIR9rSPP .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkOIR9rSPP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkOIR9rSPP .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vkOIR9rSPP .content-wrapper .content {
  padding: 0;
}
.cid-vkOIR9rSPP .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #341315;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vkOIR9rSPP .content-wrapper .border_1 {
  left: 0;
}
.cid-vkOIR9rSPP .content-wrapper .border_3 {
  left: 50%;
}
.cid-vkOIR9rSPP .content-wrapper .border_5 {
  left: 100%;
}
.cid-vkOIR9rSPP .content-wrap {
  position: relative;
  z-index: 1;
  margin: 0;
}
.cid-vkOIR9rSPP .content-wrap .card {
  padding: 0;
}
.cid-vkOIR9rSPP .title-wrap {
  padding: 0 12px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-vkOIR9rSPP .title-wrap {
    margin-bottom: 20px;
  }
}
.cid-vkOIR9rSPP .title-wrap .mbr-label {
  margin-bottom: 20px;
}
.cid-vkOIR9rSPP .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-vkOIR9rSPP .nav-wrapper {
  padding: 0 12px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px 10px;
  margin-bottom: 80px;
  border-bottom: 1px solid #341315;
  padding-bottom: 20px;
}
@media (max-width: 1200px) {
  .cid-vkOIR9rSPP .nav-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-vkOIR9rSPP .nav-wrapper {
    margin-bottom: 40px;
    grid-template-columns: 1fr;
  }
}
.cid-vkOIR9rSPP .nav-wrapper .nav-wrap {
  display: flex;
  gap: 24px;
}
.cid-vkOIR9rSPP .nav-wrapper .nav-wrap .marker-wrapper {
  display: inline-flex;
}
.cid-vkOIR9rSPP .nav-wrapper .nav-wrap .marker-wrapper .marker-wrap {
  width: 12px;
  height: 12px;
  min-width: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #d63614;
  margin-top: 3px;
}
.cid-vkOIR9rSPP .nav-wrapper .nav-wrap .marker-wrapper .marker-wrap .circle-wrap {
  background-color: #080a10;
  width: 6px;
  height: 6px;
  border-radius: 100%;
}
.cid-vkOIR9rSPP .nav-wrapper .nav-wrap .card-box .mbr-list-title {
  margin-bottom: 14px;
}
.cid-vkOIR9rSPP .nav-wrapper .nav-wrap .card-box .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vkOIR9rSPP .nav-wrapper .nav-wrap .card-box .list .item-wrap {
  margin-bottom: 6px;
  transition: all 0.3s ease-in-out;
}
.cid-vkOIR9rSPP .nav-wrapper .nav-wrap .card-box .list .item-wrap:hover,
.cid-vkOIR9rSPP .nav-wrapper .nav-wrap .card-box .list .item-wrap:focus {
  opacity: 0.5;
}
.cid-vkOIR9rSPP .nav-wrapper .nav-wrap .card-box .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vkOIR9rSPP .mbr-copy {
  padding: 0 12px;
  margin-bottom: 0;
  color: #9e9e9e;
  text-align: center;
}
.cid-vkOIR9rSPP .mbr-label {
  color: #9e9e9e;
}
.cid-vkOIR9rSPP .mbr-section-title {
  color: #ffffff;
}
.cid-vkOIR9rSPP .mbr-list-title {
  color: #9e9e9e;
}
.cid-vkOIR9rSPP .list {
  color: #ffffff;
}
