body {
  font-family: Space Grotesk;
}
.display-1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 3.5rem;
  line-height: 1.1285em;
  letter-spacing: .02em;
}
.display-1 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 3rem;
  line-height: 1.1666em;
  letter-spacing: .02em;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.33334em;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  line-height: 1.2058em;
  letter-spacing: .02em;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  line-height: 1.4em;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- 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: 2.8rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.45rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 22px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 22px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 22px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 22px;
}
.bg-primary {
  background-color: #d4af37 !important;
}
.bg-success {
  background-color: #0b1f3a !important;
}
.bg-info {
  background-color: #0b1f3a !important;
}
.bg-warning {
  background-color: #2c2c2c !important;
}
.bg-danger {
  background-color: #fafafa !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #d4af37 !important;
  border-color: #d4af37 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #947920 !important;
  border-color: #947920 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #947920 !important;
  border-color: #947920 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #d4af37 !important;
  border-color: #d4af37 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #947920 !important;
  border-color: #947920 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #947920 !important;
  border-color: #947920 !important;
}
.btn-info,
.btn-info:active {
  background-color: #0b1f3a !important;
  border-color: #0b1f3a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success,
.btn-success:active {
  background-color: #0b1f3a !important;
  border-color: #0b1f3a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #2c2c2c !important;
  border-color: #2c2c2c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #010101 !important;
  border-color: #010101 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #010101 !important;
  border-color: #010101 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d4af37;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #947920 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #d4af37 !important;
  border-color: #d4af37 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d4af37;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #947920 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #d4af37 !important;
  border-color: #d4af37 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0b1f3a;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #0b1f3a !important;
  border-color: #0b1f3a !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0b1f3a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #0b1f3a !important;
  border-color: #0b1f3a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #2c2c2c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #010101 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #2c2c2c !important;
  border-color: #2c2c2c !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.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: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #d4af37 !important;
}
.text-secondary {
  color: #d4af37 !important;
}
.text-success {
  color: #0b1f3a !important;
}
.text-info {
  color: #0b1f3a !important;
}
.text-warning {
  color: #2c2c2c !important;
}
.text-danger {
  color: #fafafa !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #886f1d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #886f1d !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #000000 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #c7c7c7 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
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: #d4af37;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #0b1f3a;
}
.alert-warning {
  background-color: #2c2c2c;
}
.alert-danger {
  background-color: #fafafa;
}
.mbr-gallery-filter li.active .btn {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #d4af37;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f8f2df;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #4d8bdd;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #4d8bdd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #dfdfdf;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.33334em;
  font-weight: 400;
}
.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: #d4af37 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.33334em;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #d4af37;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #d4af37;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #d4af37;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #d4af37;
  border-bottom-color: #d4af37;
}
.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: #d4af37 !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: #d4af37 !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='%23d4af37' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  height: 44px;
  padding: 12px 26px;
  box-shadow: none;
  background-image: linear-gradient(99deg, rgba(255, 255, 255, 0) 30%, #ffffff 100%), radial-gradient(circle at 50% 50%, #ffffff 0, rgba(255, 255, 255, 0) 70%);
  background-size: 100% 100%,90% 100%;
  background-position: 0 0, -1000% 0;
  background-repeat: no-repeat;
  transition: all 0.6s ease-out;
  color: #0b1f3a !important;
  border: none;
  font-weight: 400;
}
.mbr-section-btn .btn:hover,
.mbr-section-btn-main .btn:hover {
  background-position: 0 0,150% 0;
}
.mbr-section-btn .btn:hover .mbr-iconfont,
.mbr-section-btn-main .btn:hover .mbr-iconfont {
  margin-left: 15px;
  margin-right: 3px;
}
.mbr-section-btn .btn .mbr-iconfont,
.mbr-section-btn-main .btn .mbr-iconfont {
  margin-left: 18px;
  font-size: 16px;
  transition: all 0.6s ease-out;
}
.cid-uKDdntgv2o {
  z-index: 1000;
  width: 100%;
}
.cid-uKDdntgv2o nav.navbar {
  position: fixed;
}
.cid-uKDdntgv2o .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uKDdntgv2o .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uKDdntgv2o .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-uKDdntgv2o .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uKDdntgv2o .dropdown-item {
  border: none !important;
  background: #121212 !important;
}
.cid-uKDdntgv2o .dropdown-item:hover,
.cid-uKDdntgv2o .dropdown-item:focus {
  background: #fafafa !important;
  color: #d4af37 !important;
}
.cid-uKDdntgv2o .dropdown-item:hover span {
  color: white;
}
.cid-uKDdntgv2o .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKDdntgv2o .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKDdntgv2o .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKDdntgv2o .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKDdntgv2o .nav-link {
  position: relative;
}
.cid-uKDdntgv2o .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uKDdntgv2o .container {
    flex-wrap: nowrap;
  }
}
.cid-uKDdntgv2o .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uKDdntgv2o .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uKDdntgv2o .dropdown-menu,
.cid-uKDdntgv2o .navbar.opened {
  background: #121212 !important;
}
.cid-uKDdntgv2o .nav-item:focus,
.cid-uKDdntgv2o .nav-link:focus {
  outline: none;
}
.cid-uKDdntgv2o .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKDdntgv2o .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uKDdntgv2o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKDdntgv2o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKDdntgv2o .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKDdntgv2o .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKDdntgv2o .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(18, 18, 18, 0.9);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uKDdntgv2o .navbar.opened {
  transition: all 0.3s;
}
.cid-uKDdntgv2o .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 3rem;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uKDdntgv2o .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uKDdntgv2o .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKDdntgv2o .navbar.collapsed {
  justify-content: center;
}
.cid-uKDdntgv2o .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKDdntgv2o .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKDdntgv2o .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uKDdntgv2o .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKDdntgv2o .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKDdntgv2o .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-uKDdntgv2o .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKDdntgv2o .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKDdntgv2o .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKDdntgv2o .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKDdntgv2o .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKDdntgv2o .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKDdntgv2o .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKDdntgv2o .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-uKDdntgv2o .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKDdntgv2o .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKDdntgv2o .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uKDdntgv2o .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uKDdntgv2o .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKDdntgv2o .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKDdntgv2o .navbar.navbar-short {
  min-height: 96px;
}
.cid-uKDdntgv2o .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uKDdntgv2o .navbar-brand {
  min-height: 96px;
  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-uKDdntgv2o .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uKDdntgv2o .navbar-brand .navbar-caption:hover,
.cid-uKDdntgv2o .navbar-brand .navbar-caption:focus {
  color: #fafafa !important;
}
.cid-uKDdntgv2o .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKDdntgv2o .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uKDdntgv2o .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #d4af37 !important;
}
.cid-uKDdntgv2o .dropdown-item.active,
.cid-uKDdntgv2o .dropdown-item:active {
  background-color: transparent;
}
.cid-uKDdntgv2o .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKDdntgv2o .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKDdntgv2o .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKDdntgv2o .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #121212;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uKDdntgv2o .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uKDdntgv2o .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uKDdntgv2o .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKDdntgv2o ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uKDdntgv2o ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uKDdntgv2o .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uKDdntgv2o .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-uKDdntgv2o .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uKDdntgv2o .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uKDdntgv2o 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: #121212 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uKDdntgv2o button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKDdntgv2o button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uKDdntgv2o button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uKDdntgv2o button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uKDdntgv2o button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uKDdntgv2o nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKDdntgv2o nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKDdntgv2o nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKDdntgv2o nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKDdntgv2o .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKDdntgv2o a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKDdntgv2o .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-uKDdntgv2o .navbar {
    height: 70px;
  }
  .cid-uKDdntgv2o .navbar.opened {
    height: auto;
  }
  .cid-uKDdntgv2o .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKDdntgv2o .navbar-nav {
  margin: 0 auto;
}
.cid-uKDdntgv2o .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uKDdntgv2o .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 8px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uKDdntgv2o .nav-item .nav-link::after {
  color: #fafafa !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uKDdntgv2o .nav-item .nav-link:hover {
  background-color: #fafafa;
  color: #d4af37 !important;
}
.cid-uKDdntgv2o .nav-item .nav-link:hover::after {
  color: #d4af37 !important;
}
.cid-uKDdntgv2o .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uKDdntgv2o .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uKDdntgv2o .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uKDdntgv2o .navbar {
    justify-content: flex-start !important;
  }
  .cid-uKDdntgv2o .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uKDdntgv2o .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uKDdntgv2o .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uKDdntgv2o .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uKDdntgv2o .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uKDdntgv2o .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uKDdntgv2o .content-wrap {
  min-height: 110px;
}
.cid-uKDdntgv2o .mbr-section-btn .btn::after,
.cid-uKDdntgv2o .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #d4af37, #d4af37 150%);
}
.cid-uKDdntgv2o .mbr-section-btn .btn:hover,
.cid-uKDdntgv2o .mbr-section-btn .btn:focus {
  color: #d4af37 !important;
}
.cid-uKDdntgv2o .mbr-section-btn .btn:hover::after,
.cid-uKDdntgv2o .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #d4af37, #d4af37 150%);
  opacity: 1;
}
.cid-uKE2iquOQg {
  position: relative;
}
.cid-uKE2iquOQg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(10deg, #000000 18%, transparent 90%, #000000 100%);
  pointer-events: none;
  z-index: 1;
}
.cid-uKE2iquOQg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKE2iquOQg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpg");
}
.cid-uKE2iquOQg .content-wrapper {
  position: relative;
  z-index: 2;
  margin-top: 260px;
}
@media (max-width: 992px) {
  .cid-uKE2iquOQg .content-wrapper {
    margin-top: 0;
  }
}
.cid-uKE2iquOQg .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
  background-image: linear-gradient(180deg, #d4af37, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uKE2iquOQg .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uKE2iquOQg .mbr-section-title {
  color: #ffffff;
}
.cid-uKE2iquOQg .mbr-text {
  color: #ffffff;
}
.cid-uKDkFukJpj {
  background-image: url("../../../assets/images/trabajo-decorado-supermercado-masterchef-proyecto-escenografia-en-madrid-team-bustamante-2.jpeg");
}
.cid-uKDkFukJpj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKDkFukJpj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKDkFukJpj .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uKDkFukJpj .container-fluid {
    padding: 0 25px;
  }
}
.cid-uKDkFukJpj .container-fluid .row {
  padding: 0;
}
.cid-uKDkFukJpj .title-wrapper {
  padding-top: 35%;
}
@media (max-width: 992px) {
  .cid-uKDkFukJpj .title-wrapper {
    padding-top: 0;
  }
}
.cid-uKDkFukJpj .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
.cid-uKDkFukJpj .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
.cid-uKDkFukJpj .title-wrapper .mbr-section-btn .btn {
  background-image: linear-gradient(99deg, rgba(255, 255, 255, 0) 30%, #ffffff 100%), radial-gradient(circle at 50% 50%, #ffffff 0, rgba(255, 255, 255, 0) 70%);
  color: #000000 !important;
}
.cid-uKDkFukJpj .mbr-section-title {
  color: #ffffff;
}
.cid-uKDkFukJpj .mbr-text {
  color: #fafafa;
}
.cid-uKDkFukJpj .mbr-section-title,
.cid-uKDkFukJpj .mbr-section-btn {
  color: #d4af37;
}
.cid-uKCOTJtvor {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uKCOTJtvor .mbr-section-subtitle {
  color: #d4af37;
}
.cid-uKCOTJtvor .mbr-section-title {
  color: #d4af37;
  text-align: left;
}
.cid-uKCOTJtvor img {
  width: 100%;
}
.cid-uKCOTJtvor .mbr-text {
  color: #0b1f3a;
}
.cid-uKCOTJtvor .mbr-section-btn {
  margin-top: 40px;
}
.cid-uKCOTJtvor .mbr-section-btn .btn {
  margin-left: 0 !important;
}
@media (max-width: 768px) {
  .cid-uKCOTJtvor * {
    text-align: left;
  }
}
.cid-uKCOTJtvor .cards-wrap {
  flex-direction: column;
}
.cid-uKCOTJtvor .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
  display: flex;
}
.cid-uKCOTJtvor .wrapper .img {
  margin-bottom: 20px;
  margin-right: 25px;
  background-color: #d4af37;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-uKCOTJtvor .wrapper .img:hover {
  -webkit-animation-name: animation-wobble-vertical;
  animation-name: animation-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.cid-uKCOTJtvor .wrapper .img .mbr-iconfont {
  font-size: 1.875rem;
  top: 0;
  color: #000000;
  border-radius: 50%;
}
.cid-uKCOTJtvor .wrapper .content .mbr-card-title {
  color: #d4af37;
  margin-bottom: 10px;
}
.cid-uKCOTJtvor .wrapper .content .mbr-text {
  margin-bottom: 19px;
  color: #0b1f3a;
}
@-webkit-keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-uKCOTJtvor .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKCOTJtvor .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKCOTJtvor .wrapper .content .mbr-text,
.cid-uKCOTJtvor .img {
  color: #fafafa;
}
.cid-uKCMjAiRQz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
  overflow: hidden;
}
.cid-uKCMjAiRQz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKCMjAiRQz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKCMjAiRQz .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uKCMjAiRQz .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uKCMjAiRQz .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uKCMjAiRQz .container {
    padding: 0 22px;
  }
}
.cid-uKCMjAiRQz .card {
  justify-content: center;
}
.cid-uKCMjAiRQz .content-wrapper {
  padding-right: 32px;
  padding-right: 0;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-uKCMjAiRQz .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uKCMjAiRQz .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uKCMjAiRQz .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uKCMjAiRQz .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uKCMjAiRQz .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uKCMjAiRQz .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #d4af37;
}
@media (max-width: 1440px) {
  .cid-uKCMjAiRQz .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uKCMjAiRQz .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uKCMjAiRQz .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uKCMjAiRQz .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uKCMjAiRQz .mbr-section-title {
  color: #d4af37;
}
.cid-uKCMjAiRQz .mbr-text {
  color: #ffffff;
}
.cid-uKE3clIqxw {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uKE3clIqxw .wrapping {
  background-color: #181818;
  padding: 3rem;
  justify-content: space-between;
  align-items: center;
}
.cid-uKE3clIqxw .wrapping .mbr-section-title {
  color: #ffffff;
}
.cid-uKE3clIqxw .wrapping .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-uKE3clIqxw .wrapping .mbr-text {
  color: #a1a1a1;
  margin-bottom: 0;
}
.cid-uKE3clIqxw .wrapping .btn.btn-md {
  font-weight: 500;
  line-height: 1.5;
}
.cid-uKE3clIqxw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKE3clIqxw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKE3clIqxw .wrapping .text-wrap .mbr-section-title,
.cid-uKE3clIqxw .icon-wrap,
.cid-uKE3clIqxw .mbr-section-btn {
  color: #d4af37;
}
.cid-uKE3clIqxw .wrapping .text-wrap .mbr-text,
.cid-uKE3clIqxw .mbr-section-btn {
  color: #fafafa;
}
.cid-uKCPaPysAz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uKCPaPysAz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKCPaPysAz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKCPaPysAz .btn {
  padding: 1rem 2rem;
}
.cid-uKCPaPysAz .content-head {
  max-width: 800px;
}
.cid-uKCPaPysAz .item-wrapper .mbr-iconfont {
  margin: auto;
  display: inline-flex;
  font-size: 2rem;
  color: #d4af37;
  width: 40px;
  justify-content: center;
  align-items: center;
}
.cid-uKCPaPysAz .card-title,
.cid-uKCPaPysAz .iconfont-wrapper {
  color: #fdfde1;
}
.cid-uKCPaPysAz .card-text {
  color: #fdfde1;
}
.cid-uKCPaPysAz .mbr-section-subtitle {
  color: #fdfde1;
}
.cid-uKCPaPysAz .mbr-section-title {
  color: #d4af37;
}
.cid-uKEryHNH82 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-uKEryHNH82 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKEryHNH82 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uKEryHNH82 .container {
    padding: 0 30px;
  }
}
.cid-uKEryHNH82 .row {
  justify-content: center;
}
.cid-uKEryHNH82 .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uKEryHNH82 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uKEryHNH82 .panel-group .card {
  border-radius: 2rem 0 2rem 0 !important;
  border: 1px solid #d4af37;
  margin-bottom: 24px;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-uKEryHNH82 .panel-group .card {
    padding: 30px 20px;
  }
}
.cid-uKEryHNH82 .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uKEryHNH82 .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uKEryHNH82 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uKEryHNH82 .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  transition: all 0.3s ease-in-out;
  color: #0b1f3a;
  background-color: #d4af37;
  border-radius: 100%;
  margin-left: 20px;
}
.cid-uKEryHNH82 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uKEryHNH82 .panel-group .card .panel-collapse .panel-body {
  padding-top: 30px;
}
.cid-uKEryHNH82 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uKEryHNH82 .mbr-section-title {
  color: #d4af37;
  text-align: center;
}
.cid-uKEryHNH82 .panel-title-edit {
  color: #fafafa;
}
.cid-uKEryHNH82 .panel-text {
  color: #fafafa;
}
.cid-uKETbR1yjb {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uKETbR1yjb .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uKETbR1yjb .image-block {
    width: 100% !important;
  }
}
.cid-uKETbR1yjb h2 {
  margin-top: .5rem;
  font-family: 'Poiret One', display;
}
.cid-uKETbR1yjb .rojoloza {
  color: red;
}
.cid-uKETbR1yjb H2 {
  color: #fafafa;
}
.cid-uKEtwifV2a {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-uKEtwifV2a .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uKEtwifV2a h4,
.cid-uKEtwifV2a p {
  padding-bottom: 1rem;
}
.cid-uKEtwifV2a .col-auto,
.cid-uKEtwifV2a .btn {
  width: 100% !important;
  padding: 1rem;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uKEtwifV2a .mbr-form {
    margin-bottom: 1rem;
  }
}
.cid-uKEtwifV2a .google-map {
  height: 100%;
  padding-bottom: 1rem;
  min-height: 20rem;
  filter: grayscale(1);
  position: relative;
  border-radius: 2rem;
}
.cid-uKEtwifV2a .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uKEtwifV2a .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uKEtwifV2a .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uKEtwifV2a .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uKEtwifV2a .form-control,
.cid-uKEtwifV2a .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #f2f2f2 !important;
  color: #232323;
  transition: 0.4s;
  box-shadow: none;
  font-size: 1rem;
  font-weight: 400;
  outline: none;
}
.cid-uKEtwifV2a .form-control::-webkit-input-placeholder,
.cid-uKEtwifV2a .field-input::-webkit-input-placeholder,
.cid-uKEtwifV2a .form-control::-webkit-input-placeholder,
.cid-uKEtwifV2a .field-input::-webkit-input-placeholder {
  color: #cfcfcf;
}
.cid-uKEtwifV2a .form-control:-moz-placeholder,
.cid-uKEtwifV2a .field-input:-moz-placeholder,
.cid-uKEtwifV2a .form-control:-moz-placeholder,
.cid-uKEtwifV2a .field-input:-moz-placeholder {
  color: #cfcfcf;
}
.cid-uKEtwifV2a .form-control:hover,
.cid-uKEtwifV2a .field-input:hover,
.cid-uKEtwifV2a .form-control:focus,
.cid-uKEtwifV2a .field-input:focus {
  background-color: #ffffff;
  border-color: #ffbf31 !important;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-uKEtwifV2a .form-control:hover::-webkit-input-placeholder,
.cid-uKEtwifV2a .field-input:hover::-webkit-input-placeholder,
.cid-uKEtwifV2a .form-control:focus::-webkit-input-placeholder,
.cid-uKEtwifV2a .field-input:focus::-webkit-input-placeholder,
.cid-uKEtwifV2a .form-control:hover::-webkit-input-placeholder,
.cid-uKEtwifV2a .field-input:hover::-webkit-input-placeholder,
.cid-uKEtwifV2a .form-control:focus::-webkit-input-placeholder,
.cid-uKEtwifV2a .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-uKEtwifV2a .form-control:hover:-moz-placeholder,
.cid-uKEtwifV2a .field-input:hover:-moz-placeholder,
.cid-uKEtwifV2a .form-control:focus:-moz-placeholder,
.cid-uKEtwifV2a .field-input:focus:-moz-placeholder,
.cid-uKEtwifV2a .form-control:hover:-moz-placeholder,
.cid-uKEtwifV2a .field-input:hover:-moz-placeholder,
.cid-uKEtwifV2a .form-control:focus:-moz-placeholder,
.cid-uKEtwifV2a .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-uKEtwifV2a .jq-number__spin:hover,
.cid-uKEtwifV2a .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #ffbf31 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uKEtwifV2a .jq-number__spin {
  background-color: #ffffff;
  border-color: #f2f2f2;
  color: #232323;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uKEtwifV2a .jq-selectbox li,
.cid-uKEtwifV2a .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uKEtwifV2a .jq-selectbox li:hover,
.cid-uKEtwifV2a .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-uKEtwifV2a .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uKEtwifV2a .jq-number__spin.minus:hover:after,
.cid-uKEtwifV2a .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uKEtwifV2a .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uKEtwifV2a .jq-number__spin.minus:after,
.cid-uKEtwifV2a .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uKEtwifV2a input::-webkit-clear-button {
  display: none;
}
.cid-uKEtwifV2a input::-webkit-inner-spin-button {
  display: none;
}
.cid-uKEtwifV2a input::-webkit-outer-spin-button {
  display: none;
}
.cid-uKEtwifV2a input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uKEtwifV2a P {
  color: #fafafa;
}
.cid-uKEtwifV2a H4 {
  color: #d4af37;
}
.cid-uKEtwifV2a LABEL {
  color: #fafafa;
}
.cid-uKEtwifV2a H3 {
  color: #ffffff;
}
.cid-uKEtwifV2a button {
  background-color: white !important;
  color: black !important;
}
.cid-uKE5Ysvt4j {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uKE5Ysvt4j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKE5Ysvt4j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKE5Ysvt4j .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uKE5Ysvt4j .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uKE5Ysvt4j .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uKE5Ysvt4j .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uKE5Ysvt4j .container {
    max-width: 100%;
  }
  .cid-uKE5Ysvt4j .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uKE5Ysvt4j .item-wrap {
  width: 100%;
}
.cid-uKE5Ysvt4j .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uKE5Ysvt4j .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uKE5Ysvt4j .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #d4af37);
  box-shadow: 10px 10px 19px #0b1f3a, -10px -10px 19px #d4af37;
  transition: 0.4s all;
}
.cid-uKE5Ysvt4j .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uKE5Ysvt4j .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uKE5Ysvt4j .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uKE5Ysvt4j .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uKE5Ysvt4j .col-links {
    padding-top: 20px;
  }
}
.cid-uKE5Ysvt4j .mbr-section-subtitle {
  color: #d4af37;
  margin-bottom: 20px;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-uKE5Ysvt4j .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uKE5Ysvt4j .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #C4CFDE;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uKE5Ysvt4j .list {
    text-align: center !important;
  }
}
.cid-uKE5Ysvt4j .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uKE5Ysvt4j .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uKE5Ysvt4j .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uKE5Ysvt4j .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #d4af37;
  transition: 0.4s all;
}
.cid-uKE5Ysvt4j .list a:hover {
  color: #d4af37 !important;
  line-height: inherit !important;
}
.cid-uKE5Ysvt4j .list a:hover:before {
  width: 100%;
}
.cid-uKE5Ysvt4j .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uKE5Ysvt4j .col-copyright {
    padding-top: 40px;
  }
}
.cid-uKE5Ysvt4j .border-item {
  width: 100%;
  height: 1px;
  background-color: #d4af37;
}
.cid-uKE5Ysvt4j .copyright {
  color: #C4CFDE;
  padding: 40px 0;
}
.cid-uKE5Ysvt4j a {
  text-decoration: underline !important;
}
.cid-uKDmsibc2y {
  z-index: 1000;
  width: 100%;
}
.cid-uKDmsibc2y nav.navbar {
  position: fixed;
}
.cid-uKDmsibc2y .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uKDmsibc2y .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uKDmsibc2y .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-uKDmsibc2y .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uKDmsibc2y .dropdown-item {
  border: none !important;
  background: #121212 !important;
}
.cid-uKDmsibc2y .dropdown-item:hover,
.cid-uKDmsibc2y .dropdown-item:focus {
  background: #fafafa !important;
  color: #d4af37 !important;
}
.cid-uKDmsibc2y .dropdown-item:hover span {
  color: white;
}
.cid-uKDmsibc2y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKDmsibc2y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKDmsibc2y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKDmsibc2y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKDmsibc2y .nav-link {
  position: relative;
}
.cid-uKDmsibc2y .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uKDmsibc2y .container {
    flex-wrap: nowrap;
  }
}
.cid-uKDmsibc2y .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uKDmsibc2y .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uKDmsibc2y .dropdown-menu,
.cid-uKDmsibc2y .navbar.opened {
  background: #121212 !important;
}
.cid-uKDmsibc2y .nav-item:focus,
.cid-uKDmsibc2y .nav-link:focus {
  outline: none;
}
.cid-uKDmsibc2y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKDmsibc2y .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uKDmsibc2y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKDmsibc2y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKDmsibc2y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKDmsibc2y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKDmsibc2y .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(18, 18, 18, 0.9);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uKDmsibc2y .navbar.opened {
  transition: all 0.3s;
}
.cid-uKDmsibc2y .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 3rem;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uKDmsibc2y .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uKDmsibc2y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKDmsibc2y .navbar.collapsed {
  justify-content: center;
}
.cid-uKDmsibc2y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKDmsibc2y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKDmsibc2y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uKDmsibc2y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKDmsibc2y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKDmsibc2y .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-uKDmsibc2y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKDmsibc2y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKDmsibc2y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKDmsibc2y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKDmsibc2y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKDmsibc2y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKDmsibc2y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKDmsibc2y .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-uKDmsibc2y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKDmsibc2y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKDmsibc2y .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uKDmsibc2y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uKDmsibc2y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKDmsibc2y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKDmsibc2y .navbar.navbar-short {
  min-height: 96px;
}
.cid-uKDmsibc2y .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uKDmsibc2y .navbar-brand {
  min-height: 96px;
  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-uKDmsibc2y .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uKDmsibc2y .navbar-brand .navbar-caption:hover,
.cid-uKDmsibc2y .navbar-brand .navbar-caption:focus {
  color: #fafafa !important;
}
.cid-uKDmsibc2y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKDmsibc2y .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uKDmsibc2y .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #d4af37 !important;
}
.cid-uKDmsibc2y .dropdown-item.active,
.cid-uKDmsibc2y .dropdown-item:active {
  background-color: transparent;
}
.cid-uKDmsibc2y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKDmsibc2y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKDmsibc2y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKDmsibc2y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #121212;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uKDmsibc2y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uKDmsibc2y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uKDmsibc2y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKDmsibc2y ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uKDmsibc2y ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uKDmsibc2y .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uKDmsibc2y .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-uKDmsibc2y .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uKDmsibc2y .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uKDmsibc2y 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: #121212 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uKDmsibc2y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKDmsibc2y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uKDmsibc2y button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uKDmsibc2y button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uKDmsibc2y button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uKDmsibc2y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKDmsibc2y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKDmsibc2y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKDmsibc2y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKDmsibc2y .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKDmsibc2y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKDmsibc2y .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-uKDmsibc2y .navbar {
    height: 70px;
  }
  .cid-uKDmsibc2y .navbar.opened {
    height: auto;
  }
  .cid-uKDmsibc2y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKDmsibc2y .navbar-nav {
  margin: 0 auto;
}
.cid-uKDmsibc2y .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uKDmsibc2y .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 8px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uKDmsibc2y .nav-item .nav-link::after {
  color: #fafafa !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uKDmsibc2y .nav-item .nav-link:hover {
  background-color: #fafafa;
  color: #d4af37 !important;
}
.cid-uKDmsibc2y .nav-item .nav-link:hover::after {
  color: #d4af37 !important;
}
.cid-uKDmsibc2y .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uKDmsibc2y .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uKDmsibc2y .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uKDmsibc2y .navbar {
    justify-content: flex-start !important;
  }
  .cid-uKDmsibc2y .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uKDmsibc2y .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uKDmsibc2y .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uKDmsibc2y .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uKDmsibc2y .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uKDmsibc2y .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uKDmsibc2y .content-wrap {
  min-height: 110px;
}
.cid-uKDmsibc2y .mbr-section-btn .btn::after,
.cid-uKDmsibc2y .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #d4af37, #d4af37 150%);
}
.cid-uKDmsibc2y .mbr-section-btn .btn:hover,
.cid-uKDmsibc2y .mbr-section-btn .btn:focus {
  color: #d4af37 !important;
}
.cid-uKDmsibc2y .mbr-section-btn .btn:hover::after,
.cid-uKDmsibc2y .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #d4af37, #d4af37 150%);
  opacity: 1;
}
.cid-uKDmsfvTld {
  position: relative;
}
.cid-uKDmsfvTld::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(10deg, #000000 18%, transparent 90%, #000000 100%);
  pointer-events: none;
  z-index: 1;
}
.cid-uKDmsfvTld .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKDmsfvTld .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uKDmsfvTld .content-wrapper {
  position: relative;
  z-index: 2;
  margin-top: 260px;
}
@media (max-width: 992px) {
  .cid-uKDmsfvTld .content-wrapper {
    margin-top: 0;
  }
}
.cid-uKDmsfvTld .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
  background-image: linear-gradient(180deg, #d4af37, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uKDmsfvTld .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uKDmsfvTld .mbr-section-title {
  color: #ffffff;
}
.cid-uKDmsfvTld .mbr-text {
  color: #ffffff;
}
.cid-uKE0qeH328 {
  background-color: #d4af37;
  background-image: linear-gradient(125deg, #000000 45%, #d4af37 120%);
}
.cid-uKE0qeH328 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKE0qeH328 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKE0qeH328 .row {
  position: relative;
  justify-content: center;
}
.cid-uKE0qeH328 .row .image-wrapper {
  display: none;
}
.cid-uKE0qeH328 .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  margin-bottom: 16px;
  background-image: linear-gradient(90deg, #ffffff, #d4af37 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uKE0qeH328 .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uKE0qeH328 .title-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-uKE0qeH328 .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uKE0qeH328 .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uKE0qeH328 .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uKE0qeH328 .mbr-label,
.cid-uKE0qeH328 .label-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uKE0qeH328 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uKE0qeH328 .mbr-text,
.cid-uKE0qeH328 .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uKE0qeH328 .mbr-section-title,
.cid-uKE0qeH328 .mbr-section-btn {
  text-align: center;
}
.cid-uKE1ch6GWl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #121212;
}
.cid-uKE1ch6GWl .mbr-section-title {
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
}
.cid-uKE1ch6GWl .item:focus,
.cid-uKE1ch6GWl span:focus {
  outline: none;
}
.cid-uKE1ch6GWl .item {
  cursor: pointer;
}
.cid-uKE1ch6GWl .grid-container {
  grid-row-gap: 40px;
}
@media (max-width: 992px) {
  .cid-uKE1ch6GWl .grid-container {
    grid-row-gap: 20px;
  }
}
.cid-uKE1ch6GWl .grid-container-1,
.cid-uKE1ch6GWl .grid-container-2,
.cid-uKE1ch6GWl .grid-container-3 {
  gap: 0 40px;
}
@media (max-width: 992px) {
  .cid-uKE1ch6GWl .grid-container-1,
  .cid-uKE1ch6GWl .grid-container-2,
  .cid-uKE1ch6GWl .grid-container-3 {
    gap: 0 20px;
  }
}
.cid-uKE1ch6GWl .content-head {
  max-width: 800px;
}
.cid-uKE1ch6GWl .container,
.cid-uKE1ch6GWl .container-fluid {
  overflow: hidden;
}
.cid-uKE1ch6GWl .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uKE1ch6GWl .grid-item {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.cid-uKE1ch6GWl .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-uKE1ch6GWl .grid-item img {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .cid-uKE1ch6GWl .grid-item img {
    min-width: 35vw;
    height: 150px;
  }
}
.cid-uKE1ch6GWl .grid-item:nth-child(2) img {
  height: 400px;
}
@media (max-width: 1200px) {
  .cid-uKE1ch6GWl .grid-item:nth-child(2) img {
    height: 250px;
  }
}
@media (max-width: 767px) {
  .cid-uKE1ch6GWl .grid-item:nth-child(2) img {
    height: 150px;
  }
}
.cid-uKE1ch6GWl .grid-item:nth-child(3) img {
  height: 450px;
}
@media (max-width: 1200px) {
  .cid-uKE1ch6GWl .grid-item:nth-child(3) img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-uKE1ch6GWl .grid-item:nth-child(3) img {
    height: 150px;
  }
}
.cid-uKE1ch6GWl .grid-item:nth-child(4) img {
  height: 350px;
}
@media (max-width: 1200px) {
  .cid-uKE1ch6GWl .grid-item:nth-child(4) img {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .cid-uKE1ch6GWl .grid-item:nth-child(4) img {
    height: 150px;
  }
}
.cid-uKE1ch6GWl .grid-container-1,
.cid-uKE1ch6GWl .grid-container-2,
.cid-uKE1ch6GWl .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uKE1ch6GWl .grid-container-1 {
  align-items: flex-end;
}
.cid-uKE1ch6GWl .grid-container-2 {
  align-items: flex-start;
}
.cid-uKESO7f1HV {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uKESO7f1HV .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uKESO7f1HV .image-block {
    width: 100% !important;
  }
}
.cid-uKESO7f1HV h2 {
  margin-top: .5rem;
  font-family: 'Poiret One', display;
}
.cid-uKESO7f1HV .rojoloza {
  color: red;
}
.cid-uKESO7f1HV H2 {
  color: #fafafa;
}
.cid-uKE5Ysvt4j {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uKE5Ysvt4j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKE5Ysvt4j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKE5Ysvt4j .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uKE5Ysvt4j .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uKE5Ysvt4j .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uKE5Ysvt4j .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uKE5Ysvt4j .container {
    max-width: 100%;
  }
  .cid-uKE5Ysvt4j .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uKE5Ysvt4j .item-wrap {
  width: 100%;
}
.cid-uKE5Ysvt4j .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uKE5Ysvt4j .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uKE5Ysvt4j .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #d4af37);
  box-shadow: 10px 10px 19px #0b1f3a, -10px -10px 19px #d4af37;
  transition: 0.4s all;
}
.cid-uKE5Ysvt4j .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uKE5Ysvt4j .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uKE5Ysvt4j .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uKE5Ysvt4j .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uKE5Ysvt4j .col-links {
    padding-top: 20px;
  }
}
.cid-uKE5Ysvt4j .mbr-section-subtitle {
  color: #d4af37;
  margin-bottom: 20px;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-uKE5Ysvt4j .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uKE5Ysvt4j .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #C4CFDE;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uKE5Ysvt4j .list {
    text-align: center !important;
  }
}
.cid-uKE5Ysvt4j .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uKE5Ysvt4j .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uKE5Ysvt4j .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uKE5Ysvt4j .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #d4af37;
  transition: 0.4s all;
}
.cid-uKE5Ysvt4j .list a:hover {
  color: #d4af37 !important;
  line-height: inherit !important;
}
.cid-uKE5Ysvt4j .list a:hover:before {
  width: 100%;
}
.cid-uKE5Ysvt4j .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uKE5Ysvt4j .col-copyright {
    padding-top: 40px;
  }
}
.cid-uKE5Ysvt4j .border-item {
  width: 100%;
  height: 1px;
  background-color: #d4af37;
}
.cid-uKE5Ysvt4j .copyright {
  color: #C4CFDE;
  padding: 40px 0;
}
.cid-uKE5Ysvt4j a {
  text-decoration: underline !important;
}
.cid-uKDdntgv2o {
  z-index: 1000;
  width: 100%;
}
.cid-uKDdntgv2o nav.navbar {
  position: fixed;
}
.cid-uKDdntgv2o .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uKDdntgv2o .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uKDdntgv2o .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-uKDdntgv2o .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uKDdntgv2o .dropdown-item {
  border: none !important;
  background: #121212 !important;
}
.cid-uKDdntgv2o .dropdown-item:hover,
.cid-uKDdntgv2o .dropdown-item:focus {
  background: #fafafa !important;
  color: #d4af37 !important;
}
.cid-uKDdntgv2o .dropdown-item:hover span {
  color: white;
}
.cid-uKDdntgv2o .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKDdntgv2o .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKDdntgv2o .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKDdntgv2o .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKDdntgv2o .nav-link {
  position: relative;
}
.cid-uKDdntgv2o .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uKDdntgv2o .container {
    flex-wrap: nowrap;
  }
}
.cid-uKDdntgv2o .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uKDdntgv2o .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uKDdntgv2o .dropdown-menu,
.cid-uKDdntgv2o .navbar.opened {
  background: #121212 !important;
}
.cid-uKDdntgv2o .nav-item:focus,
.cid-uKDdntgv2o .nav-link:focus {
  outline: none;
}
.cid-uKDdntgv2o .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKDdntgv2o .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uKDdntgv2o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKDdntgv2o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKDdntgv2o .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKDdntgv2o .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKDdntgv2o .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(18, 18, 18, 0.9);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uKDdntgv2o .navbar.opened {
  transition: all 0.3s;
}
.cid-uKDdntgv2o .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 3rem;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uKDdntgv2o .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uKDdntgv2o .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKDdntgv2o .navbar.collapsed {
  justify-content: center;
}
.cid-uKDdntgv2o .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKDdntgv2o .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKDdntgv2o .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uKDdntgv2o .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKDdntgv2o .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKDdntgv2o .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-uKDdntgv2o .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKDdntgv2o .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKDdntgv2o .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKDdntgv2o .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKDdntgv2o .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKDdntgv2o .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKDdntgv2o .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKDdntgv2o .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-uKDdntgv2o .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKDdntgv2o .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKDdntgv2o .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uKDdntgv2o .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uKDdntgv2o .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKDdntgv2o .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKDdntgv2o .navbar.navbar-short {
  min-height: 96px;
}
.cid-uKDdntgv2o .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uKDdntgv2o .navbar-brand {
  min-height: 96px;
  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-uKDdntgv2o .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uKDdntgv2o .navbar-brand .navbar-caption:hover,
.cid-uKDdntgv2o .navbar-brand .navbar-caption:focus {
  color: #fafafa !important;
}
.cid-uKDdntgv2o .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKDdntgv2o .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uKDdntgv2o .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #d4af37 !important;
}
.cid-uKDdntgv2o .dropdown-item.active,
.cid-uKDdntgv2o .dropdown-item:active {
  background-color: transparent;
}
.cid-uKDdntgv2o .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKDdntgv2o .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKDdntgv2o .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKDdntgv2o .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #121212;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uKDdntgv2o .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uKDdntgv2o .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uKDdntgv2o .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKDdntgv2o ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uKDdntgv2o ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uKDdntgv2o .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uKDdntgv2o .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-uKDdntgv2o .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uKDdntgv2o .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uKDdntgv2o 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: #121212 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uKDdntgv2o button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKDdntgv2o button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uKDdntgv2o button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uKDdntgv2o button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uKDdntgv2o button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uKDdntgv2o nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKDdntgv2o nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKDdntgv2o nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKDdntgv2o nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKDdntgv2o .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKDdntgv2o a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKDdntgv2o .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-uKDdntgv2o .navbar {
    height: 70px;
  }
  .cid-uKDdntgv2o .navbar.opened {
    height: auto;
  }
  .cid-uKDdntgv2o .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKDdntgv2o .navbar-nav {
  margin: 0 auto;
}
.cid-uKDdntgv2o .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uKDdntgv2o .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 8px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uKDdntgv2o .nav-item .nav-link::after {
  color: #fafafa !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uKDdntgv2o .nav-item .nav-link:hover {
  background-color: #fafafa;
  color: #d4af37 !important;
}
.cid-uKDdntgv2o .nav-item .nav-link:hover::after {
  color: #d4af37 !important;
}
.cid-uKDdntgv2o .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uKDdntgv2o .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uKDdntgv2o .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uKDdntgv2o .navbar {
    justify-content: flex-start !important;
  }
  .cid-uKDdntgv2o .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uKDdntgv2o .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uKDdntgv2o .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uKDdntgv2o .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uKDdntgv2o .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uKDdntgv2o .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uKDdntgv2o .content-wrap {
  min-height: 110px;
}
.cid-uKDdntgv2o .mbr-section-btn .btn::after,
.cid-uKDdntgv2o .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #d4af37, #d4af37 150%);
}
.cid-uKDdntgv2o .mbr-section-btn .btn:hover,
.cid-uKDdntgv2o .mbr-section-btn .btn:focus {
  color: #d4af37 !important;
}
.cid-uKDdntgv2o .mbr-section-btn .btn:hover::after,
.cid-uKDdntgv2o .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #d4af37, #d4af37 150%);
  opacity: 1;
}
.cid-uKDS2RAjji {
  position: relative;
}
.cid-uKDS2RAjji::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(10deg, #000000 18%, transparent 90%, #000000 100%);
  pointer-events: none;
  z-index: 1;
}
.cid-uKDS2RAjji .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKDS2RAjji .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpg");
}
.cid-uKDS2RAjji .content-wrapper {
  position: relative;
  z-index: 2;
  margin-top: 260px;
}
@media (max-width: 992px) {
  .cid-uKDS2RAjji .content-wrapper {
    margin-top: 0;
  }
}
.cid-uKDS2RAjji .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
  background-image: linear-gradient(180deg, #d4af37, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uKDS2RAjji .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uKDS2RAjji .mbr-section-title {
  color: #ffffff;
}
.cid-uKDS2RAjji .mbr-text {
  color: #ffffff;
}
.cid-uKDXmOmPFw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}
.cid-uKDXmOmPFw::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(10deg, #000000 18%, transparent 90%, #000000 100%);
  pointer-events: none;
  z-index: 1;
}
.cid-uKDXmOmPFw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKDXmOmPFw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-3.jpg");
}
.cid-uKDXmOmPFw .content-wrapper {
  position: relative;
  z-index: 2;
  margin-top: 260px;
}
@media (max-width: 992px) {
  .cid-uKDXmOmPFw .content-wrapper {
    margin-top: 0;
  }
}
.cid-uKDXmOmPFw .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
  background-image: linear-gradient(180deg, #d4af37, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uKDXmOmPFw .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uKDXmOmPFw .mbr-section-title {
  color: #ffffff;
}
.cid-uKDXmOmPFw .mbr-text {
  color: #ffffff;
}
.cid-uKDXmOmPFw .mbr-section-title,
.cid-uKDXmOmPFw .mbr-section-btn {
  color: #d4af37;
}
.cid-uKDU0L23dE {
  background-image: url("../../../assets/images/d859096.jpg");
}
.cid-uKDU0L23dE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKDU0L23dE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKDU0L23dE .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uKDU0L23dE .container-fluid {
    padding: 0 25px;
  }
}
.cid-uKDU0L23dE .container-fluid .row {
  padding: 0;
}
.cid-uKDU0L23dE .title-wrapper {
  padding-top: 35%;
}
@media (max-width: 992px) {
  .cid-uKDU0L23dE .title-wrapper {
    padding-top: 0;
  }
}
.cid-uKDU0L23dE .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
.cid-uKDU0L23dE .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
.cid-uKDU0L23dE .title-wrapper .mbr-section-btn .btn {
  background-image: linear-gradient(99deg, rgba(255, 255, 255, 0) 30%, #ffffff 100%), radial-gradient(circle at 50% 50%, #ffffff 0, rgba(255, 255, 255, 0) 70%);
  color: #000000 !important;
}
.cid-uKDU0L23dE .mbr-section-title {
  color: #ffffff;
}
.cid-uKDU0L23dE .mbr-text {
  color: #fafafa;
}
.cid-uKDU0L23dE .mbr-section-title,
.cid-uKDU0L23dE .mbr-section-btn {
  color: #d4af37;
}
.cid-uKDX4a97S5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uKDX4a97S5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKDX4a97S5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uKDX4a97S5 .row {
    padding: 0 13px;
  }
}
.cid-uKDX4a97S5 .row {
  justify-content: center;
}
.cid-uKDX4a97S5 .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uKDX4a97S5 .title-wrapper {
  padding: 30px 54px 30px 0;
}
@media (max-width: 992px) {
  .cid-uKDX4a97S5 .title-wrapper {
    padding: 0 0 40px;
  }
}
.cid-uKDX4a97S5 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uKDX4a97S5 .text-wrapper {
  padding: 30px 0 30px 74px;
  border-left: 1px solid #d4af37;
}
@media (max-width: 992px) {
  .cid-uKDX4a97S5 .text-wrapper {
    padding: 40px 0 0;
    border-left: none;
    border-top: 1px solid #d4af37;
  }
}
.cid-uKDX4a97S5 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uKDX4a97S5 .mbr-section-title {
  color: #d4af37;
}
.cid-uKDX4a97S5 .mbr-text {
  color: #fafafa;
}
.cid-uKDUVYW2LX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uKDUVYW2LX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKDUVYW2LX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uKDUVYW2LX .container {
    padding: 0 22px;
  }
}
.cid-uKDUVYW2LX .card {
  justify-content: center;
}
.cid-uKDUVYW2LX .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uKDUVYW2LX .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uKDUVYW2LX .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uKDUVYW2LX .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uKDUVYW2LX .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uKDUVYW2LX .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #d4af37;
}
@media (max-width: 1440px) {
  .cid-uKDUVYW2LX .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uKDUVYW2LX .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uKDUVYW2LX .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uKDUVYW2LX .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uKDUVYW2LX .mbr-section-title {
  color: #d4af37;
}
.cid-uKDUVYW2LX .mbr-text {
  color: #ffffff;
}
.cid-ttRu4J86FA {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ttRu4J86FA .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttRu4J86FA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ttRu4J86FA .row {
    padding: 0 13px;
  }
}
.cid-ttRu4J86FA .row {
  justify-content: center;
}
.cid-ttRu4J86FA .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-ttRu4J86FA .title-wrapper {
  padding: 30px 54px 30px 0;
}
@media (max-width: 992px) {
  .cid-ttRu4J86FA .title-wrapper {
    padding: 0 0 40px;
  }
}
.cid-ttRu4J86FA .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ttRu4J86FA .text-wrapper {
  padding: 30px 0 30px 74px;
  border-left: 1px solid #d4af37;
}
@media (max-width: 992px) {
  .cid-ttRu4J86FA .text-wrapper {
    padding: 40px 0 0;
    border-left: none;
    border-top: 1px solid #d4af37;
  }
}
.cid-ttRu4J86FA .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ttRu4J86FA .mbr-section-title {
  color: #d4af37;
}
.cid-ttRu4J86FA .mbr-text {
  color: #fafafa;
}
.cid-uKDXU9XqGj {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uKDXU9XqGj .wrapping {
  background-color: #181818;
  padding: 3rem;
  justify-content: space-between;
  align-items: center;
}
.cid-uKDXU9XqGj .wrapping .mbr-section-title {
  color: #ffffff;
}
.cid-uKDXU9XqGj .wrapping .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-uKDXU9XqGj .wrapping .mbr-text {
  color: #a1a1a1;
  margin-bottom: 0;
}
.cid-uKDXU9XqGj .wrapping .btn.btn-md {
  font-weight: 500;
  line-height: 1.5;
}
.cid-uKDXU9XqGj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKDXU9XqGj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKDXU9XqGj .wrapping .text-wrap .mbr-section-title,
.cid-uKDXU9XqGj .icon-wrap,
.cid-uKDXU9XqGj .mbr-section-btn {
  color: #d4af37;
}
.cid-uKDXU9XqGj .wrapping .text-wrap .mbr-text,
.cid-uKDXU9XqGj .mbr-section-btn {
  color: #fafafa;
}
.cid-uKESJEuMMr {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uKESJEuMMr .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uKESJEuMMr .image-block {
    width: 100% !important;
  }
}
.cid-uKESJEuMMr h2 {
  margin-top: .5rem;
  font-family: 'Poiret One', display;
}
.cid-uKESJEuMMr .rojoloza {
  color: red;
}
.cid-uKESJEuMMr H2 {
  color: #fafafa;
}
.cid-uKE7OiEMQX {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-uKE7OiEMQX .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uKE7OiEMQX h4,
.cid-uKE7OiEMQX p {
  padding-bottom: 1rem;
}
.cid-uKE7OiEMQX .col-auto,
.cid-uKE7OiEMQX .btn {
  width: 100% !important;
  padding: 1rem;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uKE7OiEMQX .mbr-form {
    margin-bottom: 1rem;
  }
}
.cid-uKE7OiEMQX .google-map {
  height: 100%;
  padding-bottom: 1rem;
  min-height: 20rem;
  filter: grayscale(1);
  position: relative;
  border-radius: 2rem;
}
.cid-uKE7OiEMQX .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uKE7OiEMQX .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uKE7OiEMQX .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uKE7OiEMQX .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uKE7OiEMQX .form-control,
.cid-uKE7OiEMQX .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #f2f2f2 !important;
  color: #232323;
  transition: 0.4s;
  box-shadow: none;
  font-size: 1rem;
  font-weight: 400;
  outline: none;
}
.cid-uKE7OiEMQX .form-control::-webkit-input-placeholder,
.cid-uKE7OiEMQX .field-input::-webkit-input-placeholder,
.cid-uKE7OiEMQX .form-control::-webkit-input-placeholder,
.cid-uKE7OiEMQX .field-input::-webkit-input-placeholder {
  color: #cfcfcf;
}
.cid-uKE7OiEMQX .form-control:-moz-placeholder,
.cid-uKE7OiEMQX .field-input:-moz-placeholder,
.cid-uKE7OiEMQX .form-control:-moz-placeholder,
.cid-uKE7OiEMQX .field-input:-moz-placeholder {
  color: #cfcfcf;
}
.cid-uKE7OiEMQX .form-control:hover,
.cid-uKE7OiEMQX .field-input:hover,
.cid-uKE7OiEMQX .form-control:focus,
.cid-uKE7OiEMQX .field-input:focus {
  background-color: #ffffff;
  border-color: #ffbf31 !important;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-uKE7OiEMQX .form-control:hover::-webkit-input-placeholder,
.cid-uKE7OiEMQX .field-input:hover::-webkit-input-placeholder,
.cid-uKE7OiEMQX .form-control:focus::-webkit-input-placeholder,
.cid-uKE7OiEMQX .field-input:focus::-webkit-input-placeholder,
.cid-uKE7OiEMQX .form-control:hover::-webkit-input-placeholder,
.cid-uKE7OiEMQX .field-input:hover::-webkit-input-placeholder,
.cid-uKE7OiEMQX .form-control:focus::-webkit-input-placeholder,
.cid-uKE7OiEMQX .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-uKE7OiEMQX .form-control:hover:-moz-placeholder,
.cid-uKE7OiEMQX .field-input:hover:-moz-placeholder,
.cid-uKE7OiEMQX .form-control:focus:-moz-placeholder,
.cid-uKE7OiEMQX .field-input:focus:-moz-placeholder,
.cid-uKE7OiEMQX .form-control:hover:-moz-placeholder,
.cid-uKE7OiEMQX .field-input:hover:-moz-placeholder,
.cid-uKE7OiEMQX .form-control:focus:-moz-placeholder,
.cid-uKE7OiEMQX .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-uKE7OiEMQX .jq-number__spin:hover,
.cid-uKE7OiEMQX .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #ffbf31 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uKE7OiEMQX .jq-number__spin {
  background-color: #ffffff;
  border-color: #f2f2f2;
  color: #232323;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uKE7OiEMQX .jq-selectbox li,
.cid-uKE7OiEMQX .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uKE7OiEMQX .jq-selectbox li:hover,
.cid-uKE7OiEMQX .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-uKE7OiEMQX .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uKE7OiEMQX .jq-number__spin.minus:hover:after,
.cid-uKE7OiEMQX .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uKE7OiEMQX .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uKE7OiEMQX .jq-number__spin.minus:after,
.cid-uKE7OiEMQX .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uKE7OiEMQX input::-webkit-clear-button {
  display: none;
}
.cid-uKE7OiEMQX input::-webkit-inner-spin-button {
  display: none;
}
.cid-uKE7OiEMQX input::-webkit-outer-spin-button {
  display: none;
}
.cid-uKE7OiEMQX input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uKE7OiEMQX P {
  color: #fafafa;
}
.cid-uKE7OiEMQX H4 {
  color: #d4af37;
}
.cid-uKE7OiEMQX LABEL {
  color: #fafafa;
}
.cid-uKE5Ysvt4j {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uKE5Ysvt4j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKE5Ysvt4j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKE5Ysvt4j .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uKE5Ysvt4j .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uKE5Ysvt4j .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uKE5Ysvt4j .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uKE5Ysvt4j .container {
    max-width: 100%;
  }
  .cid-uKE5Ysvt4j .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uKE5Ysvt4j .item-wrap {
  width: 100%;
}
.cid-uKE5Ysvt4j .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uKE5Ysvt4j .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uKE5Ysvt4j .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #d4af37);
  box-shadow: 10px 10px 19px #0b1f3a, -10px -10px 19px #d4af37;
  transition: 0.4s all;
}
.cid-uKE5Ysvt4j .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uKE5Ysvt4j .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uKE5Ysvt4j .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uKE5Ysvt4j .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uKE5Ysvt4j .col-links {
    padding-top: 20px;
  }
}
.cid-uKE5Ysvt4j .mbr-section-subtitle {
  color: #d4af37;
  margin-bottom: 20px;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-uKE5Ysvt4j .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uKE5Ysvt4j .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #C4CFDE;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uKE5Ysvt4j .list {
    text-align: center !important;
  }
}
.cid-uKE5Ysvt4j .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uKE5Ysvt4j .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uKE5Ysvt4j .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uKE5Ysvt4j .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #d4af37;
  transition: 0.4s all;
}
.cid-uKE5Ysvt4j .list a:hover {
  color: #d4af37 !important;
  line-height: inherit !important;
}
.cid-uKE5Ysvt4j .list a:hover:before {
  width: 100%;
}
.cid-uKE5Ysvt4j .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uKE5Ysvt4j .col-copyright {
    padding-top: 40px;
  }
}
.cid-uKE5Ysvt4j .border-item {
  width: 100%;
  height: 1px;
  background-color: #d4af37;
}
.cid-uKE5Ysvt4j .copyright {
  color: #C4CFDE;
  padding: 40px 0;
}
.cid-uKE5Ysvt4j a {
  text-decoration: underline !important;
}
.cid-uKDdntgv2o {
  z-index: 1000;
  width: 100%;
}
.cid-uKDdntgv2o nav.navbar {
  position: fixed;
}
.cid-uKDdntgv2o .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uKDdntgv2o .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uKDdntgv2o .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-uKDdntgv2o .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uKDdntgv2o .dropdown-item {
  border: none !important;
  background: #121212 !important;
}
.cid-uKDdntgv2o .dropdown-item:hover,
.cid-uKDdntgv2o .dropdown-item:focus {
  background: #fafafa !important;
  color: #d4af37 !important;
}
.cid-uKDdntgv2o .dropdown-item:hover span {
  color: white;
}
.cid-uKDdntgv2o .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKDdntgv2o .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKDdntgv2o .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKDdntgv2o .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKDdntgv2o .nav-link {
  position: relative;
}
.cid-uKDdntgv2o .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uKDdntgv2o .container {
    flex-wrap: nowrap;
  }
}
.cid-uKDdntgv2o .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uKDdntgv2o .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uKDdntgv2o .dropdown-menu,
.cid-uKDdntgv2o .navbar.opened {
  background: #121212 !important;
}
.cid-uKDdntgv2o .nav-item:focus,
.cid-uKDdntgv2o .nav-link:focus {
  outline: none;
}
.cid-uKDdntgv2o .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKDdntgv2o .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uKDdntgv2o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKDdntgv2o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKDdntgv2o .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKDdntgv2o .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKDdntgv2o .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(18, 18, 18, 0.9);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uKDdntgv2o .navbar.opened {
  transition: all 0.3s;
}
.cid-uKDdntgv2o .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 3rem;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uKDdntgv2o .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uKDdntgv2o .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKDdntgv2o .navbar.collapsed {
  justify-content: center;
}
.cid-uKDdntgv2o .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKDdntgv2o .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKDdntgv2o .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uKDdntgv2o .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKDdntgv2o .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKDdntgv2o .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-uKDdntgv2o .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKDdntgv2o .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKDdntgv2o .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKDdntgv2o .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKDdntgv2o .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKDdntgv2o .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKDdntgv2o .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKDdntgv2o .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-uKDdntgv2o .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKDdntgv2o .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKDdntgv2o .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uKDdntgv2o .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uKDdntgv2o .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKDdntgv2o .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKDdntgv2o .navbar.navbar-short {
  min-height: 96px;
}
.cid-uKDdntgv2o .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uKDdntgv2o .navbar-brand {
  min-height: 96px;
  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-uKDdntgv2o .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uKDdntgv2o .navbar-brand .navbar-caption:hover,
.cid-uKDdntgv2o .navbar-brand .navbar-caption:focus {
  color: #fafafa !important;
}
.cid-uKDdntgv2o .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKDdntgv2o .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uKDdntgv2o .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #d4af37 !important;
}
.cid-uKDdntgv2o .dropdown-item.active,
.cid-uKDdntgv2o .dropdown-item:active {
  background-color: transparent;
}
.cid-uKDdntgv2o .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKDdntgv2o .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKDdntgv2o .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKDdntgv2o .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #121212;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uKDdntgv2o .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uKDdntgv2o .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uKDdntgv2o .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKDdntgv2o ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uKDdntgv2o ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uKDdntgv2o .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uKDdntgv2o .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-uKDdntgv2o .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uKDdntgv2o .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uKDdntgv2o 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: #121212 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uKDdntgv2o button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKDdntgv2o button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uKDdntgv2o button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uKDdntgv2o button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uKDdntgv2o button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uKDdntgv2o nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKDdntgv2o nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKDdntgv2o nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKDdntgv2o nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKDdntgv2o .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKDdntgv2o a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKDdntgv2o .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-uKDdntgv2o .navbar {
    height: 70px;
  }
  .cid-uKDdntgv2o .navbar.opened {
    height: auto;
  }
  .cid-uKDdntgv2o .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKDdntgv2o .navbar-nav {
  margin: 0 auto;
}
.cid-uKDdntgv2o .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uKDdntgv2o .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 8px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uKDdntgv2o .nav-item .nav-link::after {
  color: #fafafa !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uKDdntgv2o .nav-item .nav-link:hover {
  background-color: #fafafa;
  color: #d4af37 !important;
}
.cid-uKDdntgv2o .nav-item .nav-link:hover::after {
  color: #d4af37 !important;
}
.cid-uKDdntgv2o .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uKDdntgv2o .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uKDdntgv2o .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uKDdntgv2o .navbar {
    justify-content: flex-start !important;
  }
  .cid-uKDdntgv2o .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uKDdntgv2o .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uKDdntgv2o .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uKDdntgv2o .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uKDdntgv2o .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uKDdntgv2o .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uKDdntgv2o .content-wrap {
  min-height: 110px;
}
.cid-uKDdntgv2o .mbr-section-btn .btn::after,
.cid-uKDdntgv2o .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #d4af37, #d4af37 150%);
}
.cid-uKDdntgv2o .mbr-section-btn .btn:hover,
.cid-uKDdntgv2o .mbr-section-btn .btn:focus {
  color: #d4af37 !important;
}
.cid-uKDdntgv2o .mbr-section-btn .btn:hover::after,
.cid-uKDdntgv2o .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #d4af37, #d4af37 150%);
  opacity: 1;
}
.cid-uKEjDdlvDz {
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-color: #080813;
}
.cid-uKEjDdlvDz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKEjDdlvDz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKEjDdlvDz .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uKEjDdlvDz .content-wrapper .mbr-section-title span {
  color: #d4af37;
}
.cid-uKEjDdlvDz .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uKEjDdlvDz .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uKEjDdlvDz .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #0b1f3a, #d4af37, #0b1f3a);
}
@media (max-width: 992px) {
  .cid-uKEjDdlvDz .border-wrap {
    margin-top: 32px;
  }
}
.cid-uKEjDdlvDz .mbr-section-title {
  color: #ffffff;
}
.cid-uKEjDdlvDz .mbr-text,
.cid-uKEjDdlvDz .text-wrapper {
  color: #bbbbbb;
  text-align: center;
}
.cid-uKEjDdlvDz .mbr-section-title,
.cid-uKEjDdlvDz .mbr-section-btn {
  text-align: center;
}
.cid-uKEjFuqacI {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uKEjFuqacI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKEjFuqacI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKEjFuqacI .row {
  justify-content: space-between;
}
.cid-uKEjFuqacI .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uKEjFuqacI .content-wrapper {
    padding: 0;
  }
}
.cid-uKEjFuqacI .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uKEjFuqacI .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uKEjFuqacI .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uKEjFuqacI .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uKEjFuqacI .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uKEjFuqacI .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uKEjFuqacI .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uKEjFuqacI .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uKEjFuqacI .mbr-section-title {
  color: #000000;
}
.cid-uKEjFuqacI .mbr-desc {
  color: #000000;
}
.cid-uKEjFuqacI .mbr-text {
  color: #fafafa;
}
.cid-uKESZ0VeUQ {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uKESZ0VeUQ .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uKESZ0VeUQ .image-block {
    width: 100% !important;
  }
}
.cid-uKESZ0VeUQ h2 {
  margin-top: .5rem;
  font-family: 'Poiret One', display;
}
.cid-uKESZ0VeUQ .rojoloza {
  color: red;
}
.cid-uKESZ0VeUQ H2 {
  color: #fafafa;
}
.cid-uKE5Ysvt4j {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uKE5Ysvt4j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKE5Ysvt4j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKE5Ysvt4j .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uKE5Ysvt4j .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uKE5Ysvt4j .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uKE5Ysvt4j .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uKE5Ysvt4j .container {
    max-width: 100%;
  }
  .cid-uKE5Ysvt4j .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uKE5Ysvt4j .item-wrap {
  width: 100%;
}
.cid-uKE5Ysvt4j .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uKE5Ysvt4j .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uKE5Ysvt4j .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #d4af37);
  box-shadow: 10px 10px 19px #0b1f3a, -10px -10px 19px #d4af37;
  transition: 0.4s all;
}
.cid-uKE5Ysvt4j .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uKE5Ysvt4j .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uKE5Ysvt4j .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uKE5Ysvt4j .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uKE5Ysvt4j .col-links {
    padding-top: 20px;
  }
}
.cid-uKE5Ysvt4j .mbr-section-subtitle {
  color: #d4af37;
  margin-bottom: 20px;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-uKE5Ysvt4j .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uKE5Ysvt4j .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #C4CFDE;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uKE5Ysvt4j .list {
    text-align: center !important;
  }
}
.cid-uKE5Ysvt4j .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uKE5Ysvt4j .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uKE5Ysvt4j .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uKE5Ysvt4j .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #d4af37;
  transition: 0.4s all;
}
.cid-uKE5Ysvt4j .list a:hover {
  color: #d4af37 !important;
  line-height: inherit !important;
}
.cid-uKE5Ysvt4j .list a:hover:before {
  width: 100%;
}
.cid-uKE5Ysvt4j .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uKE5Ysvt4j .col-copyright {
    padding-top: 40px;
  }
}
.cid-uKE5Ysvt4j .border-item {
  width: 100%;
  height: 1px;
  background-color: #d4af37;
}
.cid-uKE5Ysvt4j .copyright {
  color: #C4CFDE;
  padding: 40px 0;
}
.cid-uKE5Ysvt4j a {
  text-decoration: underline !important;
}
.cid-uKElZwyb3X {
  z-index: 1000;
  width: 100%;
}
.cid-uKElZwyb3X nav.navbar {
  position: fixed;
}
.cid-uKElZwyb3X .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uKElZwyb3X .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uKElZwyb3X .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-uKElZwyb3X .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uKElZwyb3X .dropdown-item {
  border: none !important;
  background: #121212 !important;
}
.cid-uKElZwyb3X .dropdown-item:hover,
.cid-uKElZwyb3X .dropdown-item:focus {
  background: #fafafa !important;
  color: #d4af37 !important;
}
.cid-uKElZwyb3X .dropdown-item:hover span {
  color: white;
}
.cid-uKElZwyb3X .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKElZwyb3X .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKElZwyb3X .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKElZwyb3X .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKElZwyb3X .nav-link {
  position: relative;
}
.cid-uKElZwyb3X .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uKElZwyb3X .container {
    flex-wrap: nowrap;
  }
}
.cid-uKElZwyb3X .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uKElZwyb3X .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uKElZwyb3X .dropdown-menu,
.cid-uKElZwyb3X .navbar.opened {
  background: #121212 !important;
}
.cid-uKElZwyb3X .nav-item:focus,
.cid-uKElZwyb3X .nav-link:focus {
  outline: none;
}
.cid-uKElZwyb3X .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKElZwyb3X .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uKElZwyb3X .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKElZwyb3X .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKElZwyb3X .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKElZwyb3X .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKElZwyb3X .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(18, 18, 18, 0.9);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uKElZwyb3X .navbar.opened {
  transition: all 0.3s;
}
.cid-uKElZwyb3X .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 3rem;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uKElZwyb3X .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uKElZwyb3X .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKElZwyb3X .navbar.collapsed {
  justify-content: center;
}
.cid-uKElZwyb3X .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKElZwyb3X .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKElZwyb3X .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uKElZwyb3X .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKElZwyb3X .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKElZwyb3X .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-uKElZwyb3X .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKElZwyb3X .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKElZwyb3X .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKElZwyb3X .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKElZwyb3X .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKElZwyb3X .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKElZwyb3X .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKElZwyb3X .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-uKElZwyb3X .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKElZwyb3X .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKElZwyb3X .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uKElZwyb3X .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uKElZwyb3X .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKElZwyb3X .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKElZwyb3X .navbar.navbar-short {
  min-height: 96px;
}
.cid-uKElZwyb3X .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uKElZwyb3X .navbar-brand {
  min-height: 96px;
  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-uKElZwyb3X .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uKElZwyb3X .navbar-brand .navbar-caption:hover,
.cid-uKElZwyb3X .navbar-brand .navbar-caption:focus {
  color: #fafafa !important;
}
.cid-uKElZwyb3X .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKElZwyb3X .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uKElZwyb3X .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #d4af37 !important;
}
.cid-uKElZwyb3X .dropdown-item.active,
.cid-uKElZwyb3X .dropdown-item:active {
  background-color: transparent;
}
.cid-uKElZwyb3X .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKElZwyb3X .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKElZwyb3X .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKElZwyb3X .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #121212;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uKElZwyb3X .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uKElZwyb3X .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uKElZwyb3X .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKElZwyb3X ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uKElZwyb3X ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uKElZwyb3X .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uKElZwyb3X .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-uKElZwyb3X .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uKElZwyb3X .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uKElZwyb3X 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: #121212 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uKElZwyb3X button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKElZwyb3X button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uKElZwyb3X button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uKElZwyb3X button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uKElZwyb3X button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uKElZwyb3X nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKElZwyb3X nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKElZwyb3X nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKElZwyb3X nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKElZwyb3X .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKElZwyb3X a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKElZwyb3X .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-uKElZwyb3X .navbar {
    height: 70px;
  }
  .cid-uKElZwyb3X .navbar.opened {
    height: auto;
  }
  .cid-uKElZwyb3X .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKElZwyb3X .navbar-nav {
  margin: 0 auto;
}
.cid-uKElZwyb3X .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uKElZwyb3X .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 8px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uKElZwyb3X .nav-item .nav-link::after {
  color: #fafafa !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uKElZwyb3X .nav-item .nav-link:hover {
  background-color: #fafafa;
  color: #d4af37 !important;
}
.cid-uKElZwyb3X .nav-item .nav-link:hover::after {
  color: #d4af37 !important;
}
.cid-uKElZwyb3X .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uKElZwyb3X .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uKElZwyb3X .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uKElZwyb3X .navbar {
    justify-content: flex-start !important;
  }
  .cid-uKElZwyb3X .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uKElZwyb3X .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uKElZwyb3X .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uKElZwyb3X .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uKElZwyb3X .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uKElZwyb3X .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uKElZwyb3X .content-wrap {
  min-height: 110px;
}
.cid-uKElZwyb3X .mbr-section-btn .btn::after,
.cid-uKElZwyb3X .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #d4af37, #d4af37 150%);
}
.cid-uKElZwyb3X .mbr-section-btn .btn:hover,
.cid-uKElZwyb3X .mbr-section-btn .btn:focus {
  color: #d4af37 !important;
}
.cid-uKElZwyb3X .mbr-section-btn .btn:hover::after,
.cid-uKElZwyb3X .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #d4af37, #d4af37 150%);
  opacity: 1;
}
.cid-uKElZurwxo {
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-color: #080813;
}
.cid-uKElZurwxo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKElZurwxo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKElZurwxo .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uKElZurwxo .content-wrapper .mbr-section-title span {
  color: #d4af37;
}
.cid-uKElZurwxo .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uKElZurwxo .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uKElZurwxo .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #0b1f3a, #d4af37, #0b1f3a);
}
@media (max-width: 992px) {
  .cid-uKElZurwxo .border-wrap {
    margin-top: 32px;
  }
}
.cid-uKElZurwxo .mbr-section-title {
  color: #ffffff;
}
.cid-uKElZurwxo .mbr-text,
.cid-uKElZurwxo .text-wrapper {
  color: #bbbbbb;
  text-align: center;
}
.cid-uKElZurwxo .mbr-section-title,
.cid-uKElZurwxo .mbr-section-btn {
  text-align: center;
}
.cid-uKElZvU2Ky {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uKElZvU2Ky .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKElZvU2Ky .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKElZvU2Ky .row {
  justify-content: space-between;
}
.cid-uKElZvU2Ky .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uKElZvU2Ky .content-wrapper {
    padding: 0;
  }
}
.cid-uKElZvU2Ky .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uKElZvU2Ky .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uKElZvU2Ky .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uKElZvU2Ky .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uKElZvU2Ky .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uKElZvU2Ky .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uKElZvU2Ky .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uKElZvU2Ky .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uKElZvU2Ky .mbr-section-title {
  color: #000000;
}
.cid-uKElZvU2Ky .mbr-desc {
  color: #000000;
}
.cid-uKElZvU2Ky .mbr-text {
  color: #fafafa;
}
.cid-uKESUeRMao {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uKESUeRMao .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uKESUeRMao .image-block {
    width: 100% !important;
  }
}
.cid-uKESUeRMao h2 {
  margin-top: .5rem;
  font-family: 'Poiret One', display;
}
.cid-uKESUeRMao .rojoloza {
  color: red;
}
.cid-uKESUeRMao H2 {
  color: #fafafa;
}
.cid-uKElZxniSr {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uKElZxniSr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKElZxniSr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKElZxniSr .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uKElZxniSr .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uKElZxniSr .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uKElZxniSr .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uKElZxniSr .container {
    max-width: 100%;
  }
  .cid-uKElZxniSr .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uKElZxniSr .item-wrap {
  width: 100%;
}
.cid-uKElZxniSr .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uKElZxniSr .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uKElZxniSr .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uKElZxniSr .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uKElZxniSr .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uKElZxniSr .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uKElZxniSr .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uKElZxniSr .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uKElZxniSr .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #d4af37);
  box-shadow: 10px 10px 19px #0b1f3a, -10px -10px 19px #d4af37;
  transition: 0.4s all;
}
.cid-uKElZxniSr .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uKElZxniSr .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uKElZxniSr .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uKElZxniSr .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uKElZxniSr .col-links {
    padding-top: 20px;
  }
}
.cid-uKElZxniSr .mbr-section-subtitle {
  color: #d4af37;
  margin-bottom: 20px;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-uKElZxniSr .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uKElZxniSr .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #C4CFDE;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uKElZxniSr .list {
    text-align: center !important;
  }
}
.cid-uKElZxniSr .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uKElZxniSr .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uKElZxniSr .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uKElZxniSr .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #d4af37;
  transition: 0.4s all;
}
.cid-uKElZxniSr .list a:hover {
  color: #d4af37 !important;
  line-height: inherit !important;
}
.cid-uKElZxniSr .list a:hover:before {
  width: 100%;
}
.cid-uKElZxniSr .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uKElZxniSr .col-copyright {
    padding-top: 40px;
  }
}
.cid-uKElZxniSr .border-item {
  width: 100%;
  height: 1px;
  background-color: #d4af37;
}
.cid-uKElZxniSr .copyright {
  color: #C4CFDE;
  padding: 40px 0;
}
.cid-uKElZxniSr a {
  text-decoration: underline !important;
}
.cid-uKEmRhdL7R {
  z-index: 1000;
  width: 100%;
}
.cid-uKEmRhdL7R nav.navbar {
  position: fixed;
}
.cid-uKEmRhdL7R .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uKEmRhdL7R .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uKEmRhdL7R .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-uKEmRhdL7R .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uKEmRhdL7R .dropdown-item {
  border: none !important;
  background: #121212 !important;
}
.cid-uKEmRhdL7R .dropdown-item:hover,
.cid-uKEmRhdL7R .dropdown-item:focus {
  background: #fafafa !important;
  color: #d4af37 !important;
}
.cid-uKEmRhdL7R .dropdown-item:hover span {
  color: white;
}
.cid-uKEmRhdL7R .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKEmRhdL7R .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKEmRhdL7R .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKEmRhdL7R .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKEmRhdL7R .nav-link {
  position: relative;
}
.cid-uKEmRhdL7R .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uKEmRhdL7R .container {
    flex-wrap: nowrap;
  }
}
.cid-uKEmRhdL7R .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uKEmRhdL7R .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uKEmRhdL7R .dropdown-menu,
.cid-uKEmRhdL7R .navbar.opened {
  background: #121212 !important;
}
.cid-uKEmRhdL7R .nav-item:focus,
.cid-uKEmRhdL7R .nav-link:focus {
  outline: none;
}
.cid-uKEmRhdL7R .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKEmRhdL7R .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uKEmRhdL7R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKEmRhdL7R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKEmRhdL7R .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKEmRhdL7R .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKEmRhdL7R .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(18, 18, 18, 0.9);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uKEmRhdL7R .navbar.opened {
  transition: all 0.3s;
}
.cid-uKEmRhdL7R .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 3rem;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uKEmRhdL7R .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uKEmRhdL7R .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKEmRhdL7R .navbar.collapsed {
  justify-content: center;
}
.cid-uKEmRhdL7R .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKEmRhdL7R .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKEmRhdL7R .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uKEmRhdL7R .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKEmRhdL7R .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKEmRhdL7R .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-uKEmRhdL7R .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKEmRhdL7R .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKEmRhdL7R .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKEmRhdL7R .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKEmRhdL7R .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKEmRhdL7R .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKEmRhdL7R .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKEmRhdL7R .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-uKEmRhdL7R .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKEmRhdL7R .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKEmRhdL7R .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uKEmRhdL7R .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uKEmRhdL7R .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKEmRhdL7R .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKEmRhdL7R .navbar.navbar-short {
  min-height: 96px;
}
.cid-uKEmRhdL7R .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uKEmRhdL7R .navbar-brand {
  min-height: 96px;
  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-uKEmRhdL7R .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uKEmRhdL7R .navbar-brand .navbar-caption:hover,
.cid-uKEmRhdL7R .navbar-brand .navbar-caption:focus {
  color: #fafafa !important;
}
.cid-uKEmRhdL7R .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKEmRhdL7R .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uKEmRhdL7R .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #d4af37 !important;
}
.cid-uKEmRhdL7R .dropdown-item.active,
.cid-uKEmRhdL7R .dropdown-item:active {
  background-color: transparent;
}
.cid-uKEmRhdL7R .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKEmRhdL7R .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKEmRhdL7R .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKEmRhdL7R .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #121212;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uKEmRhdL7R .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uKEmRhdL7R .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uKEmRhdL7R .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKEmRhdL7R ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uKEmRhdL7R ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uKEmRhdL7R .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uKEmRhdL7R .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-uKEmRhdL7R .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uKEmRhdL7R .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uKEmRhdL7R 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: #121212 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uKEmRhdL7R button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKEmRhdL7R button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uKEmRhdL7R button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uKEmRhdL7R button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uKEmRhdL7R button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uKEmRhdL7R nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKEmRhdL7R nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKEmRhdL7R nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKEmRhdL7R nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKEmRhdL7R .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKEmRhdL7R a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKEmRhdL7R .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-uKEmRhdL7R .navbar {
    height: 70px;
  }
  .cid-uKEmRhdL7R .navbar.opened {
    height: auto;
  }
  .cid-uKEmRhdL7R .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKEmRhdL7R .navbar-nav {
  margin: 0 auto;
}
.cid-uKEmRhdL7R .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uKEmRhdL7R .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 8px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uKEmRhdL7R .nav-item .nav-link::after {
  color: #fafafa !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uKEmRhdL7R .nav-item .nav-link:hover {
  background-color: #fafafa;
  color: #d4af37 !important;
}
.cid-uKEmRhdL7R .nav-item .nav-link:hover::after {
  color: #d4af37 !important;
}
.cid-uKEmRhdL7R .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uKEmRhdL7R .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uKEmRhdL7R .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uKEmRhdL7R .navbar {
    justify-content: flex-start !important;
  }
  .cid-uKEmRhdL7R .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uKEmRhdL7R .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uKEmRhdL7R .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uKEmRhdL7R .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uKEmRhdL7R .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uKEmRhdL7R .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uKEmRhdL7R .content-wrap {
  min-height: 110px;
}
.cid-uKEmRhdL7R .mbr-section-btn .btn::after,
.cid-uKEmRhdL7R .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #d4af37, #d4af37 150%);
}
.cid-uKEmRhdL7R .mbr-section-btn .btn:hover,
.cid-uKEmRhdL7R .mbr-section-btn .btn:focus {
  color: #d4af37 !important;
}
.cid-uKEmRhdL7R .mbr-section-btn .btn:hover::after,
.cid-uKEmRhdL7R .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #d4af37, #d4af37 150%);
  opacity: 1;
}
.cid-uKEmReWrpn {
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-color: #080813;
}
.cid-uKEmReWrpn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKEmReWrpn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKEmReWrpn .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uKEmReWrpn .content-wrapper .mbr-section-title span {
  color: #d4af37;
}
.cid-uKEmReWrpn .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uKEmReWrpn .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uKEmReWrpn .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #0b1f3a, #d4af37, #0b1f3a);
}
@media (max-width: 992px) {
  .cid-uKEmReWrpn .border-wrap {
    margin-top: 32px;
  }
}
.cid-uKEmReWrpn .mbr-section-title {
  color: #ffffff;
}
.cid-uKEmReWrpn .mbr-text,
.cid-uKEmReWrpn .text-wrapper {
  color: #bbbbbb;
  text-align: center;
}
.cid-uKEmReWrpn .mbr-section-title,
.cid-uKEmReWrpn .mbr-section-btn {
  text-align: center;
}
.cid-uKEmRguhYB {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uKEmRguhYB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKEmRguhYB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKEmRguhYB .row {
  justify-content: space-between;
}
.cid-uKEmRguhYB .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uKEmRguhYB .content-wrapper {
    padding: 0;
  }
}
.cid-uKEmRguhYB .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uKEmRguhYB .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uKEmRguhYB .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uKEmRguhYB .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uKEmRguhYB .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uKEmRguhYB .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uKEmRguhYB .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uKEmRguhYB .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uKEmRguhYB .mbr-section-title {
  color: #000000;
}
.cid-uKEmRguhYB .mbr-desc {
  color: #000000;
}
.cid-uKEmRguhYB .mbr-text {
  color: #fafafa;
}
.cid-uKESR8afC0 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uKESR8afC0 .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uKESR8afC0 .image-block {
    width: 100% !important;
  }
}
.cid-uKESR8afC0 h2 {
  margin-top: .5rem;
  font-family: 'Poiret One', display;
}
.cid-uKESR8afC0 .rojoloza {
  color: red;
}
.cid-uKESR8afC0 H2 {
  color: #fafafa;
}
.cid-uKEmRi2kdX {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uKEmRi2kdX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKEmRi2kdX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKEmRi2kdX .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uKEmRi2kdX .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uKEmRi2kdX .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uKEmRi2kdX .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uKEmRi2kdX .container {
    max-width: 100%;
  }
  .cid-uKEmRi2kdX .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uKEmRi2kdX .item-wrap {
  width: 100%;
}
.cid-uKEmRi2kdX .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uKEmRi2kdX .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uKEmRi2kdX .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uKEmRi2kdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uKEmRi2kdX .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uKEmRi2kdX .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uKEmRi2kdX .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uKEmRi2kdX .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uKEmRi2kdX .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #d4af37);
  box-shadow: 10px 10px 19px #0b1f3a, -10px -10px 19px #d4af37;
  transition: 0.4s all;
}
.cid-uKEmRi2kdX .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uKEmRi2kdX .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uKEmRi2kdX .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uKEmRi2kdX .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uKEmRi2kdX .col-links {
    padding-top: 20px;
  }
}
.cid-uKEmRi2kdX .mbr-section-subtitle {
  color: #d4af37;
  margin-bottom: 20px;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-uKEmRi2kdX .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uKEmRi2kdX .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #C4CFDE;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uKEmRi2kdX .list {
    text-align: center !important;
  }
}
.cid-uKEmRi2kdX .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uKEmRi2kdX .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uKEmRi2kdX .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uKEmRi2kdX .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #d4af37;
  transition: 0.4s all;
}
.cid-uKEmRi2kdX .list a:hover {
  color: #d4af37 !important;
  line-height: inherit !important;
}
.cid-uKEmRi2kdX .list a:hover:before {
  width: 100%;
}
.cid-uKEmRi2kdX .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uKEmRi2kdX .col-copyright {
    padding-top: 40px;
  }
}
.cid-uKEmRi2kdX .border-item {
  width: 100%;
  height: 1px;
  background-color: #d4af37;
}
.cid-uKEmRi2kdX .copyright {
  color: #C4CFDE;
  padding: 40px 0;
}
.cid-uKEmRi2kdX a {
  text-decoration: underline !important;
}
.cid-uKEmRhdL7R {
  z-index: 1000;
  width: 100%;
}
.cid-uKEmRhdL7R nav.navbar {
  position: fixed;
}
.cid-uKEmRhdL7R .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uKEmRhdL7R .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uKEmRhdL7R .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-uKEmRhdL7R .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uKEmRhdL7R .dropdown-item {
  border: none !important;
  background: #121212 !important;
}
.cid-uKEmRhdL7R .dropdown-item:hover,
.cid-uKEmRhdL7R .dropdown-item:focus {
  background: #fafafa !important;
  color: #d4af37 !important;
}
.cid-uKEmRhdL7R .dropdown-item:hover span {
  color: white;
}
.cid-uKEmRhdL7R .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKEmRhdL7R .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKEmRhdL7R .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKEmRhdL7R .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKEmRhdL7R .nav-link {
  position: relative;
}
.cid-uKEmRhdL7R .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uKEmRhdL7R .container {
    flex-wrap: nowrap;
  }
}
.cid-uKEmRhdL7R .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uKEmRhdL7R .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uKEmRhdL7R .dropdown-menu,
.cid-uKEmRhdL7R .navbar.opened {
  background: #121212 !important;
}
.cid-uKEmRhdL7R .nav-item:focus,
.cid-uKEmRhdL7R .nav-link:focus {
  outline: none;
}
.cid-uKEmRhdL7R .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKEmRhdL7R .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uKEmRhdL7R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKEmRhdL7R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKEmRhdL7R .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKEmRhdL7R .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKEmRhdL7R .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(18, 18, 18, 0.9);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uKEmRhdL7R .navbar.opened {
  transition: all 0.3s;
}
.cid-uKEmRhdL7R .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 3rem;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uKEmRhdL7R .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uKEmRhdL7R .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKEmRhdL7R .navbar.collapsed {
  justify-content: center;
}
.cid-uKEmRhdL7R .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKEmRhdL7R .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKEmRhdL7R .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uKEmRhdL7R .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKEmRhdL7R .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKEmRhdL7R .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-uKEmRhdL7R .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKEmRhdL7R .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKEmRhdL7R .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKEmRhdL7R .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKEmRhdL7R .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKEmRhdL7R .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKEmRhdL7R .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKEmRhdL7R .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-uKEmRhdL7R .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKEmRhdL7R .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKEmRhdL7R .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uKEmRhdL7R .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uKEmRhdL7R .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKEmRhdL7R .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKEmRhdL7R .navbar.navbar-short {
  min-height: 96px;
}
.cid-uKEmRhdL7R .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uKEmRhdL7R .navbar-brand {
  min-height: 96px;
  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-uKEmRhdL7R .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uKEmRhdL7R .navbar-brand .navbar-caption:hover,
.cid-uKEmRhdL7R .navbar-brand .navbar-caption:focus {
  color: #fafafa !important;
}
.cid-uKEmRhdL7R .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKEmRhdL7R .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uKEmRhdL7R .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #d4af37 !important;
}
.cid-uKEmRhdL7R .dropdown-item.active,
.cid-uKEmRhdL7R .dropdown-item:active {
  background-color: transparent;
}
.cid-uKEmRhdL7R .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKEmRhdL7R .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKEmRhdL7R .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKEmRhdL7R .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #121212;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uKEmRhdL7R .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uKEmRhdL7R .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uKEmRhdL7R .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKEmRhdL7R ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uKEmRhdL7R ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uKEmRhdL7R .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uKEmRhdL7R .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-uKEmRhdL7R .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uKEmRhdL7R .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uKEmRhdL7R 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: #121212 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uKEmRhdL7R button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKEmRhdL7R button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uKEmRhdL7R button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uKEmRhdL7R button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uKEmRhdL7R button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uKEmRhdL7R nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKEmRhdL7R nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKEmRhdL7R nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKEmRhdL7R nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKEmRhdL7R .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKEmRhdL7R a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKEmRhdL7R .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-uKEmRhdL7R .navbar {
    height: 70px;
  }
  .cid-uKEmRhdL7R .navbar.opened {
    height: auto;
  }
  .cid-uKEmRhdL7R .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKEmRhdL7R .navbar-nav {
  margin: 0 auto;
}
.cid-uKEmRhdL7R .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uKEmRhdL7R .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 8px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uKEmRhdL7R .nav-item .nav-link::after {
  color: #fafafa !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uKEmRhdL7R .nav-item .nav-link:hover {
  background-color: #fafafa;
  color: #d4af37 !important;
}
.cid-uKEmRhdL7R .nav-item .nav-link:hover::after {
  color: #d4af37 !important;
}
.cid-uKEmRhdL7R .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uKEmRhdL7R .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uKEmRhdL7R .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uKEmRhdL7R .navbar {
    justify-content: flex-start !important;
  }
  .cid-uKEmRhdL7R .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uKEmRhdL7R .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uKEmRhdL7R .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uKEmRhdL7R .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uKEmRhdL7R .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uKEmRhdL7R .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uKEmRhdL7R .content-wrap {
  min-height: 110px;
}
.cid-uKEmRhdL7R .mbr-section-btn .btn::after,
.cid-uKEmRhdL7R .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #d4af37, #d4af37 150%);
}
.cid-uKEmRhdL7R .mbr-section-btn .btn:hover,
.cid-uKEmRhdL7R .mbr-section-btn .btn:focus {
  color: #d4af37 !important;
}
.cid-uKEmRhdL7R .mbr-section-btn .btn:hover::after,
.cid-uKEmRhdL7R .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #d4af37, #d4af37 150%);
  opacity: 1;
}
.cid-uKEnW0cpXM {
  background-color: #121212;
}
.cid-uKEnW0cpXM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKEnW0cpXM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKEnW0cpXM .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uKEnW0cpXM .container-fluid {
    padding: 0 25px;
  }
}
.cid-uKEnW0cpXM .container-fluid .row {
  padding: 0;
}
.cid-uKEnW0cpXM .title-wrapper .image-wrapper {
  margin-bottom: 36px;
}
.cid-uKEnW0cpXM .title-wrapper .image-wrapper img {
  width: 108px;
  height: 108px;
  display: inline;
}
.cid-uKEnW0cpXM .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uKEnW0cpXM .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uKEnW0cpXM .title-wrapper .mbr-section-btn .btn {
  background-image: linear-gradient(99deg, rgba(255, 255, 255, 0) 30%, #ffffff 100%), radial-gradient(circle at 50% 50%, #ffffff 0, rgba(255, 255, 255, 0) 70%);
  color: #000000 !important;
}
.cid-uKEnW0cpXM .mbr-section-title {
  color: #ffffff;
}
.cid-uKEnW0cpXM .mbr-text {
  color: #fafafa;
  text-align: center;
}
.cid-uKEnW0cpXM .mbr-section-title,
.cid-uKEnW0cpXM .mbr-section-btn,
.cid-uKEnW0cpXM .image-wrapper {
  text-align: center;
}
.cid-uKET3on0iC {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uKET3on0iC .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uKET3on0iC .image-block {
    width: 100% !important;
  }
}
.cid-uKET3on0iC h2 {
  margin-top: .5rem;
  font-family: 'Poiret One', display;
}
.cid-uKET3on0iC .rojoloza {
  color: red;
}
.cid-uKET3on0iC H2 {
  color: #fafafa;
}
.cid-uKEmRi2kdX {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uKEmRi2kdX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKEmRi2kdX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKEmRi2kdX .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uKEmRi2kdX .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uKEmRi2kdX .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uKEmRi2kdX .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uKEmRi2kdX .container {
    max-width: 100%;
  }
  .cid-uKEmRi2kdX .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uKEmRi2kdX .item-wrap {
  width: 100%;
}
.cid-uKEmRi2kdX .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uKEmRi2kdX .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uKEmRi2kdX .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uKEmRi2kdX .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uKEmRi2kdX .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uKEmRi2kdX .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uKEmRi2kdX .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uKEmRi2kdX .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uKEmRi2kdX .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #d4af37);
  box-shadow: 10px 10px 19px #0b1f3a, -10px -10px 19px #d4af37;
  transition: 0.4s all;
}
.cid-uKEmRi2kdX .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uKEmRi2kdX .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uKEmRi2kdX .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uKEmRi2kdX .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uKEmRi2kdX .col-links {
    padding-top: 20px;
  }
}
.cid-uKEmRi2kdX .mbr-section-subtitle {
  color: #d4af37;
  margin-bottom: 20px;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-uKEmRi2kdX .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uKEmRi2kdX .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #C4CFDE;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uKEmRi2kdX .list {
    text-align: center !important;
  }
}
.cid-uKEmRi2kdX .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uKEmRi2kdX .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uKEmRi2kdX .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uKEmRi2kdX .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #d4af37;
  transition: 0.4s all;
}
.cid-uKEmRi2kdX .list a:hover {
  color: #d4af37 !important;
  line-height: inherit !important;
}
.cid-uKEmRi2kdX .list a:hover:before {
  width: 100%;
}
.cid-uKEmRi2kdX .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uKEmRi2kdX .col-copyright {
    padding-top: 40px;
  }
}
.cid-uKEmRi2kdX .border-item {
  width: 100%;
  height: 1px;
  background-color: #d4af37;
}
.cid-uKEmRi2kdX .copyright {
  color: #C4CFDE;
  padding: 40px 0;
}
.cid-uKEmRi2kdX a {
  text-decoration: underline !important;
}
.cid-uKEymH9YcW {
  z-index: 1000;
  width: 100%;
}
.cid-uKEymH9YcW nav.navbar {
  position: fixed;
}
.cid-uKEymH9YcW .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uKEymH9YcW .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uKEymH9YcW .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-uKEymH9YcW .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uKEymH9YcW .dropdown-item {
  border: none !important;
  background: #121212 !important;
}
.cid-uKEymH9YcW .dropdown-item:hover,
.cid-uKEymH9YcW .dropdown-item:focus {
  background: #fafafa !important;
  color: #d4af37 !important;
}
.cid-uKEymH9YcW .dropdown-item:hover span {
  color: white;
}
.cid-uKEymH9YcW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKEymH9YcW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKEymH9YcW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKEymH9YcW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKEymH9YcW .nav-link {
  position: relative;
}
.cid-uKEymH9YcW .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uKEymH9YcW .container {
    flex-wrap: nowrap;
  }
}
.cid-uKEymH9YcW .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uKEymH9YcW .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uKEymH9YcW .dropdown-menu,
.cid-uKEymH9YcW .navbar.opened {
  background: #121212 !important;
}
.cid-uKEymH9YcW .nav-item:focus,
.cid-uKEymH9YcW .nav-link:focus {
  outline: none;
}
.cid-uKEymH9YcW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKEymH9YcW .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uKEymH9YcW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKEymH9YcW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKEymH9YcW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKEymH9YcW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKEymH9YcW .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(18, 18, 18, 0.9);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uKEymH9YcW .navbar.opened {
  transition: all 0.3s;
}
.cid-uKEymH9YcW .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 3rem;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uKEymH9YcW .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uKEymH9YcW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKEymH9YcW .navbar.collapsed {
  justify-content: center;
}
.cid-uKEymH9YcW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKEymH9YcW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKEymH9YcW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uKEymH9YcW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKEymH9YcW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKEymH9YcW .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-uKEymH9YcW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKEymH9YcW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKEymH9YcW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKEymH9YcW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKEymH9YcW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKEymH9YcW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKEymH9YcW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKEymH9YcW .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-uKEymH9YcW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKEymH9YcW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKEymH9YcW .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uKEymH9YcW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uKEymH9YcW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKEymH9YcW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKEymH9YcW .navbar.navbar-short {
  min-height: 96px;
}
.cid-uKEymH9YcW .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uKEymH9YcW .navbar-brand {
  min-height: 96px;
  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-uKEymH9YcW .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uKEymH9YcW .navbar-brand .navbar-caption:hover,
.cid-uKEymH9YcW .navbar-brand .navbar-caption:focus {
  color: #fafafa !important;
}
.cid-uKEymH9YcW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKEymH9YcW .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uKEymH9YcW .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #d4af37 !important;
}
.cid-uKEymH9YcW .dropdown-item.active,
.cid-uKEymH9YcW .dropdown-item:active {
  background-color: transparent;
}
.cid-uKEymH9YcW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKEymH9YcW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKEymH9YcW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKEymH9YcW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #121212;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uKEymH9YcW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uKEymH9YcW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uKEymH9YcW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKEymH9YcW ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uKEymH9YcW ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uKEymH9YcW .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uKEymH9YcW .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-uKEymH9YcW .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uKEymH9YcW .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uKEymH9YcW 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: #121212 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uKEymH9YcW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKEymH9YcW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uKEymH9YcW button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uKEymH9YcW button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uKEymH9YcW button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uKEymH9YcW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKEymH9YcW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKEymH9YcW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKEymH9YcW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKEymH9YcW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKEymH9YcW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKEymH9YcW .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-uKEymH9YcW .navbar {
    height: 70px;
  }
  .cid-uKEymH9YcW .navbar.opened {
    height: auto;
  }
  .cid-uKEymH9YcW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKEymH9YcW .navbar-nav {
  margin: 0 auto;
}
.cid-uKEymH9YcW .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uKEymH9YcW .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 8px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uKEymH9YcW .nav-item .nav-link::after {
  color: #fafafa !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uKEymH9YcW .nav-item .nav-link:hover {
  background-color: #fafafa;
  color: #d4af37 !important;
}
.cid-uKEymH9YcW .nav-item .nav-link:hover::after {
  color: #d4af37 !important;
}
.cid-uKEymH9YcW .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uKEymH9YcW .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uKEymH9YcW .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uKEymH9YcW .navbar {
    justify-content: flex-start !important;
  }
  .cid-uKEymH9YcW .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uKEymH9YcW .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uKEymH9YcW .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uKEymH9YcW .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uKEymH9YcW .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uKEymH9YcW .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uKEymH9YcW .content-wrap {
  min-height: 110px;
}
.cid-uKEymH9YcW .mbr-section-btn .btn::after,
.cid-uKEymH9YcW .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #d4af37, #d4af37 150%);
}
.cid-uKEymH9YcW .mbr-section-btn .btn:hover,
.cid-uKEymH9YcW .mbr-section-btn .btn:focus {
  color: #d4af37 !important;
}
.cid-uKEymH9YcW .mbr-section-btn .btn:hover::after,
.cid-uKEymH9YcW .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #d4af37, #d4af37 150%);
  opacity: 1;
}
.cid-uKEymFOwh0 {
  padding-top: 12rem;
  padding-bottom: 1rem;
  background-color: #080813;
}
.cid-uKEymFOwh0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKEymFOwh0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKEymFOwh0 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uKEymFOwh0 .content-wrapper .mbr-section-title span {
  color: #d4af37;
}
.cid-uKEymFOwh0 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uKEymFOwh0 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uKEymFOwh0 .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #0b1f3a, #d4af37, #0b1f3a);
}
@media (max-width: 992px) {
  .cid-uKEymFOwh0 .border-wrap {
    margin-top: 32px;
  }
}
.cid-uKEymFOwh0 .mbr-section-title {
  color: #ffffff;
}
.cid-uKEymFOwh0 .mbr-text,
.cid-uKEymFOwh0 .text-wrapper {
  color: #bbbbbb;
  text-align: center;
}
.cid-uKEymFOwh0 .mbr-section-title,
.cid-uKEymFOwh0 .mbr-section-btn {
  text-align: center;
}
.cid-uKEymGD0p0 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uKEymGD0p0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKEymGD0p0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKEymGD0p0 .row {
  justify-content: space-between;
}
.cid-uKEymGD0p0 .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uKEymGD0p0 .content-wrapper {
    padding: 0;
  }
}
.cid-uKEymGD0p0 .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uKEymGD0p0 .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uKEymGD0p0 .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uKEymGD0p0 .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uKEymGD0p0 .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uKEymGD0p0 .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uKEymGD0p0 .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uKEymGD0p0 .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uKEymGD0p0 .mbr-section-title {
  color: #000000;
}
.cid-uKEymGD0p0 .mbr-desc {
  color: #000000;
}
.cid-uKEymGD0p0 .mbr-text {
  color: #fafafa;
}
.cid-uKESX0XOMg {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uKESX0XOMg .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uKESX0XOMg .image-block {
    width: 100% !important;
  }
}
.cid-uKESX0XOMg h2 {
  margin-top: .5rem;
  font-family: 'Poiret One', display;
}
.cid-uKESX0XOMg .rojoloza {
  color: red;
}
.cid-uKESX0XOMg H2 {
  color: #fafafa;
}
.cid-uKEymHPIJv {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uKEymHPIJv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKEymHPIJv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKEymHPIJv .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uKEymHPIJv .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uKEymHPIJv .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uKEymHPIJv .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uKEymHPIJv .container {
    max-width: 100%;
  }
  .cid-uKEymHPIJv .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uKEymHPIJv .item-wrap {
  width: 100%;
}
.cid-uKEymHPIJv .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uKEymHPIJv .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uKEymHPIJv .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uKEymHPIJv .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uKEymHPIJv .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uKEymHPIJv .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uKEymHPIJv .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uKEymHPIJv .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uKEymHPIJv .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #d4af37);
  box-shadow: 10px 10px 19px #0b1f3a, -10px -10px 19px #d4af37;
  transition: 0.4s all;
}
.cid-uKEymHPIJv .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uKEymHPIJv .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uKEymHPIJv .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uKEymHPIJv .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uKEymHPIJv .col-links {
    padding-top: 20px;
  }
}
.cid-uKEymHPIJv .mbr-section-subtitle {
  color: #d4af37;
  margin-bottom: 20px;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-uKEymHPIJv .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uKEymHPIJv .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #C4CFDE;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uKEymHPIJv .list {
    text-align: center !important;
  }
}
.cid-uKEymHPIJv .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uKEymHPIJv .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uKEymHPIJv .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uKEymHPIJv .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #d4af37;
  transition: 0.4s all;
}
.cid-uKEymHPIJv .list a:hover {
  color: #d4af37 !important;
  line-height: inherit !important;
}
.cid-uKEymHPIJv .list a:hover:before {
  width: 100%;
}
.cid-uKEymHPIJv .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uKEymHPIJv .col-copyright {
    padding-top: 40px;
  }
}
.cid-uKEymHPIJv .border-item {
  width: 100%;
  height: 1px;
  background-color: #d4af37;
}
.cid-uKEymHPIJv .copyright {
  color: #C4CFDE;
  padding: 40px 0;
}
.cid-uKEymHPIJv a {
  text-decoration: underline !important;
}
.cid-uKDdntgv2o {
  z-index: 1000;
  width: 100%;
}
.cid-uKDdntgv2o nav.navbar {
  position: fixed;
}
.cid-uKDdntgv2o .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uKDdntgv2o .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uKDdntgv2o .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-uKDdntgv2o .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uKDdntgv2o .dropdown-item {
  border: none !important;
  background: #121212 !important;
}
.cid-uKDdntgv2o .dropdown-item:hover,
.cid-uKDdntgv2o .dropdown-item:focus {
  background: #fafafa !important;
  color: #d4af37 !important;
}
.cid-uKDdntgv2o .dropdown-item:hover span {
  color: white;
}
.cid-uKDdntgv2o .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKDdntgv2o .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKDdntgv2o .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKDdntgv2o .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKDdntgv2o .nav-link {
  position: relative;
}
.cid-uKDdntgv2o .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uKDdntgv2o .container {
    flex-wrap: nowrap;
  }
}
.cid-uKDdntgv2o .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uKDdntgv2o .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uKDdntgv2o .dropdown-menu,
.cid-uKDdntgv2o .navbar.opened {
  background: #121212 !important;
}
.cid-uKDdntgv2o .nav-item:focus,
.cid-uKDdntgv2o .nav-link:focus {
  outline: none;
}
.cid-uKDdntgv2o .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKDdntgv2o .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uKDdntgv2o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKDdntgv2o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKDdntgv2o .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKDdntgv2o .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKDdntgv2o .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(18, 18, 18, 0.9);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uKDdntgv2o .navbar.opened {
  transition: all 0.3s;
}
.cid-uKDdntgv2o .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 3rem;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-uKDdntgv2o .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uKDdntgv2o .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKDdntgv2o .navbar.collapsed {
  justify-content: center;
}
.cid-uKDdntgv2o .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKDdntgv2o .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKDdntgv2o .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uKDdntgv2o .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKDdntgv2o .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKDdntgv2o .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-uKDdntgv2o .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKDdntgv2o .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKDdntgv2o .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKDdntgv2o .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKDdntgv2o .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKDdntgv2o .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKDdntgv2o .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKDdntgv2o .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-uKDdntgv2o .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKDdntgv2o .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKDdntgv2o .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uKDdntgv2o .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uKDdntgv2o .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKDdntgv2o .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKDdntgv2o .navbar.navbar-short {
  min-height: 96px;
}
.cid-uKDdntgv2o .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uKDdntgv2o .navbar-brand {
  min-height: 96px;
  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-uKDdntgv2o .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uKDdntgv2o .navbar-brand .navbar-caption:hover,
.cid-uKDdntgv2o .navbar-brand .navbar-caption:focus {
  color: #fafafa !important;
}
.cid-uKDdntgv2o .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKDdntgv2o .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uKDdntgv2o .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #d4af37 !important;
}
.cid-uKDdntgv2o .dropdown-item.active,
.cid-uKDdntgv2o .dropdown-item:active {
  background-color: transparent;
}
.cid-uKDdntgv2o .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKDdntgv2o .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKDdntgv2o .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKDdntgv2o .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #121212;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uKDdntgv2o .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uKDdntgv2o .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uKDdntgv2o .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKDdntgv2o ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uKDdntgv2o ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uKDdntgv2o .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uKDdntgv2o .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-uKDdntgv2o .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uKDdntgv2o .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uKDdntgv2o 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: #121212 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uKDdntgv2o button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKDdntgv2o button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uKDdntgv2o button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uKDdntgv2o button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uKDdntgv2o button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uKDdntgv2o nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKDdntgv2o nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKDdntgv2o nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKDdntgv2o nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKDdntgv2o .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKDdntgv2o a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKDdntgv2o .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-uKDdntgv2o .navbar {
    height: 70px;
  }
  .cid-uKDdntgv2o .navbar.opened {
    height: auto;
  }
  .cid-uKDdntgv2o .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKDdntgv2o .navbar-nav {
  margin: 0 auto;
}
.cid-uKDdntgv2o .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uKDdntgv2o .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 8px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-uKDdntgv2o .nav-item .nav-link::after {
  color: #fafafa !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uKDdntgv2o .nav-item .nav-link:hover {
  background-color: #fafafa;
  color: #d4af37 !important;
}
.cid-uKDdntgv2o .nav-item .nav-link:hover::after {
  color: #d4af37 !important;
}
.cid-uKDdntgv2o .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uKDdntgv2o .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uKDdntgv2o .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uKDdntgv2o .navbar {
    justify-content: flex-start !important;
  }
  .cid-uKDdntgv2o .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uKDdntgv2o .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uKDdntgv2o .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uKDdntgv2o .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uKDdntgv2o .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-uKDdntgv2o .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uKDdntgv2o .content-wrap {
  min-height: 110px;
}
.cid-uKDdntgv2o .mbr-section-btn .btn::after,
.cid-uKDdntgv2o .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #d4af37, #d4af37 150%);
}
.cid-uKDdntgv2o .mbr-section-btn .btn:hover,
.cid-uKDdntgv2o .mbr-section-btn .btn:focus {
  color: #d4af37 !important;
}
.cid-uKDdntgv2o .mbr-section-btn .btn:hover::after,
.cid-uKDdntgv2o .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #d4af37, #d4af37 150%);
  opacity: 1;
}
.cid-uKD3KOVIjh {
  position: relative;
}
.cid-uKD3KOVIjh::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(10deg, #000000 18%, transparent 90%, #000000 100%);
  pointer-events: none;
  z-index: 1;
}
.cid-uKD3KOVIjh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKD3KOVIjh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uKD3KOVIjh .content-wrapper {
  position: relative;
  z-index: 2;
  margin-top: 260px;
}
@media (max-width: 992px) {
  .cid-uKD3KOVIjh .content-wrapper {
    margin-top: 0;
  }
}
.cid-uKD3KOVIjh .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
  background-image: linear-gradient(180deg, #d4af37, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uKD3KOVIjh .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uKD3KOVIjh .mbr-section-title {
  color: #ffffff;
}
.cid-uKD3KOVIjh .mbr-text {
  color: #ffffff;
}
.cid-uKD3KOVIjh .mbr-section-title,
.cid-uKD3KOVIjh .mbr-section-btn {
  color: #d4af37;
}
.cid-uKCXq8XlaV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uKCXq8XlaV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKCXq8XlaV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uKCXq8XlaV .container {
    padding: 0 22px;
  }
}
.cid-uKCXq8XlaV .card {
  justify-content: center;
}
.cid-uKCXq8XlaV .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uKCXq8XlaV .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uKCXq8XlaV .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uKCXq8XlaV .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uKCXq8XlaV .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uKCXq8XlaV .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #d4af37;
}
@media (max-width: 1440px) {
  .cid-uKCXq8XlaV .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uKCXq8XlaV .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uKCXq8XlaV .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uKCXq8XlaV .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uKCXq8XlaV .mbr-section-title {
  color: #d4af37;
}
.cid-uKCXq8XlaV .mbr-text {
  color: #ffffff;
}
.cid-uKDnrYjJJY {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uKDnrYjJJY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKDnrYjJJY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKDnrYjJJY .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uKDnrYjJJY .container-fluid {
    padding: 0 25px;
  }
}
.cid-uKDnrYjJJY .container-fluid .row {
  padding: 0;
}
.cid-uKDnrYjJJY .row {
  justify-content: center;
}
.cid-uKDnrYjJJY .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uKDnrYjJJY .mbr-text {
  color: #d4af37;
  text-align: center;
}
.cid-uKCY9dECWq {
  background-color: #000000;
}
.cid-uKCY9dECWq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKCY9dECWq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKCY9dECWq .container-fluid {
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uKCY9dECWq .container-fluid {
    padding: 0;
  }
}
.cid-uKCY9dECWq .container-fluid .row {
  padding: 0;
}
.cid-uKCY9dECWq .image-wrapper img {
  height: 960px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uKCY9dECWq .image-wrapper img {
    height: 400px;
    margin-bottom: 100px;
  }
}
.cid-uKCY9dECWq .cards-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uKCY9dECWq .cards-wrap .cards {
  padding: 0 60px 0 98px;
}
@media (max-width: 1200px) {
  .cid-uKCY9dECWq .cards-wrap .cards {
    padding: 45px;
  }
}
@media (max-width: 1100px) {
  .cid-uKCY9dECWq .cards-wrap .cards {
    padding: 25px;
  }
}
.cid-uKCY9dECWq .cards-wrap .cards .card-wrapper {
  display: flex;
  margin-bottom: 90px;
}
.cid-uKCY9dECWq .cards-wrap .cards .card-wrapper:last-child {
  margin-bottom: 0;
}
.cid-uKCY9dECWq .cards-wrap .cards .card-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 90px;
  color: #d4af37;
  margin-right: 50px;
}
@media (max-width: 1200px) {
  .cid-uKCY9dECWq .cards-wrap .cards .card-wrapper .icon-wrapper .mbr-iconfont {
    margin-right: 25px;
  }
}
.cid-uKCY9dECWq .cards-wrap .cards .card-wrapper .text-wrapper .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uKCY9dECWq .cards-wrap .cards .card-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uKCY9dECWq .mbr-section-title {
  color: #d4af37;
}
.cid-uKCY9dECWq .item-text {
  color: #b6b6b6;
}
.cid-uKD4sBhviz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/d850745.jpg");
}
.cid-uKD4sBhviz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKD4sBhviz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKD4sBhviz .title-wrapper {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uKD4sBhviz .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uKD4sBhviz .title-wrapper .mbr-label {
  margin-bottom: 22px;
}
.cid-uKD4sBhviz .title-wrapper .title-wrap .mbr-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uKD4sBhviz .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-uKD4sBhviz .items-wrapper {
  justify-content: center;
  margin: 0 -24px;
}
.cid-uKD4sBhviz .items-wrapper .item {
  padding: 0 24px;
  margin-bottom: 122px;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uKD4sBhviz .items-wrapper .item {
    margin-bottom: 32px;
  }
}
.cid-uKD4sBhviz .items-wrapper .item .item-wrapper {
  border-radius: 0 !important;
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding-right: 122px;
}
@media (max-width: 1440px) {
  .cid-uKD4sBhviz .items-wrapper .item .item-wrapper {
    padding-right: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uKD4sBhviz .items-wrapper .item .item-wrapper {
    padding-right: 0;
    display: block;
  }
}
.cid-uKD4sBhviz .items-wrapper .item .item-wrapper .item-number {
  margin-bottom: 0;
  padding-right: 48px;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-uKD4sBhviz .items-wrapper .item .item-wrapper .item-number {
    padding-right: 0;
    margin-bottom: 16px;
  }
}
.cid-uKD4sBhviz .items-wrapper .item .item-wrapper .item-content {
  width: 77%;
}
@media (max-width: 992px) {
  .cid-uKD4sBhviz .items-wrapper .item .item-wrapper .item-content {
    width: 100%;
  }
}
.cid-uKD4sBhviz .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uKD4sBhviz .items-wrapper .item .item-wrapper .item-content .item-title {
    margin-bottom: 22px;
  }
}
.cid-uKD4sBhviz .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-uKD4sBhviz .items-wrapper .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uKD4sBhviz .items-wrapper .item .item-wrapper .item-content .mbr-section-btn {
    margin-top: 22px;
  }
}
.cid-uKD4sBhviz .image-wrapper {
  padding: 16px;
  border: 3px dashed #d4af37;
  transform: rotate(9deg);
}
@media (max-width: 992px) {
  .cid-uKD4sBhviz .image-wrapper {
    transform: none;
  }
}
.cid-uKD4sBhviz .image-wrapper img {
  height: 330px;
  object-fit: cover;
}
.cid-uKD4sBhviz .mbr-label {
  color: #d4af37;
}
.cid-uKD4sBhviz .mbr-section-title {
  color: #c10b02;
}
.cid-uKD4sBhviz .item-number {
  color: #d4af37;
}
.cid-uKD4sBhviz .item-title {
  color: #c10b02;
}
.cid-uKD4sBhviz .item-text {
  color: #fafafa;
}
.cid-uKD4sBhviz .item-title,
.cid-uKD4sBhviz .mbr-section-btn {
  color: #d4af37;
}
.cid-uKD4sBhviz .mbr-section-title,
.cid-uKD4sBhviz .title-wrap {
  color: #fafafa;
}
.cid-uKH5SN0eEf {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-uKH5SN0eEf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKH5SN0eEf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKH5SN0eEf .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uKH5SN0eEf .container-fluid {
    padding: 0 25px;
  }
}
.cid-uKH5SN0eEf .container-fluid .row {
  padding: 0;
}
.cid-uKH5SN0eEf .image-wrapper {
  padding-right: 18px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uKH5SN0eEf .image-wrapper {
    padding: 0;
    margin-bottom: 50px;
  }
}
.cid-uKH5SN0eEf .image-wrapper .image-main {
  height: 650px;
  object-fit: cover;
  border: 1px solid #282828;
}
@media (max-width: 992px) {
  .cid-uKH5SN0eEf .image-wrapper .image-main {
    height: 300px;
  }
}
.cid-uKH5SN0eEf .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .cid-uKH5SN0eEf .embla__slide {
    min-width: 100%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uKH5SN0eEf .embla__slide .card-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-uKH5SN0eEf .embla__slide .card-wrap .content-wrap {
  margin-bottom: 34px;
}
.cid-uKH5SN0eEf .embla__slide .card-wrap .content-wrap .card-text {
  margin-bottom: 0;
  opacity: .85;
}
.cid-uKH5SN0eEf .embla__slide .card-wrap .name-wrap .card-name {
  margin-bottom: 24px;
  opacity: .85;
}
.cid-uKH5SN0eEf .embla__slide .card-wrap .name-wrap .card-role {
  margin-bottom: 0;
  opacity: .85;
}
.cid-uKH5SN0eEf .embla__button--next,
.cid-uKH5SN0eEf .embla__button--prev {
  display: flex;
}
.cid-uKH5SN0eEf .embla__button {
  bottom: 6rem;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  color: #d4af37;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: .85;
}
.cid-uKH5SN0eEf .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uKH5SN0eEf .embla__button:hover {
  background: transparent;
  color: #d4af37;
}
.cid-uKH5SN0eEf .embla__button.embla__button--prev {
  left: 0;
  margin-left: 35%;
}
@media (max-width: 992px) {
  .cid-uKH5SN0eEf .embla__button.embla__button--prev {
    margin-left: 5%;
  }
}
.cid-uKH5SN0eEf .embla__button.embla__button--next {
  right: 0;
  margin-right: 35%;
}
@media (max-width: 992px) {
  .cid-uKH5SN0eEf .embla__button.embla__button--next {
    margin-right: 5%;
  }
}
@media (max-width: 992px) {
  .cid-uKH5SN0eEf .embla__button {
    bottom: 0;
  }
}
.cid-uKH5SN0eEf .embla {
  position: relative;
  width: 100%;
  padding: 9rem 50px;
  border: 1px solid #282828;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uKH5SN0eEf .embla {
    padding: 20px;
  }
}
.cid-uKH5SN0eEf .embla__viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.cid-uKH5SN0eEf .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uKH5SN0eEf .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uKH5SN0eEf .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uKH5SN0eEf .card-text {
  color: #ffffff;
  text-align: center;
}
.cid-uKH5SN0eEf .card-name {
  color: #ffffff;
  text-align: center;
}
.cid-uKH5SN0eEf .card-role {
  color: #ffffff;
  text-align: center;
}
.cid-uKESkDq3NH {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uKESkDq3NH .image-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uKESkDq3NH .image-block {
    width: 100% !important;
  }
}
.cid-uKESkDq3NH h2 {
  margin-top: .5rem;
  font-family: 'Poiret One', display;
}
.cid-uKESkDq3NH .rojoloza {
  color: red;
}
.cid-uKESkDq3NH H2 {
  color: #fafafa;
}
.cid-uKE5Ysvt4j {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uKE5Ysvt4j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKE5Ysvt4j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKE5Ysvt4j .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uKE5Ysvt4j .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uKE5Ysvt4j .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uKE5Ysvt4j .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uKE5Ysvt4j .container {
    max-width: 100%;
  }
  .cid-uKE5Ysvt4j .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uKE5Ysvt4j .item-wrap {
  width: 100%;
}
.cid-uKE5Ysvt4j .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uKE5Ysvt4j .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uKE5Ysvt4j .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uKE5Ysvt4j .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #d4af37);
  box-shadow: 10px 10px 19px #0b1f3a, -10px -10px 19px #d4af37;
  transition: 0.4s all;
}
.cid-uKE5Ysvt4j .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uKE5Ysvt4j .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uKE5Ysvt4j .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uKE5Ysvt4j .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uKE5Ysvt4j .col-links {
    padding-top: 20px;
  }
}
.cid-uKE5Ysvt4j .mbr-section-subtitle {
  color: #d4af37;
  margin-bottom: 20px;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-uKE5Ysvt4j .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uKE5Ysvt4j .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #C4CFDE;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uKE5Ysvt4j .list {
    text-align: center !important;
  }
}
.cid-uKE5Ysvt4j .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uKE5Ysvt4j .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uKE5Ysvt4j .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uKE5Ysvt4j .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #d4af37;
  transition: 0.4s all;
}
.cid-uKE5Ysvt4j .list a:hover {
  color: #d4af37 !important;
  line-height: inherit !important;
}
.cid-uKE5Ysvt4j .list a:hover:before {
  width: 100%;
}
.cid-uKE5Ysvt4j .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uKE5Ysvt4j .col-copyright {
    padding-top: 40px;
  }
}
.cid-uKE5Ysvt4j .border-item {
  width: 100%;
  height: 1px;
  background-color: #d4af37;
}
.cid-uKE5Ysvt4j .copyright {
  color: #C4CFDE;
  padding: 40px 0;
}
.cid-uKE5Ysvt4j a {
  text-decoration: underline !important;
}
