body {
  font-family: 'Manrope', sans-serif;
}
.display-1 {
  font-family: 'Manrope', sans-serif;
  font-size: 4.5rem;
  line-height: 1.1;
  letter-spacing: -1.9px;
}
.display-1 > .mbr-iconfont {
  font-size: 5.625rem;
}
.display-2 {
  font-family: 'Manrope', sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: -1.9px;
}
.display-2 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5625rem;
}
.display-5 {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.15rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((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.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #3acc3a !important;
}
.bg-info {
  background-color: #ffc159 !important;
}
.bg-warning {
  background-color: #ff7448 !important;
}
.bg-danger {
  background-color: #ff4848 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #2705fc !important;
  border-color: #2705fc !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: #1902a8 !important;
  border-color: #1902a8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1902a8 !important;
  border-color: #1902a8 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffc159 !important;
  border-color: #ffc159 !important;
  color: #593800 !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: #ffa102 !important;
  border-color: #ffa102 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #593800 !important;
  background-color: #ffa102 !important;
  border-color: #ffa102 !important;
}
.btn-success,
.btn-success:active {
  background-color: #3acc3a !important;
  border-color: #3acc3a !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: #248b24 !important;
  border-color: #248b24 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #248b24 !important;
  border-color: #248b24 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ff7448 !important;
  border-color: #ff7448 !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: #f03a00 !important;
  border-color: #f03a00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #f03a00 !important;
  border-color: #f03a00 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff4848 !important;
  border-color: #ff4848 !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #f00000 !important;
  border-color: #f00000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #f00000 !important;
  border-color: #f00000 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-black,
.btn-black:active {
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !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: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #2705fc;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #1902a8 !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: #2705fc !important;
  border-color: #2705fc !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffc159;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffa102 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #593800 !important;
  background-color: #ffc159 !important;
  border-color: #ffc159 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #3acc3a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #248b24 !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: #3acc3a !important;
  border-color: #3acc3a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff7448;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #f03a00 !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: #ff7448 !important;
  border-color: #ff7448 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff4848;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #f00000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4848 !important;
  border-color: #ff4848 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0a0a0a;
}
.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: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #2705fc !important;
}
.text-success {
  color: #3acc3a !important;
}
.text-info {
  color: #ffc159 !important;
}
.text-warning {
  color: #ff7448 !important;
}
.text-danger {
  color: #ff4848 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #161616 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #170299 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #217f21 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #f29800 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #e13600 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #e10000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #161616;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffc159;
}
.alert-warning {
  background-color: #ff7448;
}
.alert-danger {
  background-color: #ff4848;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #dcf6dc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.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: 'Manrope', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5625rem;
}
.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: #ffffff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5625rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffffff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #2705fc !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ffffff' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1392px;
  width: 94%;
}
@media (max-width: 767px) {
  .container {
    width: 100%;
  }
}
.row {
  justify-content: center;
}
.mbr-section-btn .btn {
  min-width: 120px;
  border-radius: 8px;
  padding: 16px 32px;
  line-height: 1.25;
  font-weight: 700 !important;
  box-shadow: none !important;
}
.mbr-section-btn .btn:hover {
  -webkit-transform: translate(0, -2px) !important;
  -ms-transform: translate(0, -2px) !important;
  transform: translate(0, -2px) !important;
}
.mbr-section-btn .btn-black-outline {
  background-color: #ffffff !important;
  border: 2px solid #161616;
}
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn .btn-black-outline:focus,
.mbr-section-btn .btn-black-outline:active {
  background-color: #c2c0bc !important;
  border: 2px solid #161616 !important;
}
.mbr-section-btn .btn-white-outline {
  background-color: transparent !important;
  border: 2px solid #ffffff;
  color: #ffffff !important;
}
.mbr-section-btn .btn-white-outline:hover,
.mbr-section-btn .btn-white-outline:focus,
.mbr-section-btn .btn-white-outline:active {
  background-color: transparent !important;
  border: 2px solid #ffffff !important;
  color: #ffffff !important;
}
.mbr-section-btn .btn-white {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.mbr-section-btn .btn-white:hover,
.mbr-section-btn .btn-white:focus,
.mbr-section-btn .btn-white:active {
  background-color: #ffffff !important;
  color: #000000 !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    width: 100%;
  }
  .mbr-section-btn .btn {
    width: 100%;
  }
}
b {
  font-weight: 700 !important;
}
.cid-t5xHG3shvy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy {
    min-height: 70px;
  }
}
.cid-t5xHG3shvy nav.navbar {
  position: fixed;
}
.cid-t5xHG3shvy .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-t5xHG3shvy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t5xHG3shvy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  border: 2px solid #161616 !important;
  background-color: #d8d5d1 !important;
  margin-top: -1px;
  margin-bottom: -1px;
}
.cid-t5xHG3shvy .dropdown-item:hover,
.cid-t5xHG3shvy .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-t5xHG3shvy .dropdown-item:hover span {
  color: white;
}
.cid-t5xHG3shvy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t5xHG3shvy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t5xHG3shvy .dropdown-item:hover,
.cid-t5xHG3shvy .dropdown-item:focus,
.cid-t5xHG3shvy .dropdown-item:active {
  background-color: #9ca387 !important;
}
.cid-t5xHG3shvy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t5xHG3shvy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t5xHG3shvy .nav-link {
  position: relative;
}
.cid-t5xHG3shvy .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t5xHG3shvy .container {
    flex-wrap: nowrap;
  }
}
.cid-t5xHG3shvy .iconfont-wrapper {
  color: #0a0a0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t5xHG3shvy .navbar-caption {
  font-weight: 700;
}
.cid-t5xHG3shvy .navbar-nav {
  margin-right: auto;
  margin-left: auto;
}
.cid-t5xHG3shvy .dropdown-menu,
.cid-t5xHG3shvy .navbar.opened {
  background: #090000 !important;
}
.cid-t5xHG3shvy .nav-item:focus,
.cid-t5xHG3shvy .nav-link:focus {
  outline: none;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t5xHG3shvy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t5xHG3shvy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t5xHG3shvy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t5xHG3shvy .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #090000;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar {
    min-height: 80px;
  }
  .cid-t5xHG3shvy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t5xHG3shvy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t5xHG3shvy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t5xHG3shvy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t5xHG3shvy .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-t5xHG3shvy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t5xHG3shvy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t5xHG3shvy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t5xHG3shvy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t5xHG3shvy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t5xHG3shvy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t5xHG3shvy .navbar.opened {
  transition: all 0.3s;
}
.cid-t5xHG3shvy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t5xHG3shvy .navbar .navbar-logo img {
  width: auto;
}
.cid-t5xHG3shvy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t5xHG3shvy .navbar.collapsed {
  justify-content: center;
}
.cid-t5xHG3shvy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t5xHG3shvy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5xHG3shvy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-t5xHG3shvy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t5xHG3shvy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t5xHG3shvy .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-t5xHG3shvy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t5xHG3shvy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t5xHG3shvy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-t5xHG3shvy .navbar.navbar-short {
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar.navbar-short {
    min-height: 70px;
  }
}
.cid-t5xHG3shvy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t5xHG3shvy .navbar.navbar-short .navbar-brand {
  min-height: 76px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar.navbar-short .navbar-brand {
    min-height: 70px;
  }
}
.cid-t5xHG3shvy .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;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar-brand {
    min-height: 80px;
  }
}
.cid-t5xHG3shvy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t5xHG3shvy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t5xHG3shvy .dropdown-item.active,
.cid-t5xHG3shvy .dropdown-item:active {
  background-color: transparent;
}
.cid-t5xHG3shvy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t5xHG3shvy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t5xHG3shvy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t5xHG3shvy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #090000;
}
.cid-t5xHG3shvy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t5xHG3shvy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t5xHG3shvy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t5xHG3shvy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t5xHG3shvy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a0a0a;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t5xHG3shvy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t5xHG3shvy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t5xHG3shvy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t5xHG3shvy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t5xHG3shvy .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-t5xHG3shvy .navbar {
    height: 70px;
  }
  .cid-t5xHG3shvy .navbar.opened {
    height: auto;
  }
  .cid-t5xHG3shvy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t5xHG3shvy .nav-item-transform {
  display: flex;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-t5xHG3shvy .nav-item .nav-link {
  color: #0A0A0A;
  font-weight: 700;
  padding: 16px !important;
  margin: 0 !important;
}
.cid-t5xHG3shvy .nav-item {
  font-weight: 700;
  margin-right: 16px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .nav-item {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-t5xHG3shvy .navbar .icons-menu {
    padding-right: 0 !important;
  }
}
.cid-t5xHHzZ0j3 {
  background-image: url("../../../assets/images/automatic-gates-2000x1500.jpg");
}
.cid-t5xHHzZ0j3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t5xHHzZ0j3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t5xHHzZ0j3 .col-text {
  position: relative;
  z-index: 10;
}
@media (min-width: 992px) {
  .cid-t5xHHzZ0j3 .col-text {
    padding-right: 28px;
  }
}
.cid-t5xHHzZ0j3 .col-img {
  position: relative;
}
@media (min-width: 992px) {
  .cid-t5xHHzZ0j3 .col-img {
    padding-left: 28px;
  }
}
.cid-t5xHHzZ0j3 .card-title {
  color: #ffffff;
  margin-top: 1rem;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t5xHHzZ0j3 .card-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
  }
}
.cid-t5xHHzZ0j3 .mbr-text {
  color: #ffffff;
  margin-top: 24px;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t5xHHzZ0j3 .mbr-text {
    padding-right: 0;
    margin-top: 1rem;
    text-align: center !important;
  }
}
.cid-t5xHHzZ0j3 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cid-t5xHHzZ0j3 .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-t5xHHzZ0j3 .mbr-section-btn {
    width: 100%;
  }
}
.cid-t5xHHzZ0j3 .image-wrapper {
  display: flex;
  position: relative;
  z-index: 10;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 510px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t5xHHzZ0j3 .image-wrapper {
    height: 360px;
    margin-top: 24px;
  }
}
@media (max-width: 575px) {
  .cid-t5xHHzZ0j3 .image-wrapper {
    height: auto;
  }
}
.cid-t5xHHzZ0j3 .image-wrapper img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.cid-t5xHHzZ0j3 .card-title,
.cid-t5xHHzZ0j3 .mbr-section-btn {
  color: #ffffff;
}
.cid-t5xHHzZ0j3 .mbr-text,
.cid-t5xHHzZ0j3 .link-wrap {
  color: #000000;
}
.cid-t5Bvo2RzY7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #0a0a0a;
  position: relative;
  overflow: hidden;
}
.cid-t5Bvo2RzY7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t5Bvo2RzY7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t5Bvo2RzY7 .row {
  justify-content: center;
}
.cid-t5Bvo2RzY7 .mbr-section-title {
  color: #d8d5d1;
  width: 100%;
}
.cid-t5Bvo2RzY7 .mbr-section-subtitle {
  color: #161616;
  width: 100%;
}
.cid-t5Bvo2RzY7 .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 8px;
  border: 2px solid #000000;
  border-radius: 50%;
  font-size: 20px;
  color: #000000;
  margin-bottom: 1rem;
  width: min-content;
}
@media (max-width: 575px) {
  .cid-t5Bvo2RzY7 .mbr-iconfont {
    margin-bottom: 0;
    margin-right: 12px;
    padding: 5px;
  }
}
.cid-t5Bvo2RzY7 .card-row {
  justify-content: flex-start;
}
@media (min-width: 576px) {
  .cid-t5Bvo2RzY7 .card-row {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media (min-width: 576px) {
  .cid-t5Bvo2RzY7 .card {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .cid-t5Bvo2RzY7 .card:nth-child(n+3) {
    margin-top: 56px;
  }
}
@media (max-width: 575px) {
  .cid-t5Bvo2RzY7 .card:nth-child(n+2) {
    margin-top: 56px;
  }
}
.cid-t5Bvo2RzY7 .card-head {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 575px) {
  .cid-t5Bvo2RzY7 .card-head {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}
.cid-t5Bvo2RzY7 .card-title {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-t5Bvo2RzY7 .card-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-t5Bvo2RzY7 .circle-blur {
  position: absolute;
  top: -5%;
  right: -5% !important;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-t5Bvo2RzY7 .card-title,
.cid-t5Bvo2RzY7 .iconfont-wrapper {
  color: #ffffff;
}
.cid-uQXE2KK9tv {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #161616;
}
.cid-uQXE2KK9tv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQXE2KK9tv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQXE2KK9tv .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uQXE2KK9tv .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uQXE2KK9tv .container {
    padding: 0 25px;
  }
}
.cid-uQXE2KK9tv .row {
  justify-content: center;
  margin: 0;
}
.cid-uQXE2KK9tv .item {
  padding: 0;
  border-right: 2px solid #161616;
}
.cid-uQXE2KK9tv .item:nth-child(6n) {
  border-right: none;
}
@media (max-width: 992px) {
  .cid-uQXE2KK9tv .item {
    border-right: none;
  }
  .cid-uQXE2KK9tv .item:nth-child(2n) {
    border-left: 2px solid #161616;
  }
}
@media (max-width: 992px) and (max-width: 768px) {
  .cid-uQXE2KK9tv .item:nth-child(2n) {
    border-left: none;
  }
}
@media (max-width: 768px) {
  .cid-uQXE2KK9tv .item {
    border-bottom: 2px solid #161616;
  }
  .cid-uQXE2KK9tv .item:last-child {
    border-bottom: none;
  }
}
.cid-uQXE2KK9tv .item .item-wrapper {
  border-radius: 0 !important;
}
.cid-uQXE2KK9tv .item .item-wrapper .item-img {
  padding: 0 25px;
}
.cid-uQXE2KK9tv .item .item-wrapper .item-img img {
  height: 250px;
  object-fit: contain;
}
.cid-t5BxlAFedR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}
.cid-t5BxlAFedR .mbr-fallback-image.disabled {
  display: none;
}
.cid-t5BxlAFedR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5BxlAFedR .col-text {
    padding-right: 28px;
  }
}
@media (min-width: 992px) {
  .cid-t5BxlAFedR .col-img {
    padding-left: 28px;
  }
}
.cid-t5BxlAFedR .card-title {
  color: #161616;
  margin-top: 1rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t5BxlAFedR .card-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
  }
}
.cid-t5BxlAFedR .mbr-text {
  color: #161616;
  margin-top: 2rem;
  padding-right: 40px;
  width: 100%;
}
@media (max-width: 1199px) {
  .cid-t5BxlAFedR .mbr-text {
    margin-top: 1.5rem;
  }
}
@media (max-width: 991px) {
  .cid-t5BxlAFedR .mbr-text {
    text-align: center !important;
    padding-right: 0;
    margin-top: 1rem;
  }
}
.cid-t5BxlAFedR .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cid-t5BxlAFedR .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-t5BxlAFedR .image-wrapper {
  overflow: hidden;
  width: 100%;
  height: 560px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .cid-t5BxlAFedR .image-wrapper {
    height: 480px;
  }
}
@media (max-width: 575px) {
  .cid-t5BxlAFedR .image-wrapper {
    height: 360px;
  }
}
@media (max-width: 991px) {
  .cid-t5BxlAFedR .image-wrapper {
    margin-top: 56px;
  }
}
.cid-t5BxlAFedR .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-t5BxlAFedR .circle-blur {
  position: absolute;
  top: -5%;
  left: -5%;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-t5BxlAFedR .mbr-text,
.cid-t5BxlAFedR .link-wrap {
  color: #ffffff;
}
.cid-t5BHZMuN7F {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0a0a0a;
}
.cid-t5BHZMuN7F .mbr-fallback-image.disabled {
  display: none;
}
.cid-t5BHZMuN7F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t5BHZMuN7F .container {
  display: flex;
  justify-content: center;
}
.cid-t5BHZMuN7F .row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.cid-t5BHZMuN7F .col-copyright {
  padding: 0;
}
.cid-t5BHZMuN7F .copyright {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t5BHZMuN7F .copyright {
    text-align: center;
  }
}
.cid-uPJ80VvO8S {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-uPJ80VvO8S {
    min-height: 70px;
  }
}
.cid-uPJ80VvO8S nav.navbar {
  position: fixed;
}
.cid-uPJ80VvO8S .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-uPJ80VvO8S .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPJ80VvO8S .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  border: 2px solid #161616 !important;
  background-color: #d8d5d1 !important;
  margin-top: -1px;
  margin-bottom: -1px;
}
.cid-uPJ80VvO8S .dropdown-item:hover,
.cid-uPJ80VvO8S .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uPJ80VvO8S .dropdown-item:hover span {
  color: white;
}
.cid-uPJ80VvO8S .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPJ80VvO8S .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPJ80VvO8S .dropdown-item:hover,
.cid-uPJ80VvO8S .dropdown-item:focus,
.cid-uPJ80VvO8S .dropdown-item:active {
  background-color: #9ca387 !important;
}
.cid-uPJ80VvO8S .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPJ80VvO8S .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPJ80VvO8S .nav-link {
  position: relative;
}
.cid-uPJ80VvO8S .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uPJ80VvO8S .container {
    flex-wrap: nowrap;
  }
}
.cid-uPJ80VvO8S .iconfont-wrapper {
  color: #0a0a0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPJ80VvO8S .navbar-caption {
  font-weight: 700;
}
.cid-uPJ80VvO8S .navbar-nav {
  margin-right: auto;
  margin-left: auto;
}
.cid-uPJ80VvO8S .dropdown-menu,
.cid-uPJ80VvO8S .navbar.opened {
  background: #090000 !important;
}
.cid-uPJ80VvO8S .nav-item:focus,
.cid-uPJ80VvO8S .nav-link:focus {
  outline: none;
}
.cid-uPJ80VvO8S .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPJ80VvO8S .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPJ80VvO8S .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPJ80VvO8S .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPJ80VvO8S .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPJ80VvO8S .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPJ80VvO8S .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #090000;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 991px) {
  .cid-uPJ80VvO8S .navbar {
    min-height: 80px;
  }
  .cid-uPJ80VvO8S .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPJ80VvO8S .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPJ80VvO8S .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPJ80VvO8S .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPJ80VvO8S .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-uPJ80VvO8S .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPJ80VvO8S .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPJ80VvO8S .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPJ80VvO8S .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPJ80VvO8S .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPJ80VvO8S .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPJ80VvO8S .navbar.opened {
  transition: all 0.3s;
}
.cid-uPJ80VvO8S .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPJ80VvO8S .navbar .navbar-logo img {
  width: auto;
}
.cid-uPJ80VvO8S .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPJ80VvO8S .navbar.collapsed {
  justify-content: center;
}
.cid-uPJ80VvO8S .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPJ80VvO8S .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPJ80VvO8S .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uPJ80VvO8S .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPJ80VvO8S .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPJ80VvO8S .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-uPJ80VvO8S .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPJ80VvO8S .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPJ80VvO8S .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-uPJ80VvO8S .navbar.navbar-short {
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-uPJ80VvO8S .navbar.navbar-short {
    min-height: 70px;
  }
}
.cid-uPJ80VvO8S .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPJ80VvO8S .navbar.navbar-short .navbar-brand {
  min-height: 76px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPJ80VvO8S .navbar.navbar-short .navbar-brand {
    min-height: 70px;
  }
}
.cid-uPJ80VvO8S .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;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uPJ80VvO8S .navbar-brand {
    min-height: 80px;
  }
}
.cid-uPJ80VvO8S .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPJ80VvO8S .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPJ80VvO8S .dropdown-item.active,
.cid-uPJ80VvO8S .dropdown-item:active {
  background-color: transparent;
}
.cid-uPJ80VvO8S .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPJ80VvO8S .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPJ80VvO8S .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPJ80VvO8S .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #090000;
}
.cid-uPJ80VvO8S .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPJ80VvO8S .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPJ80VvO8S ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPJ80VvO8S .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPJ80VvO8S button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPJ80VvO8S button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a0a0a;
}
.cid-uPJ80VvO8S button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPJ80VvO8S button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPJ80VvO8S button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPJ80VvO8S button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPJ80VvO8S nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPJ80VvO8S nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPJ80VvO8S nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPJ80VvO8S nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPJ80VvO8S .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPJ80VvO8S a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPJ80VvO8S .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-uPJ80VvO8S .navbar {
    height: 70px;
  }
  .cid-uPJ80VvO8S .navbar.opened {
    height: auto;
  }
  .cid-uPJ80VvO8S .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPJ80VvO8S .nav-item-transform {
  display: flex;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uPJ80VvO8S .nav-item .nav-link {
  color: #0A0A0A;
  font-weight: 700;
  padding: 16px !important;
  margin: 0 !important;
}
.cid-uPJ80VvO8S .nav-item {
  font-weight: 700;
  margin-right: 16px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPJ80VvO8S .nav-item {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-uPJ80VvO8S .navbar .icons-menu {
    padding-right: 0 !important;
  }
}
.cid-uPJebEvVVa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #131313;
}
.cid-uPJebEvVVa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJebEvVVa .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-uPJebEvVVa .container {
    padding: 0 30px;
  }
}
.cid-uPJebEvVVa .row .card {
  justify-content: center;
}
.cid-uPJebEvVVa .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uPJebEvVVa .title-wrapper .mbr-section-subtitle {
  opacity: .4;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uPJebEvVVa .image-wrapper {
    margin-top: 30px;
  }
}
.cid-uPJebEvVVa .image-wrapper img {
  width: 500px;
  height: 500px;
  border-radius: 100% !important;
  margin: 0 0 0 auto;
  object-fit: cover;
}
@media (max-width: 1400px) {
  .cid-uPJebEvVVa .image-wrapper img {
    width: 450px;
    height: 450px;
  }
}
@media (max-width: 1199px) {
  .cid-uPJebEvVVa .image-wrapper img {
    width: 360px;
    height: 360px;
  }
}
@media (max-width: 992px) {
  .cid-uPJebEvVVa .image-wrapper img {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .cid-uPJebEvVVa .image-wrapper img {
    width: 245px;
    height: 245px;
  }
}
.cid-uPJebEvVVa .mbr-section-title {
  color: #ffffff;
}
.cid-uPJebEvVVa .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uPJ80WXpfz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0a0a0a;
  position: relative;
  overflow: hidden;
}
.cid-uPJ80WXpfz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJ80WXpfz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJ80WXpfz .row {
  justify-content: center;
}
.cid-uPJ80WXpfz .mbr-section-title {
  color: #161616;
  width: 100%;
}
.cid-uPJ80WXpfz .mbr-section-subtitle {
  color: #161616;
  width: 100%;
}
.cid-uPJ80WXpfz .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 8px;
  border: 2px solid #000000;
  border-radius: 50%;
  font-size: 20px;
  color: #000000;
  margin-bottom: 1rem;
  width: min-content;
}
@media (max-width: 575px) {
  .cid-uPJ80WXpfz .mbr-iconfont {
    margin-bottom: 0;
    margin-right: 12px;
    padding: 5px;
  }
}
.cid-uPJ80WXpfz .card-row {
  justify-content: flex-start;
}
@media (min-width: 576px) {
  .cid-uPJ80WXpfz .card-row {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media (min-width: 576px) {
  .cid-uPJ80WXpfz .card {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uPJ80WXpfz .card:nth-child(n+3) {
    margin-top: 56px;
  }
}
@media (max-width: 575px) {
  .cid-uPJ80WXpfz .card:nth-child(n+2) {
    margin-top: 56px;
  }
}
.cid-uPJ80WXpfz .card-head {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 575px) {
  .cid-uPJ80WXpfz .card-head {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}
.cid-uPJ80WXpfz .card-title {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-uPJ80WXpfz .card-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-uPJ80WXpfz .circle-blur {
  position: absolute;
  top: -5%;
  right: -5% !important;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-uPJ80WXpfz .card-title,
.cid-uPJ80WXpfz .iconfont-wrapper {
  color: #ffffff;
}
.cid-uPWbui8FeV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #090000;
  position: relative;
  overflow: hidden;
}
.cid-uPWbui8FeV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPWbui8FeV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPWbui8FeV .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uPWbui8FeV .col-text {
    padding-left: 28px;
  }
}
@media (min-width: 992px) {
  .cid-uPWbui8FeV .col-img {
    padding-right: 28px;
  }
}
.cid-uPWbui8FeV .card-title {
  color: #161616;
  margin-top: 1rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uPWbui8FeV .card-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
  }
}
.cid-uPWbui8FeV .mbr-text {
  color: #161616;
  margin-top: 2rem;
  padding-right: 40px;
  width: 100%;
}
@media (max-width: 1199px) {
  .cid-uPWbui8FeV .mbr-text {
    margin-top: 1.5rem;
  }
}
@media (max-width: 991px) {
  .cid-uPWbui8FeV .mbr-text {
    text-align: center !important;
    padding-right: 0;
    margin-top: 1rem;
  }
}
.cid-uPWbui8FeV .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cid-uPWbui8FeV .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uPWbui8FeV .image-wrapper {
  overflow: hidden;
  width: 100%;
  height: 560px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #16c016;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .cid-uPWbui8FeV .image-wrapper {
    height: 480px;
  }
}
@media (max-width: 575px) {
  .cid-uPWbui8FeV .image-wrapper {
    height: 360px;
  }
}
@media (max-width: 991px) {
  .cid-uPWbui8FeV .image-wrapper {
    margin-top: 56px;
  }
}
.cid-uPWbui8FeV .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uPWbui8FeV .circle-blur {
  position: absolute;
  top: -5%;
  right: -5% !important;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-uPWbui8FeV .card-title,
.cid-uPWbui8FeV .mbr-section-btn {
  color: #ffffff;
}
.cid-uPWbui8FeV .mbr-text,
.cid-uPWbui8FeV .link-wrap {
  color: #ffffff;
}
.cid-uPJawycVDv {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background: linear-gradient(to bottom, #000000, #0e0e0e);
}
.cid-uPJawycVDv .item-subtitle {
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
}
.cid-uPJawycVDv .item-title {
  border-bottom: 1px solid currentColor;
  color: #232323;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.cid-uPJawycVDv img,
.cid-uPJawycVDv .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uPJawycVDv .item:focus,
.cid-uPJawycVDv span:focus {
  outline: none;
}
.cid-uPJawycVDv .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uPJawycVDv .item {
    margin-bottom: 1rem;
  }
}
.cid-uPJawycVDv .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uPJawycVDv .mbr-section-title {
  color: #232323;
}
.cid-uPJawycVDv .mbr-text,
.cid-uPJawycVDv .mbr-section-btn {
  color: #232323;
}
.cid-uPJawycVDv .content-head {
  max-width: 800px;
}
.cid-uPJ80YZBXY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0a0a0a;
}
.cid-uPJ80YZBXY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJ80YZBXY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJ80YZBXY .container {
  display: flex;
  justify-content: center;
}
.cid-uPJ80YZBXY .row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.cid-uPJ80YZBXY .col-copyright {
  padding: 0;
}
.cid-uPJ80YZBXY .copyright {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPJ80YZBXY .copyright {
    text-align: center;
  }
}
.cid-uPJfC16OCq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-uPJfC16OCq {
    min-height: 70px;
  }
}
.cid-uPJfC16OCq nav.navbar {
  position: fixed;
}
.cid-uPJfC16OCq .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-uPJfC16OCq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPJfC16OCq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  border: 2px solid #161616 !important;
  background-color: #d8d5d1 !important;
  margin-top: -1px;
  margin-bottom: -1px;
}
.cid-uPJfC16OCq .dropdown-item:hover,
.cid-uPJfC16OCq .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uPJfC16OCq .dropdown-item:hover span {
  color: white;
}
.cid-uPJfC16OCq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPJfC16OCq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPJfC16OCq .dropdown-item:hover,
.cid-uPJfC16OCq .dropdown-item:focus,
.cid-uPJfC16OCq .dropdown-item:active {
  background-color: #9ca387 !important;
}
.cid-uPJfC16OCq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPJfC16OCq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPJfC16OCq .nav-link {
  position: relative;
}
.cid-uPJfC16OCq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uPJfC16OCq .container {
    flex-wrap: nowrap;
  }
}
.cid-uPJfC16OCq .iconfont-wrapper {
  color: #0a0a0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPJfC16OCq .navbar-caption {
  font-weight: 700;
}
.cid-uPJfC16OCq .navbar-nav {
  margin-right: auto;
  margin-left: auto;
}
.cid-uPJfC16OCq .dropdown-menu,
.cid-uPJfC16OCq .navbar.opened {
  background: #090000 !important;
}
.cid-uPJfC16OCq .nav-item:focus,
.cid-uPJfC16OCq .nav-link:focus {
  outline: none;
}
.cid-uPJfC16OCq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPJfC16OCq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPJfC16OCq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPJfC16OCq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPJfC16OCq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPJfC16OCq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPJfC16OCq .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #090000;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 991px) {
  .cid-uPJfC16OCq .navbar {
    min-height: 80px;
  }
  .cid-uPJfC16OCq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPJfC16OCq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPJfC16OCq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPJfC16OCq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPJfC16OCq .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-uPJfC16OCq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPJfC16OCq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPJfC16OCq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPJfC16OCq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPJfC16OCq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPJfC16OCq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPJfC16OCq .navbar.opened {
  transition: all 0.3s;
}
.cid-uPJfC16OCq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPJfC16OCq .navbar .navbar-logo img {
  width: auto;
}
.cid-uPJfC16OCq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPJfC16OCq .navbar.collapsed {
  justify-content: center;
}
.cid-uPJfC16OCq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPJfC16OCq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPJfC16OCq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uPJfC16OCq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPJfC16OCq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPJfC16OCq .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-uPJfC16OCq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPJfC16OCq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPJfC16OCq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-uPJfC16OCq .navbar.navbar-short {
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-uPJfC16OCq .navbar.navbar-short {
    min-height: 70px;
  }
}
.cid-uPJfC16OCq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPJfC16OCq .navbar.navbar-short .navbar-brand {
  min-height: 76px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPJfC16OCq .navbar.navbar-short .navbar-brand {
    min-height: 70px;
  }
}
.cid-uPJfC16OCq .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;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uPJfC16OCq .navbar-brand {
    min-height: 80px;
  }
}
.cid-uPJfC16OCq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPJfC16OCq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPJfC16OCq .dropdown-item.active,
.cid-uPJfC16OCq .dropdown-item:active {
  background-color: transparent;
}
.cid-uPJfC16OCq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPJfC16OCq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPJfC16OCq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPJfC16OCq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #090000;
}
.cid-uPJfC16OCq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPJfC16OCq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPJfC16OCq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPJfC16OCq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPJfC16OCq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPJfC16OCq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a0a0a;
}
.cid-uPJfC16OCq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPJfC16OCq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPJfC16OCq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPJfC16OCq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPJfC16OCq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPJfC16OCq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPJfC16OCq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPJfC16OCq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPJfC16OCq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPJfC16OCq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPJfC16OCq .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-uPJfC16OCq .navbar {
    height: 70px;
  }
  .cid-uPJfC16OCq .navbar.opened {
    height: auto;
  }
  .cid-uPJfC16OCq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPJfC16OCq .nav-item-transform {
  display: flex;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uPJfC16OCq .nav-item .nav-link {
  color: #0A0A0A;
  font-weight: 700;
  padding: 16px !important;
  margin: 0 !important;
}
.cid-uPJfC16OCq .nav-item {
  font-weight: 700;
  margin-right: 16px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPJfC16OCq .nav-item {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-uPJfC16OCq .navbar .icons-menu {
    padding-right: 0 !important;
  }
}
.cid-uPJhBmhhfz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0a0a0a;
}
.cid-uPJhBmhhfz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJhBmhhfz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJhBmhhfz .content-wrapper {
  display: flex;
  position: relative;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uPJhBmhhfz .content-wrapper {
    padding: 30px 20px;
  }
}
.cid-uPJhBmhhfz .content-wrapper .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uPJhBmhhfz .content-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uPJhBmhhfz .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-image: linear-gradient(0.251turn, #000000 37%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.cid-uPJhBmhhfz .content-wrapper .content-wrap {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uPJhBmhhfz .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uPJhBmhhfz .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #fff1e2;
  padding: 8px 16px;
  margin-bottom: 32px;
}
.cid-uPJhBmhhfz .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uPJhBmhhfz .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uPJhBmhhfz .content-wrapper .content-wrap .mbr-section-btn {
  margin-top: 64px;
}
.cid-uPJhBmhhfz .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uPJhBmhhfz .mbr-section-title {
  color: #404349;
}
.cid-uPJhBmhhfz .mbr-text {
  color: #404349;
}
.cid-uPJhBmhhfz .mbr-desc {
  color: #b19a7c;
}
.cid-uPJhBmhhfz .mbr-section-title,
.cid-uPJhBmhhfz .mbr-section-btn {
  color: #fafafa;
}
.cid-uPJguonkKt {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #9b9287;
  background: linear-gradient(90deg, #9b9287, #161616);
}
.cid-uPJguonkKt .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uPJguonkKt .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #2705fc);
  display: inline-block;
}
.cid-uPJguonkKt .container-fluid {
  padding: 0 3rem;
}
.cid-uPJguonkKt .mbr-iconfont {
  color: #767676;
  font-size: 1.3rem;
}
.cid-uPJguonkKt .mbr-iconfont:hover {
  color: #ffa0a4;
}
.cid-uPJguonkKt .image-wrap img {
  border-radius: 50%;
  width: 60%;
}
.cid-uPJguonkKt .mbr-title {
  margin-bottom: 0;
}
.cid-uPJguonkKt .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uPJguonkKt .social-media ul li {
  margin-right: .8rem;
  display: inline-block;
}
.cid-uPJguonkKt .card-wrap {
  padding: 0 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-uPJguonkKt .card-wrap {
    padding: 0 1rem;
  }
  .cid-uPJguonkKt .container-fluid {
    padding: 0 1rem;
  }
  .cid-uPJguonkKt .mbr-role {
    margin-top: .5rem;
  }
}
.cid-uPJguonkKt .mbr-section-title,
.cid-uPJguonkKt .underline {
  text-align: center;
  color: #ffffff;
}
.cid-uPJgeWh8FI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0a0a0a;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uPJgeWh8FI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uPJgeWh8FI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPJgeWh8FI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPJgeWh8FI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uPJgeWh8FI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uPJgeWh8FI .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uPJgeWh8FI .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uPJgeWh8FI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uPJgeWh8FI .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uPJfC2quCz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0a0a0a;
  position: relative;
  overflow: hidden;
}
.cid-uPJfC2quCz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJfC2quCz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJfC2quCz .row {
  justify-content: center;
}
.cid-uPJfC2quCz .mbr-section-title {
  color: #161616;
  width: 100%;
}
.cid-uPJfC2quCz .mbr-section-subtitle {
  color: #161616;
  width: 100%;
}
.cid-uPJfC2quCz .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 8px;
  border: 2px solid #000000;
  border-radius: 50%;
  font-size: 20px;
  color: #000000;
  margin-bottom: 1rem;
  width: min-content;
}
@media (max-width: 575px) {
  .cid-uPJfC2quCz .mbr-iconfont {
    margin-bottom: 0;
    margin-right: 12px;
    padding: 5px;
  }
}
.cid-uPJfC2quCz .card-row {
  justify-content: flex-start;
}
@media (min-width: 576px) {
  .cid-uPJfC2quCz .card-row {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media (min-width: 576px) {
  .cid-uPJfC2quCz .card {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uPJfC2quCz .card:nth-child(n+3) {
    margin-top: 56px;
  }
}
@media (max-width: 575px) {
  .cid-uPJfC2quCz .card:nth-child(n+2) {
    margin-top: 56px;
  }
}
.cid-uPJfC2quCz .card-head {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 575px) {
  .cid-uPJfC2quCz .card-head {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}
.cid-uPJfC2quCz .card-title {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-uPJfC2quCz .card-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-uPJfC2quCz .circle-blur {
  position: absolute;
  top: -5%;
  right: -5% !important;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-uPJfC2quCz .card-title,
.cid-uPJfC2quCz .iconfont-wrapper {
  color: #ffffff;
}
.cid-uPJfC5hFKq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0a0a0a;
}
.cid-uPJfC5hFKq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJfC5hFKq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJfC5hFKq .container {
  display: flex;
  justify-content: center;
}
.cid-uPJfC5hFKq .row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.cid-uPJfC5hFKq .col-copyright {
  padding: 0;
}
.cid-uPJfC5hFKq .copyright {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPJfC5hFKq .copyright {
    text-align: center;
  }
}
.cid-uPJiMfs5sc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-uPJiMfs5sc {
    min-height: 70px;
  }
}
.cid-uPJiMfs5sc nav.navbar {
  position: fixed;
}
.cid-uPJiMfs5sc .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-uPJiMfs5sc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPJiMfs5sc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  border: 2px solid #161616 !important;
  background-color: #d8d5d1 !important;
  margin-top: -1px;
  margin-bottom: -1px;
}
.cid-uPJiMfs5sc .dropdown-item:hover,
.cid-uPJiMfs5sc .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uPJiMfs5sc .dropdown-item:hover span {
  color: white;
}
.cid-uPJiMfs5sc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPJiMfs5sc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPJiMfs5sc .dropdown-item:hover,
.cid-uPJiMfs5sc .dropdown-item:focus,
.cid-uPJiMfs5sc .dropdown-item:active {
  background-color: #9ca387 !important;
}
.cid-uPJiMfs5sc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPJiMfs5sc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPJiMfs5sc .nav-link {
  position: relative;
}
.cid-uPJiMfs5sc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uPJiMfs5sc .container {
    flex-wrap: nowrap;
  }
}
.cid-uPJiMfs5sc .iconfont-wrapper {
  color: #0a0a0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPJiMfs5sc .navbar-caption {
  font-weight: 700;
}
.cid-uPJiMfs5sc .navbar-nav {
  margin-right: auto;
  margin-left: auto;
}
.cid-uPJiMfs5sc .dropdown-menu,
.cid-uPJiMfs5sc .navbar.opened {
  background: #090000 !important;
}
.cid-uPJiMfs5sc .nav-item:focus,
.cid-uPJiMfs5sc .nav-link:focus {
  outline: none;
}
.cid-uPJiMfs5sc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPJiMfs5sc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPJiMfs5sc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPJiMfs5sc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPJiMfs5sc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPJiMfs5sc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPJiMfs5sc .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #090000;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 991px) {
  .cid-uPJiMfs5sc .navbar {
    min-height: 80px;
  }
  .cid-uPJiMfs5sc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPJiMfs5sc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPJiMfs5sc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPJiMfs5sc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPJiMfs5sc .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-uPJiMfs5sc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPJiMfs5sc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPJiMfs5sc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPJiMfs5sc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPJiMfs5sc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPJiMfs5sc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPJiMfs5sc .navbar.opened {
  transition: all 0.3s;
}
.cid-uPJiMfs5sc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPJiMfs5sc .navbar .navbar-logo img {
  width: auto;
}
.cid-uPJiMfs5sc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPJiMfs5sc .navbar.collapsed {
  justify-content: center;
}
.cid-uPJiMfs5sc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPJiMfs5sc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPJiMfs5sc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uPJiMfs5sc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPJiMfs5sc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPJiMfs5sc .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-uPJiMfs5sc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPJiMfs5sc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPJiMfs5sc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-uPJiMfs5sc .navbar.navbar-short {
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-uPJiMfs5sc .navbar.navbar-short {
    min-height: 70px;
  }
}
.cid-uPJiMfs5sc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPJiMfs5sc .navbar.navbar-short .navbar-brand {
  min-height: 76px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPJiMfs5sc .navbar.navbar-short .navbar-brand {
    min-height: 70px;
  }
}
.cid-uPJiMfs5sc .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;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uPJiMfs5sc .navbar-brand {
    min-height: 80px;
  }
}
.cid-uPJiMfs5sc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPJiMfs5sc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPJiMfs5sc .dropdown-item.active,
.cid-uPJiMfs5sc .dropdown-item:active {
  background-color: transparent;
}
.cid-uPJiMfs5sc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPJiMfs5sc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPJiMfs5sc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPJiMfs5sc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #090000;
}
.cid-uPJiMfs5sc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPJiMfs5sc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPJiMfs5sc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPJiMfs5sc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPJiMfs5sc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPJiMfs5sc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a0a0a;
}
.cid-uPJiMfs5sc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPJiMfs5sc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPJiMfs5sc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPJiMfs5sc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPJiMfs5sc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPJiMfs5sc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPJiMfs5sc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPJiMfs5sc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPJiMfs5sc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPJiMfs5sc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPJiMfs5sc .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-uPJiMfs5sc .navbar {
    height: 70px;
  }
  .cid-uPJiMfs5sc .navbar.opened {
    height: auto;
  }
  .cid-uPJiMfs5sc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPJiMfs5sc .nav-item-transform {
  display: flex;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uPJiMfs5sc .nav-item .nav-link {
  color: #0A0A0A;
  font-weight: 700;
  padding: 16px !important;
  margin: 0 !important;
}
.cid-uPJiMfs5sc .nav-item {
  font-weight: 700;
  margin-right: 16px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPJiMfs5sc .nav-item {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-uPJiMfs5sc .navbar .icons-menu {
    padding-right: 0 !important;
  }
}
.cid-uPJiMgk2xZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0a0a0a;
}
.cid-uPJiMgk2xZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJiMgk2xZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJiMgk2xZ .content-wrapper {
  display: flex;
  position: relative;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uPJiMgk2xZ .content-wrapper {
    padding: 30px 20px;
  }
}
.cid-uPJiMgk2xZ .content-wrapper .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uPJiMgk2xZ .content-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uPJiMgk2xZ .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-image: linear-gradient(0.251turn, #3d3d3d 37%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.cid-uPJiMgk2xZ .content-wrapper .content-wrap {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uPJiMgk2xZ .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uPJiMgk2xZ .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #fff1e2;
  padding: 8px 16px;
  margin-bottom: 32px;
}
.cid-uPJiMgk2xZ .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uPJiMgk2xZ .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uPJiMgk2xZ .content-wrapper .content-wrap .mbr-section-btn {
  margin-top: 64px;
}
.cid-uPJiMgk2xZ .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uPJiMgk2xZ .mbr-section-title {
  color: #404349;
}
.cid-uPJiMgk2xZ .mbr-text {
  color: #404349;
}
.cid-uPJiMgk2xZ .mbr-desc {
  color: #b19a7c;
}
.cid-uPJiMgk2xZ .mbr-section-title,
.cid-uPJiMgk2xZ .mbr-section-btn {
  color: #fafafa;
}
.cid-uPJiMgXifb {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #818181;
  background: linear-gradient(90deg, #818181, #161616);
}
.cid-uPJiMgXifb .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uPJiMgXifb .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #2705fc);
  display: inline-block;
}
.cid-uPJiMgXifb .container-fluid {
  padding: 0 3rem;
}
.cid-uPJiMgXifb .mbr-iconfont {
  color: #767676;
  font-size: 1.3rem;
}
.cid-uPJiMgXifb .mbr-iconfont:hover {
  color: #ffa0a4;
}
.cid-uPJiMgXifb .image-wrap img {
  border-radius: 50%;
  width: 60%;
}
.cid-uPJiMgXifb .mbr-title {
  margin-bottom: 0;
}
.cid-uPJiMgXifb .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uPJiMgXifb .social-media ul li {
  margin-right: .8rem;
  display: inline-block;
}
.cid-uPJiMgXifb .card-wrap {
  padding: 0 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-uPJiMgXifb .card-wrap {
    padding: 0 1rem;
  }
  .cid-uPJiMgXifb .container-fluid {
    padding: 0 1rem;
  }
  .cid-uPJiMgXifb .mbr-role {
    margin-top: .5rem;
  }
}
.cid-uPJiMgXifb .mbr-section-title,
.cid-uPJiMgXifb .underline {
  text-align: center;
  color: #ffffff;
}
.cid-uPJiMiak37 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0a0a0a;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uPJiMiak37 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uPJiMiak37 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPJiMiak37 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPJiMiak37 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uPJiMiak37 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uPJiMiak37 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uPJiMiak37 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uPJiMiak37 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uPJiMiak37 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uPJiMiMyhL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0a0a0a;
  position: relative;
  overflow: hidden;
}
.cid-uPJiMiMyhL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJiMiMyhL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJiMiMyhL .row {
  justify-content: center;
}
.cid-uPJiMiMyhL .mbr-section-title {
  color: #161616;
  width: 100%;
}
.cid-uPJiMiMyhL .mbr-section-subtitle {
  color: #161616;
  width: 100%;
}
.cid-uPJiMiMyhL .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 8px;
  border: 2px solid #000000;
  border-radius: 50%;
  font-size: 20px;
  color: #000000;
  margin-bottom: 1rem;
  width: min-content;
}
@media (max-width: 575px) {
  .cid-uPJiMiMyhL .mbr-iconfont {
    margin-bottom: 0;
    margin-right: 12px;
    padding: 5px;
  }
}
.cid-uPJiMiMyhL .card-row {
  justify-content: flex-start;
}
@media (min-width: 576px) {
  .cid-uPJiMiMyhL .card-row {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media (min-width: 576px) {
  .cid-uPJiMiMyhL .card {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uPJiMiMyhL .card:nth-child(n+3) {
    margin-top: 56px;
  }
}
@media (max-width: 575px) {
  .cid-uPJiMiMyhL .card:nth-child(n+2) {
    margin-top: 56px;
  }
}
.cid-uPJiMiMyhL .card-head {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 575px) {
  .cid-uPJiMiMyhL .card-head {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}
.cid-uPJiMiMyhL .card-title {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-uPJiMiMyhL .card-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-uPJiMiMyhL .circle-blur {
  position: absolute;
  top: -5%;
  right: -5% !important;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-uPJiMiMyhL .card-title,
.cid-uPJiMiMyhL .iconfont-wrapper {
  color: #ffffff;
}
.cid-uPJiMjEJmd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0a0a0a;
}
.cid-uPJiMjEJmd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJiMjEJmd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJiMjEJmd .container {
  display: flex;
  justify-content: center;
}
.cid-uPJiMjEJmd .row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.cid-uPJiMjEJmd .col-copyright {
  padding: 0;
}
.cid-uPJiMjEJmd .copyright {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPJiMjEJmd .copyright {
    text-align: center;
  }
}
.cid-uPJjyWmzqE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-uPJjyWmzqE {
    min-height: 70px;
  }
}
.cid-uPJjyWmzqE nav.navbar {
  position: fixed;
}
.cid-uPJjyWmzqE .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-uPJjyWmzqE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPJjyWmzqE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  border: 2px solid #161616 !important;
  background-color: #d8d5d1 !important;
  margin-top: -1px;
  margin-bottom: -1px;
}
.cid-uPJjyWmzqE .dropdown-item:hover,
.cid-uPJjyWmzqE .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uPJjyWmzqE .dropdown-item:hover span {
  color: white;
}
.cid-uPJjyWmzqE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPJjyWmzqE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPJjyWmzqE .dropdown-item:hover,
.cid-uPJjyWmzqE .dropdown-item:focus,
.cid-uPJjyWmzqE .dropdown-item:active {
  background-color: #9ca387 !important;
}
.cid-uPJjyWmzqE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPJjyWmzqE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPJjyWmzqE .nav-link {
  position: relative;
}
.cid-uPJjyWmzqE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uPJjyWmzqE .container {
    flex-wrap: nowrap;
  }
}
.cid-uPJjyWmzqE .iconfont-wrapper {
  color: #0a0a0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPJjyWmzqE .navbar-caption {
  font-weight: 700;
}
.cid-uPJjyWmzqE .navbar-nav {
  margin-right: auto;
  margin-left: auto;
}
.cid-uPJjyWmzqE .dropdown-menu,
.cid-uPJjyWmzqE .navbar.opened {
  background: #090000 !important;
}
.cid-uPJjyWmzqE .nav-item:focus,
.cid-uPJjyWmzqE .nav-link:focus {
  outline: none;
}
.cid-uPJjyWmzqE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPJjyWmzqE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPJjyWmzqE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPJjyWmzqE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPJjyWmzqE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPJjyWmzqE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPJjyWmzqE .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #090000;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 991px) {
  .cid-uPJjyWmzqE .navbar {
    min-height: 80px;
  }
  .cid-uPJjyWmzqE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPJjyWmzqE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPJjyWmzqE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPJjyWmzqE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPJjyWmzqE .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-uPJjyWmzqE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPJjyWmzqE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPJjyWmzqE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPJjyWmzqE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPJjyWmzqE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPJjyWmzqE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPJjyWmzqE .navbar.opened {
  transition: all 0.3s;
}
.cid-uPJjyWmzqE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPJjyWmzqE .navbar .navbar-logo img {
  width: auto;
}
.cid-uPJjyWmzqE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPJjyWmzqE .navbar.collapsed {
  justify-content: center;
}
.cid-uPJjyWmzqE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPJjyWmzqE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPJjyWmzqE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uPJjyWmzqE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPJjyWmzqE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPJjyWmzqE .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-uPJjyWmzqE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPJjyWmzqE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPJjyWmzqE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-uPJjyWmzqE .navbar.navbar-short {
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-uPJjyWmzqE .navbar.navbar-short {
    min-height: 70px;
  }
}
.cid-uPJjyWmzqE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPJjyWmzqE .navbar.navbar-short .navbar-brand {
  min-height: 76px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPJjyWmzqE .navbar.navbar-short .navbar-brand {
    min-height: 70px;
  }
}
.cid-uPJjyWmzqE .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;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uPJjyWmzqE .navbar-brand {
    min-height: 80px;
  }
}
.cid-uPJjyWmzqE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPJjyWmzqE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPJjyWmzqE .dropdown-item.active,
.cid-uPJjyWmzqE .dropdown-item:active {
  background-color: transparent;
}
.cid-uPJjyWmzqE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPJjyWmzqE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPJjyWmzqE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPJjyWmzqE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #090000;
}
.cid-uPJjyWmzqE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPJjyWmzqE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPJjyWmzqE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPJjyWmzqE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPJjyWmzqE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPJjyWmzqE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a0a0a;
}
.cid-uPJjyWmzqE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPJjyWmzqE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPJjyWmzqE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPJjyWmzqE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPJjyWmzqE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPJjyWmzqE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPJjyWmzqE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPJjyWmzqE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPJjyWmzqE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPJjyWmzqE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPJjyWmzqE .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-uPJjyWmzqE .navbar {
    height: 70px;
  }
  .cid-uPJjyWmzqE .navbar.opened {
    height: auto;
  }
  .cid-uPJjyWmzqE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPJjyWmzqE .nav-item-transform {
  display: flex;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uPJjyWmzqE .nav-item .nav-link {
  color: #0A0A0A;
  font-weight: 700;
  padding: 16px !important;
  margin: 0 !important;
}
.cid-uPJjyWmzqE .nav-item {
  font-weight: 700;
  margin-right: 16px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPJjyWmzqE .nav-item {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-uPJjyWmzqE .navbar .icons-menu {
    padding-right: 0 !important;
  }
}
.cid-uPJjyX71i8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0a0a0a;
}
.cid-uPJjyX71i8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJjyX71i8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJjyX71i8 .content-wrapper {
  display: flex;
  position: relative;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uPJjyX71i8 .content-wrapper {
    padding: 30px 20px;
  }
}
.cid-uPJjyX71i8 .content-wrapper .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uPJjyX71i8 .content-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uPJjyX71i8 .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-image: linear-gradient(0.251turn, #161616 37%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  background-image: linear-gradient(270deg, #161616 37%, transparent 100%);
}
.cid-uPJjyX71i8 .content-wrapper .content-wrap {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uPJjyX71i8 .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uPJjyX71i8 .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #fff1e2;
  padding: 8px 16px;
  margin-bottom: 32px;
}
.cid-uPJjyX71i8 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uPJjyX71i8 .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uPJjyX71i8 .content-wrapper .content-wrap .mbr-section-btn {
  margin-top: 64px;
}
.cid-uPJjyX71i8 .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uPJjyX71i8 .mbr-section-title {
  color: #404349;
}
.cid-uPJjyX71i8 .mbr-text {
  color: #404349;
}
.cid-uPJjyX71i8 .mbr-desc {
  color: #b19a7c;
}
.cid-uPJjyX71i8 .mbr-section-title,
.cid-uPJjyX71i8 .mbr-section-btn {
  color: #fafafa;
}
.cid-uPJjyXFcXL {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #818181;
  background: linear-gradient(90deg, #818181, #161616);
}
.cid-uPJjyXFcXL .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uPJjyXFcXL .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #2705fc);
  display: inline-block;
}
.cid-uPJjyXFcXL .container-fluid {
  padding: 0 3rem;
}
.cid-uPJjyXFcXL .mbr-iconfont {
  color: #767676;
  font-size: 1.3rem;
}
.cid-uPJjyXFcXL .mbr-iconfont:hover {
  color: #ffa0a4;
}
.cid-uPJjyXFcXL .image-wrap img {
  border-radius: 50%;
  width: 60%;
}
.cid-uPJjyXFcXL .mbr-title {
  margin-bottom: 0;
}
.cid-uPJjyXFcXL .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uPJjyXFcXL .social-media ul li {
  margin-right: .8rem;
  display: inline-block;
}
.cid-uPJjyXFcXL .card-wrap {
  padding: 0 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-uPJjyXFcXL .card-wrap {
    padding: 0 1rem;
  }
  .cid-uPJjyXFcXL .container-fluid {
    padding: 0 1rem;
  }
  .cid-uPJjyXFcXL .mbr-role {
    margin-top: .5rem;
  }
}
.cid-uPJjyXFcXL .mbr-section-title,
.cid-uPJjyXFcXL .underline {
  text-align: center;
  color: #ffffff;
}
.cid-uPJjyYQPuh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0a0a0a;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uPJjyYQPuh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uPJjyYQPuh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPJjyYQPuh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPJjyYQPuh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uPJjyYQPuh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uPJjyYQPuh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uPJjyYQPuh .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uPJjyYQPuh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uPJjyYQPuh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uPJjyZD4re {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0a0a0a;
  position: relative;
  overflow: hidden;
}
.cid-uPJjyZD4re .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJjyZD4re .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJjyZD4re .row {
  justify-content: center;
}
.cid-uPJjyZD4re .mbr-section-title {
  color: #161616;
  width: 100%;
}
.cid-uPJjyZD4re .mbr-section-subtitle {
  color: #161616;
  width: 100%;
}
.cid-uPJjyZD4re .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 8px;
  border: 2px solid #000000;
  border-radius: 50%;
  font-size: 20px;
  color: #000000;
  margin-bottom: 1rem;
  width: min-content;
}
@media (max-width: 575px) {
  .cid-uPJjyZD4re .mbr-iconfont {
    margin-bottom: 0;
    margin-right: 12px;
    padding: 5px;
  }
}
.cid-uPJjyZD4re .card-row {
  justify-content: flex-start;
}
@media (min-width: 576px) {
  .cid-uPJjyZD4re .card-row {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media (min-width: 576px) {
  .cid-uPJjyZD4re .card {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uPJjyZD4re .card:nth-child(n+3) {
    margin-top: 56px;
  }
}
@media (max-width: 575px) {
  .cid-uPJjyZD4re .card:nth-child(n+2) {
    margin-top: 56px;
  }
}
.cid-uPJjyZD4re .card-head {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 575px) {
  .cid-uPJjyZD4re .card-head {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}
.cid-uPJjyZD4re .card-title {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-uPJjyZD4re .card-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-uPJjyZD4re .circle-blur {
  position: absolute;
  top: -5%;
  right: -5% !important;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-uPJjyZD4re .card-title,
.cid-uPJjyZD4re .iconfont-wrapper {
  color: #ffffff;
}
.cid-uPJjz0vEJD {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0a0a0a;
}
.cid-uPJjz0vEJD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJjz0vEJD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJjz0vEJD .container {
  display: flex;
  justify-content: center;
}
.cid-uPJjz0vEJD .row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.cid-uPJjz0vEJD .col-copyright {
  padding: 0;
}
.cid-uPJjz0vEJD .copyright {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPJjz0vEJD .copyright {
    text-align: center;
  }
}
.cid-uPJk22TGEb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-uPJk22TGEb {
    min-height: 70px;
  }
}
.cid-uPJk22TGEb nav.navbar {
  position: fixed;
}
.cid-uPJk22TGEb .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-uPJk22TGEb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPJk22TGEb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  border: 2px solid #161616 !important;
  background-color: #d8d5d1 !important;
  margin-top: -1px;
  margin-bottom: -1px;
}
.cid-uPJk22TGEb .dropdown-item:hover,
.cid-uPJk22TGEb .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uPJk22TGEb .dropdown-item:hover span {
  color: white;
}
.cid-uPJk22TGEb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPJk22TGEb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPJk22TGEb .dropdown-item:hover,
.cid-uPJk22TGEb .dropdown-item:focus,
.cid-uPJk22TGEb .dropdown-item:active {
  background-color: #9ca387 !important;
}
.cid-uPJk22TGEb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPJk22TGEb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPJk22TGEb .nav-link {
  position: relative;
}
.cid-uPJk22TGEb .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uPJk22TGEb .container {
    flex-wrap: nowrap;
  }
}
.cid-uPJk22TGEb .iconfont-wrapper {
  color: #0a0a0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPJk22TGEb .navbar-caption {
  font-weight: 700;
}
.cid-uPJk22TGEb .navbar-nav {
  margin-right: auto;
  margin-left: auto;
}
.cid-uPJk22TGEb .dropdown-menu,
.cid-uPJk22TGEb .navbar.opened {
  background: #090000 !important;
}
.cid-uPJk22TGEb .nav-item:focus,
.cid-uPJk22TGEb .nav-link:focus {
  outline: none;
}
.cid-uPJk22TGEb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPJk22TGEb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPJk22TGEb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPJk22TGEb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPJk22TGEb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPJk22TGEb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPJk22TGEb .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #090000;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 991px) {
  .cid-uPJk22TGEb .navbar {
    min-height: 80px;
  }
  .cid-uPJk22TGEb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPJk22TGEb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPJk22TGEb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPJk22TGEb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPJk22TGEb .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-uPJk22TGEb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPJk22TGEb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPJk22TGEb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPJk22TGEb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPJk22TGEb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPJk22TGEb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPJk22TGEb .navbar.opened {
  transition: all 0.3s;
}
.cid-uPJk22TGEb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPJk22TGEb .navbar .navbar-logo img {
  width: auto;
}
.cid-uPJk22TGEb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPJk22TGEb .navbar.collapsed {
  justify-content: center;
}
.cid-uPJk22TGEb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPJk22TGEb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPJk22TGEb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uPJk22TGEb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPJk22TGEb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPJk22TGEb .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-uPJk22TGEb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPJk22TGEb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPJk22TGEb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-uPJk22TGEb .navbar.navbar-short {
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-uPJk22TGEb .navbar.navbar-short {
    min-height: 70px;
  }
}
.cid-uPJk22TGEb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPJk22TGEb .navbar.navbar-short .navbar-brand {
  min-height: 76px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPJk22TGEb .navbar.navbar-short .navbar-brand {
    min-height: 70px;
  }
}
.cid-uPJk22TGEb .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;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uPJk22TGEb .navbar-brand {
    min-height: 80px;
  }
}
.cid-uPJk22TGEb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPJk22TGEb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPJk22TGEb .dropdown-item.active,
.cid-uPJk22TGEb .dropdown-item:active {
  background-color: transparent;
}
.cid-uPJk22TGEb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPJk22TGEb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPJk22TGEb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPJk22TGEb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #090000;
}
.cid-uPJk22TGEb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPJk22TGEb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPJk22TGEb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPJk22TGEb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPJk22TGEb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPJk22TGEb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a0a0a;
}
.cid-uPJk22TGEb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPJk22TGEb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPJk22TGEb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPJk22TGEb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPJk22TGEb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPJk22TGEb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPJk22TGEb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPJk22TGEb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPJk22TGEb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPJk22TGEb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPJk22TGEb .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-uPJk22TGEb .navbar {
    height: 70px;
  }
  .cid-uPJk22TGEb .navbar.opened {
    height: auto;
  }
  .cid-uPJk22TGEb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPJk22TGEb .nav-item-transform {
  display: flex;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uPJk22TGEb .nav-item .nav-link {
  color: #0A0A0A;
  font-weight: 700;
  padding: 16px !important;
  margin: 0 !important;
}
.cid-uPJk22TGEb .nav-item {
  font-weight: 700;
  margin-right: 16px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPJk22TGEb .nav-item {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-uPJk22TGEb .navbar .icons-menu {
    padding-right: 0 !important;
  }
}
.cid-uPJk23H4A1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0a0a0a;
}
.cid-uPJk23H4A1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJk23H4A1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJk23H4A1 .content-wrapper {
  display: flex;
  position: relative;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uPJk23H4A1 .content-wrapper {
    padding: 30px 20px;
  }
}
.cid-uPJk23H4A1 .content-wrapper .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uPJk23H4A1 .content-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uPJk23H4A1 .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-image: linear-gradient(0.251turn, #161616 37%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  background-image: linear-gradient(270deg, #161616 37%, transparent 100%);
}
.cid-uPJk23H4A1 .content-wrapper .content-wrap {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uPJk23H4A1 .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uPJk23H4A1 .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #fff1e2;
  padding: 8px 16px;
  margin-bottom: 32px;
}
.cid-uPJk23H4A1 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uPJk23H4A1 .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uPJk23H4A1 .content-wrapper .content-wrap .mbr-section-btn {
  margin-top: 64px;
}
.cid-uPJk23H4A1 .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uPJk23H4A1 .mbr-section-title {
  color: #404349;
}
.cid-uPJk23H4A1 .mbr-text {
  color: #404349;
}
.cid-uPJk23H4A1 .mbr-desc {
  color: #b19a7c;
}
.cid-uPJk23H4A1 .mbr-section-title,
.cid-uPJk23H4A1 .mbr-section-btn {
  color: #fafafa;
}
.cid-uPJk24mUmC {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #818181;
  background: linear-gradient(90deg, #818181, #161616);
}
.cid-uPJk24mUmC .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uPJk24mUmC .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #2705fc);
  display: inline-block;
}
.cid-uPJk24mUmC .container-fluid {
  padding: 0 3rem;
}
.cid-uPJk24mUmC .mbr-iconfont {
  color: #767676;
  font-size: 1.3rem;
}
.cid-uPJk24mUmC .mbr-iconfont:hover {
  color: #ffa0a4;
}
.cid-uPJk24mUmC .image-wrap img {
  border-radius: 50%;
  width: 60%;
}
.cid-uPJk24mUmC .mbr-title {
  margin-bottom: 0;
}
.cid-uPJk24mUmC .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uPJk24mUmC .social-media ul li {
  margin-right: .8rem;
  display: inline-block;
}
.cid-uPJk24mUmC .card-wrap {
  padding: 0 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-uPJk24mUmC .card-wrap {
    padding: 0 1rem;
  }
  .cid-uPJk24mUmC .container-fluid {
    padding: 0 1rem;
  }
  .cid-uPJk24mUmC .mbr-role {
    margin-top: .5rem;
  }
}
.cid-uPJk24mUmC .mbr-section-title,
.cid-uPJk24mUmC .underline {
  text-align: center;
  color: #ffffff;
}
.cid-uPJk25yUX3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0a0a0a;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uPJk25yUX3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uPJk25yUX3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPJk25yUX3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPJk25yUX3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uPJk25yUX3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uPJk25yUX3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uPJk25yUX3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uPJk25yUX3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uPJk25yUX3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uPJk26brgZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0a0a0a;
  position: relative;
  overflow: hidden;
}
.cid-uPJk26brgZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJk26brgZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJk26brgZ .row {
  justify-content: center;
}
.cid-uPJk26brgZ .mbr-section-title {
  color: #161616;
  width: 100%;
}
.cid-uPJk26brgZ .mbr-section-subtitle {
  color: #161616;
  width: 100%;
}
.cid-uPJk26brgZ .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 8px;
  border: 2px solid #000000;
  border-radius: 50%;
  font-size: 20px;
  color: #000000;
  margin-bottom: 1rem;
  width: min-content;
}
@media (max-width: 575px) {
  .cid-uPJk26brgZ .mbr-iconfont {
    margin-bottom: 0;
    margin-right: 12px;
    padding: 5px;
  }
}
.cid-uPJk26brgZ .card-row {
  justify-content: flex-start;
}
@media (min-width: 576px) {
  .cid-uPJk26brgZ .card-row {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media (min-width: 576px) {
  .cid-uPJk26brgZ .card {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uPJk26brgZ .card:nth-child(n+3) {
    margin-top: 56px;
  }
}
@media (max-width: 575px) {
  .cid-uPJk26brgZ .card:nth-child(n+2) {
    margin-top: 56px;
  }
}
.cid-uPJk26brgZ .card-head {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 575px) {
  .cid-uPJk26brgZ .card-head {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}
.cid-uPJk26brgZ .card-title {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-uPJk26brgZ .card-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-uPJk26brgZ .circle-blur {
  position: absolute;
  top: -5%;
  right: -5% !important;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-uPJk26brgZ .card-title,
.cid-uPJk26brgZ .iconfont-wrapper {
  color: #ffffff;
}
.cid-uPJk26Rfg0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0a0a0a;
}
.cid-uPJk26Rfg0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJk26Rfg0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJk26Rfg0 .container {
  display: flex;
  justify-content: center;
}
.cid-uPJk26Rfg0 .row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.cid-uPJk26Rfg0 .col-copyright {
  padding: 0;
}
.cid-uPJk26Rfg0 .copyright {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPJk26Rfg0 .copyright {
    text-align: center;
  }
}
.cid-uPJkwa5VNK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-uPJkwa5VNK {
    min-height: 70px;
  }
}
.cid-uPJkwa5VNK nav.navbar {
  position: fixed;
}
.cid-uPJkwa5VNK .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-uPJkwa5VNK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPJkwa5VNK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  border: 2px solid #161616 !important;
  background-color: #d8d5d1 !important;
  margin-top: -1px;
  margin-bottom: -1px;
}
.cid-uPJkwa5VNK .dropdown-item:hover,
.cid-uPJkwa5VNK .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uPJkwa5VNK .dropdown-item:hover span {
  color: white;
}
.cid-uPJkwa5VNK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPJkwa5VNK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPJkwa5VNK .dropdown-item:hover,
.cid-uPJkwa5VNK .dropdown-item:focus,
.cid-uPJkwa5VNK .dropdown-item:active {
  background-color: #9ca387 !important;
}
.cid-uPJkwa5VNK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPJkwa5VNK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPJkwa5VNK .nav-link {
  position: relative;
}
.cid-uPJkwa5VNK .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uPJkwa5VNK .container {
    flex-wrap: nowrap;
  }
}
.cid-uPJkwa5VNK .iconfont-wrapper {
  color: #0a0a0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPJkwa5VNK .navbar-caption {
  font-weight: 700;
}
.cid-uPJkwa5VNK .navbar-nav {
  margin-right: auto;
  margin-left: auto;
}
.cid-uPJkwa5VNK .dropdown-menu,
.cid-uPJkwa5VNK .navbar.opened {
  background: #090000 !important;
}
.cid-uPJkwa5VNK .nav-item:focus,
.cid-uPJkwa5VNK .nav-link:focus {
  outline: none;
}
.cid-uPJkwa5VNK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPJkwa5VNK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPJkwa5VNK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPJkwa5VNK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPJkwa5VNK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPJkwa5VNK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPJkwa5VNK .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #090000;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 991px) {
  .cid-uPJkwa5VNK .navbar {
    min-height: 80px;
  }
  .cid-uPJkwa5VNK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPJkwa5VNK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPJkwa5VNK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPJkwa5VNK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPJkwa5VNK .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-uPJkwa5VNK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPJkwa5VNK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPJkwa5VNK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPJkwa5VNK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPJkwa5VNK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPJkwa5VNK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPJkwa5VNK .navbar.opened {
  transition: all 0.3s;
}
.cid-uPJkwa5VNK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPJkwa5VNK .navbar .navbar-logo img {
  width: auto;
}
.cid-uPJkwa5VNK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPJkwa5VNK .navbar.collapsed {
  justify-content: center;
}
.cid-uPJkwa5VNK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPJkwa5VNK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPJkwa5VNK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uPJkwa5VNK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPJkwa5VNK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPJkwa5VNK .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-uPJkwa5VNK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPJkwa5VNK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPJkwa5VNK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-uPJkwa5VNK .navbar.navbar-short {
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-uPJkwa5VNK .navbar.navbar-short {
    min-height: 70px;
  }
}
.cid-uPJkwa5VNK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPJkwa5VNK .navbar.navbar-short .navbar-brand {
  min-height: 76px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPJkwa5VNK .navbar.navbar-short .navbar-brand {
    min-height: 70px;
  }
}
.cid-uPJkwa5VNK .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;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uPJkwa5VNK .navbar-brand {
    min-height: 80px;
  }
}
.cid-uPJkwa5VNK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPJkwa5VNK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPJkwa5VNK .dropdown-item.active,
.cid-uPJkwa5VNK .dropdown-item:active {
  background-color: transparent;
}
.cid-uPJkwa5VNK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPJkwa5VNK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPJkwa5VNK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPJkwa5VNK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #090000;
}
.cid-uPJkwa5VNK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPJkwa5VNK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPJkwa5VNK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPJkwa5VNK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPJkwa5VNK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPJkwa5VNK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a0a0a;
}
.cid-uPJkwa5VNK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPJkwa5VNK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPJkwa5VNK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPJkwa5VNK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPJkwa5VNK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPJkwa5VNK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPJkwa5VNK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPJkwa5VNK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPJkwa5VNK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPJkwa5VNK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPJkwa5VNK .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-uPJkwa5VNK .navbar {
    height: 70px;
  }
  .cid-uPJkwa5VNK .navbar.opened {
    height: auto;
  }
  .cid-uPJkwa5VNK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPJkwa5VNK .nav-item-transform {
  display: flex;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uPJkwa5VNK .nav-item .nav-link {
  color: #0A0A0A;
  font-weight: 700;
  padding: 16px !important;
  margin: 0 !important;
}
.cid-uPJkwa5VNK .nav-item {
  font-weight: 700;
  margin-right: 16px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPJkwa5VNK .nav-item {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-uPJkwa5VNK .navbar .icons-menu {
    padding-right: 0 !important;
  }
}
.cid-uPJkwaNIHK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0a0a0a;
}
.cid-uPJkwaNIHK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJkwaNIHK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJkwaNIHK .content-wrapper {
  display: flex;
  position: relative;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uPJkwaNIHK .content-wrapper {
    padding: 30px 20px;
  }
}
.cid-uPJkwaNIHK .content-wrapper .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uPJkwaNIHK .content-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uPJkwaNIHK .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-image: linear-gradient(0.251turn, #161616 37%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  background-image: linear-gradient(270deg, #161616 37%, transparent 100%);
}
.cid-uPJkwaNIHK .content-wrapper .content-wrap {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uPJkwaNIHK .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uPJkwaNIHK .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #fff1e2;
  padding: 8px 16px;
  margin-bottom: 32px;
}
.cid-uPJkwaNIHK .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uPJkwaNIHK .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uPJkwaNIHK .content-wrapper .content-wrap .mbr-section-btn {
  margin-top: 64px;
}
.cid-uPJkwaNIHK .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uPJkwaNIHK .mbr-section-title {
  color: #404349;
}
.cid-uPJkwaNIHK .mbr-text {
  color: #404349;
}
.cid-uPJkwaNIHK .mbr-desc {
  color: #b19a7c;
}
.cid-uPJkwaNIHK .mbr-section-title,
.cid-uPJkwaNIHK .mbr-section-btn {
  color: #fafafa;
}
.cid-uPJkwblgc3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #818181;
  background: linear-gradient(90deg, #818181, #161616);
}
.cid-uPJkwblgc3 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uPJkwblgc3 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #2705fc);
  display: inline-block;
}
.cid-uPJkwblgc3 .container-fluid {
  padding: 0 3rem;
}
.cid-uPJkwblgc3 .mbr-iconfont {
  color: #767676;
  font-size: 1.3rem;
}
.cid-uPJkwblgc3 .mbr-iconfont:hover {
  color: #ffa0a4;
}
.cid-uPJkwblgc3 .image-wrap img {
  border-radius: 50%;
  width: 60%;
}
.cid-uPJkwblgc3 .mbr-title {
  margin-bottom: 0;
}
.cid-uPJkwblgc3 .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uPJkwblgc3 .social-media ul li {
  margin-right: .8rem;
  display: inline-block;
}
.cid-uPJkwblgc3 .card-wrap {
  padding: 0 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-uPJkwblgc3 .card-wrap {
    padding: 0 1rem;
  }
  .cid-uPJkwblgc3 .container-fluid {
    padding: 0 1rem;
  }
  .cid-uPJkwblgc3 .mbr-role {
    margin-top: .5rem;
  }
}
.cid-uPJkwblgc3 .mbr-section-title,
.cid-uPJkwblgc3 .underline {
  text-align: center;
  color: #ffffff;
}
.cid-uPJkwcAwU3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0a0a0a;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uPJkwcAwU3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uPJkwcAwU3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPJkwcAwU3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPJkwcAwU3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uPJkwcAwU3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uPJkwcAwU3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uPJkwcAwU3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uPJkwcAwU3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uPJkwcAwU3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uPJkwd9qeE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0a0a0a;
  position: relative;
  overflow: hidden;
}
.cid-uPJkwd9qeE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJkwd9qeE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJkwd9qeE .row {
  justify-content: center;
}
.cid-uPJkwd9qeE .mbr-section-title {
  color: #161616;
  width: 100%;
}
.cid-uPJkwd9qeE .mbr-section-subtitle {
  color: #161616;
  width: 100%;
}
.cid-uPJkwd9qeE .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 8px;
  border: 2px solid #000000;
  border-radius: 50%;
  font-size: 20px;
  color: #000000;
  margin-bottom: 1rem;
  width: min-content;
}
@media (max-width: 575px) {
  .cid-uPJkwd9qeE .mbr-iconfont {
    margin-bottom: 0;
    margin-right: 12px;
    padding: 5px;
  }
}
.cid-uPJkwd9qeE .card-row {
  justify-content: flex-start;
}
@media (min-width: 576px) {
  .cid-uPJkwd9qeE .card-row {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media (min-width: 576px) {
  .cid-uPJkwd9qeE .card {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uPJkwd9qeE .card:nth-child(n+3) {
    margin-top: 56px;
  }
}
@media (max-width: 575px) {
  .cid-uPJkwd9qeE .card:nth-child(n+2) {
    margin-top: 56px;
  }
}
.cid-uPJkwd9qeE .card-head {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 575px) {
  .cid-uPJkwd9qeE .card-head {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}
.cid-uPJkwd9qeE .card-title {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-uPJkwd9qeE .card-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-uPJkwd9qeE .circle-blur {
  position: absolute;
  top: -5%;
  right: -5% !important;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-uPJkwd9qeE .card-title,
.cid-uPJkwd9qeE .iconfont-wrapper {
  color: #ffffff;
}
.cid-uPJkwdP4wB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0a0a0a;
}
.cid-uPJkwdP4wB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJkwdP4wB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJkwdP4wB .container {
  display: flex;
  justify-content: center;
}
.cid-uPJkwdP4wB .row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.cid-uPJkwdP4wB .col-copyright {
  padding: 0;
}
.cid-uPJkwdP4wB .copyright {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPJkwdP4wB .copyright {
    text-align: center;
  }
}
.cid-uPJkJjYvn9 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-uPJkJjYvn9 {
    min-height: 70px;
  }
}
.cid-uPJkJjYvn9 nav.navbar {
  position: fixed;
}
.cid-uPJkJjYvn9 .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-uPJkJjYvn9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPJkJjYvn9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  border: 2px solid #161616 !important;
  background-color: #d8d5d1 !important;
  margin-top: -1px;
  margin-bottom: -1px;
}
.cid-uPJkJjYvn9 .dropdown-item:hover,
.cid-uPJkJjYvn9 .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uPJkJjYvn9 .dropdown-item:hover span {
  color: white;
}
.cid-uPJkJjYvn9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPJkJjYvn9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPJkJjYvn9 .dropdown-item:hover,
.cid-uPJkJjYvn9 .dropdown-item:focus,
.cid-uPJkJjYvn9 .dropdown-item:active {
  background-color: #9ca387 !important;
}
.cid-uPJkJjYvn9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPJkJjYvn9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPJkJjYvn9 .nav-link {
  position: relative;
}
.cid-uPJkJjYvn9 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uPJkJjYvn9 .container {
    flex-wrap: nowrap;
  }
}
.cid-uPJkJjYvn9 .iconfont-wrapper {
  color: #0a0a0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPJkJjYvn9 .navbar-caption {
  font-weight: 700;
}
.cid-uPJkJjYvn9 .navbar-nav {
  margin-right: auto;
  margin-left: auto;
}
.cid-uPJkJjYvn9 .dropdown-menu,
.cid-uPJkJjYvn9 .navbar.opened {
  background: #090000 !important;
}
.cid-uPJkJjYvn9 .nav-item:focus,
.cid-uPJkJjYvn9 .nav-link:focus {
  outline: none;
}
.cid-uPJkJjYvn9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPJkJjYvn9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPJkJjYvn9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPJkJjYvn9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPJkJjYvn9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPJkJjYvn9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPJkJjYvn9 .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #090000;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 991px) {
  .cid-uPJkJjYvn9 .navbar {
    min-height: 80px;
  }
  .cid-uPJkJjYvn9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPJkJjYvn9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPJkJjYvn9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPJkJjYvn9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPJkJjYvn9 .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-uPJkJjYvn9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPJkJjYvn9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPJkJjYvn9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPJkJjYvn9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPJkJjYvn9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPJkJjYvn9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPJkJjYvn9 .navbar.opened {
  transition: all 0.3s;
}
.cid-uPJkJjYvn9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPJkJjYvn9 .navbar .navbar-logo img {
  width: auto;
}
.cid-uPJkJjYvn9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPJkJjYvn9 .navbar.collapsed {
  justify-content: center;
}
.cid-uPJkJjYvn9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPJkJjYvn9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPJkJjYvn9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uPJkJjYvn9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPJkJjYvn9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPJkJjYvn9 .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-uPJkJjYvn9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPJkJjYvn9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPJkJjYvn9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-uPJkJjYvn9 .navbar.navbar-short {
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-uPJkJjYvn9 .navbar.navbar-short {
    min-height: 70px;
  }
}
.cid-uPJkJjYvn9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPJkJjYvn9 .navbar.navbar-short .navbar-brand {
  min-height: 76px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPJkJjYvn9 .navbar.navbar-short .navbar-brand {
    min-height: 70px;
  }
}
.cid-uPJkJjYvn9 .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;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uPJkJjYvn9 .navbar-brand {
    min-height: 80px;
  }
}
.cid-uPJkJjYvn9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPJkJjYvn9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPJkJjYvn9 .dropdown-item.active,
.cid-uPJkJjYvn9 .dropdown-item:active {
  background-color: transparent;
}
.cid-uPJkJjYvn9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPJkJjYvn9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPJkJjYvn9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPJkJjYvn9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #090000;
}
.cid-uPJkJjYvn9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPJkJjYvn9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPJkJjYvn9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPJkJjYvn9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPJkJjYvn9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPJkJjYvn9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a0a0a;
}
.cid-uPJkJjYvn9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPJkJjYvn9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPJkJjYvn9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPJkJjYvn9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPJkJjYvn9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPJkJjYvn9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPJkJjYvn9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPJkJjYvn9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPJkJjYvn9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPJkJjYvn9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPJkJjYvn9 .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-uPJkJjYvn9 .navbar {
    height: 70px;
  }
  .cid-uPJkJjYvn9 .navbar.opened {
    height: auto;
  }
  .cid-uPJkJjYvn9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPJkJjYvn9 .nav-item-transform {
  display: flex;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uPJkJjYvn9 .nav-item .nav-link {
  color: #0A0A0A;
  font-weight: 700;
  padding: 16px !important;
  margin: 0 !important;
}
.cid-uPJkJjYvn9 .nav-item {
  font-weight: 700;
  margin-right: 16px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPJkJjYvn9 .nav-item {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-uPJkJjYvn9 .navbar .icons-menu {
    padding-right: 0 !important;
  }
}
.cid-uPJkJkNGmS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0a0a0a;
}
.cid-uPJkJkNGmS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJkJkNGmS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJkJkNGmS .content-wrapper {
  display: flex;
  position: relative;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uPJkJkNGmS .content-wrapper {
    padding: 30px 20px;
  }
}
.cid-uPJkJkNGmS .content-wrapper .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uPJkJkNGmS .content-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uPJkJkNGmS .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-image: linear-gradient(0.251turn, #161616 37%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  background-image: linear-gradient(270deg, #161616 37%, transparent 100%);
}
.cid-uPJkJkNGmS .content-wrapper .content-wrap {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uPJkJkNGmS .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uPJkJkNGmS .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #fff1e2;
  padding: 8px 16px;
  margin-bottom: 32px;
}
.cid-uPJkJkNGmS .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uPJkJkNGmS .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uPJkJkNGmS .content-wrapper .content-wrap .mbr-section-btn {
  margin-top: 64px;
}
.cid-uPJkJkNGmS .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uPJkJkNGmS .mbr-section-title {
  color: #404349;
}
.cid-uPJkJkNGmS .mbr-text {
  color: #404349;
}
.cid-uPJkJkNGmS .mbr-desc {
  color: #b19a7c;
}
.cid-uPJkJkNGmS .mbr-section-title,
.cid-uPJkJkNGmS .mbr-section-btn {
  color: #fafafa;
}
.cid-uPJkJlm7xx {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #818181;
  background: linear-gradient(90deg, #818181, #161616);
}
.cid-uPJkJlm7xx .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uPJkJlm7xx .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #2705fc);
  display: inline-block;
}
.cid-uPJkJlm7xx .container-fluid {
  padding: 0 3rem;
}
.cid-uPJkJlm7xx .mbr-iconfont {
  color: #767676;
  font-size: 1.3rem;
}
.cid-uPJkJlm7xx .mbr-iconfont:hover {
  color: #ffa0a4;
}
.cid-uPJkJlm7xx .image-wrap img {
  border-radius: 50%;
  width: 60%;
}
.cid-uPJkJlm7xx .mbr-title {
  margin-bottom: 0;
}
.cid-uPJkJlm7xx .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uPJkJlm7xx .social-media ul li {
  margin-right: .8rem;
  display: inline-block;
}
.cid-uPJkJlm7xx .card-wrap {
  padding: 0 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-uPJkJlm7xx .card-wrap {
    padding: 0 1rem;
  }
  .cid-uPJkJlm7xx .container-fluid {
    padding: 0 1rem;
  }
  .cid-uPJkJlm7xx .mbr-role {
    margin-top: .5rem;
  }
}
.cid-uPJkJlm7xx .mbr-section-title,
.cid-uPJkJlm7xx .underline {
  text-align: center;
  color: #ffffff;
}
.cid-uPJkJmyNdg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0a0a0a;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uPJkJmyNdg .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uPJkJmyNdg .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPJkJmyNdg .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPJkJmyNdg .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uPJkJmyNdg .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uPJkJmyNdg .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uPJkJmyNdg .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uPJkJmyNdg .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uPJkJmyNdg .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uPJkJn9Lul {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0a0a0a;
  position: relative;
  overflow: hidden;
}
.cid-uPJkJn9Lul .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJkJn9Lul .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJkJn9Lul .row {
  justify-content: center;
}
.cid-uPJkJn9Lul .mbr-section-title {
  color: #161616;
  width: 100%;
}
.cid-uPJkJn9Lul .mbr-section-subtitle {
  color: #161616;
  width: 100%;
}
.cid-uPJkJn9Lul .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 8px;
  border: 2px solid #000000;
  border-radius: 50%;
  font-size: 20px;
  color: #000000;
  margin-bottom: 1rem;
  width: min-content;
}
@media (max-width: 575px) {
  .cid-uPJkJn9Lul .mbr-iconfont {
    margin-bottom: 0;
    margin-right: 12px;
    padding: 5px;
  }
}
.cid-uPJkJn9Lul .card-row {
  justify-content: flex-start;
}
@media (min-width: 576px) {
  .cid-uPJkJn9Lul .card-row {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media (min-width: 576px) {
  .cid-uPJkJn9Lul .card {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uPJkJn9Lul .card:nth-child(n+3) {
    margin-top: 56px;
  }
}
@media (max-width: 575px) {
  .cid-uPJkJn9Lul .card:nth-child(n+2) {
    margin-top: 56px;
  }
}
.cid-uPJkJn9Lul .card-head {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 575px) {
  .cid-uPJkJn9Lul .card-head {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}
.cid-uPJkJn9Lul .card-title {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-uPJkJn9Lul .card-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-uPJkJn9Lul .circle-blur {
  position: absolute;
  top: -5%;
  right: -5% !important;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-uPJkJn9Lul .card-title,
.cid-uPJkJn9Lul .iconfont-wrapper {
  color: #ffffff;
}
.cid-uPJkJnRfJJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0a0a0a;
}
.cid-uPJkJnRfJJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJkJnRfJJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJkJnRfJJ .container {
  display: flex;
  justify-content: center;
}
.cid-uPJkJnRfJJ .row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.cid-uPJkJnRfJJ .col-copyright {
  padding: 0;
}
.cid-uPJkJnRfJJ .copyright {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPJkJnRfJJ .copyright {
    text-align: center;
  }
}
.cid-uPJkYxoHS6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-uPJkYxoHS6 {
    min-height: 70px;
  }
}
.cid-uPJkYxoHS6 nav.navbar {
  position: fixed;
}
.cid-uPJkYxoHS6 .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-uPJkYxoHS6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPJkYxoHS6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
  border: 2px solid #161616 !important;
  background-color: #d8d5d1 !important;
  margin-top: -1px;
  margin-bottom: -1px;
}
.cid-uPJkYxoHS6 .dropdown-item:hover,
.cid-uPJkYxoHS6 .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uPJkYxoHS6 .dropdown-item:hover span {
  color: white;
}
.cid-uPJkYxoHS6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPJkYxoHS6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPJkYxoHS6 .dropdown-item:hover,
.cid-uPJkYxoHS6 .dropdown-item:focus,
.cid-uPJkYxoHS6 .dropdown-item:active {
  background-color: #9ca387 !important;
}
.cid-uPJkYxoHS6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPJkYxoHS6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPJkYxoHS6 .nav-link {
  position: relative;
}
.cid-uPJkYxoHS6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uPJkYxoHS6 .container {
    flex-wrap: nowrap;
  }
}
.cid-uPJkYxoHS6 .iconfont-wrapper {
  color: #0a0a0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPJkYxoHS6 .navbar-caption {
  font-weight: 700;
}
.cid-uPJkYxoHS6 .navbar-nav {
  margin-right: auto;
  margin-left: auto;
}
.cid-uPJkYxoHS6 .dropdown-menu,
.cid-uPJkYxoHS6 .navbar.opened {
  background: #090000 !important;
}
.cid-uPJkYxoHS6 .nav-item:focus,
.cid-uPJkYxoHS6 .nav-link:focus {
  outline: none;
}
.cid-uPJkYxoHS6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPJkYxoHS6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPJkYxoHS6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPJkYxoHS6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPJkYxoHS6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPJkYxoHS6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPJkYxoHS6 .navbar {
  min-height: 96px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #090000;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 991px) {
  .cid-uPJkYxoHS6 .navbar {
    min-height: 80px;
  }
  .cid-uPJkYxoHS6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPJkYxoHS6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPJkYxoHS6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPJkYxoHS6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPJkYxoHS6 .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-uPJkYxoHS6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPJkYxoHS6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPJkYxoHS6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPJkYxoHS6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPJkYxoHS6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPJkYxoHS6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPJkYxoHS6 .navbar.opened {
  transition: all 0.3s;
}
.cid-uPJkYxoHS6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPJkYxoHS6 .navbar .navbar-logo img {
  width: auto;
}
.cid-uPJkYxoHS6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPJkYxoHS6 .navbar.collapsed {
  justify-content: center;
}
.cid-uPJkYxoHS6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPJkYxoHS6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPJkYxoHS6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uPJkYxoHS6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPJkYxoHS6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPJkYxoHS6 .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-uPJkYxoHS6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPJkYxoHS6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPJkYxoHS6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-uPJkYxoHS6 .navbar.navbar-short {
  min-height: 76px;
}
@media (max-width: 991px) {
  .cid-uPJkYxoHS6 .navbar.navbar-short {
    min-height: 70px;
  }
}
.cid-uPJkYxoHS6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPJkYxoHS6 .navbar.navbar-short .navbar-brand {
  min-height: 76px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPJkYxoHS6 .navbar.navbar-short .navbar-brand {
    min-height: 70px;
  }
}
.cid-uPJkYxoHS6 .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;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uPJkYxoHS6 .navbar-brand {
    min-height: 80px;
  }
}
.cid-uPJkYxoHS6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPJkYxoHS6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPJkYxoHS6 .dropdown-item.active,
.cid-uPJkYxoHS6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uPJkYxoHS6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPJkYxoHS6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPJkYxoHS6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPJkYxoHS6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #090000;
}
.cid-uPJkYxoHS6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPJkYxoHS6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPJkYxoHS6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPJkYxoHS6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPJkYxoHS6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPJkYxoHS6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a0a0a;
}
.cid-uPJkYxoHS6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPJkYxoHS6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPJkYxoHS6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPJkYxoHS6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPJkYxoHS6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPJkYxoHS6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPJkYxoHS6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPJkYxoHS6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPJkYxoHS6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uPJkYxoHS6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPJkYxoHS6 .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-uPJkYxoHS6 .navbar {
    height: 70px;
  }
  .cid-uPJkYxoHS6 .navbar.opened {
    height: auto;
  }
  .cid-uPJkYxoHS6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPJkYxoHS6 .nav-item-transform {
  display: flex;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uPJkYxoHS6 .nav-item .nav-link {
  color: #0A0A0A;
  font-weight: 700;
  padding: 16px !important;
  margin: 0 !important;
}
.cid-uPJkYxoHS6 .nav-item {
  font-weight: 700;
  margin-right: 16px;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPJkYxoHS6 .nav-item {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-uPJkYxoHS6 .navbar .icons-menu {
    padding-right: 0 !important;
  }
}
.cid-uPJkYy1P0t {
  background-image: url("../../../assets/images/img-591-1000x750.jpg");
}
.cid-uPJkYy1P0t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJkYy1P0t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJkYy1P0t .col-text {
  position: relative;
  z-index: 10;
}
@media (min-width: 992px) {
  .cid-uPJkYy1P0t .col-text {
    padding-right: 28px;
  }
}
.cid-uPJkYy1P0t .col-img {
  position: relative;
}
@media (min-width: 992px) {
  .cid-uPJkYy1P0t .col-img {
    padding-left: 28px;
  }
}
.cid-uPJkYy1P0t .card-title {
  color: #ffffff;
  margin-top: 1rem;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uPJkYy1P0t .card-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
  }
}
.cid-uPJkYy1P0t .mbr-text {
  color: #ffffff;
  margin-top: 24px;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uPJkYy1P0t .mbr-text {
    padding-right: 0;
    margin-top: 1rem;
    text-align: center !important;
  }
}
.cid-uPJkYy1P0t .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cid-uPJkYy1P0t .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-uPJkYy1P0t .mbr-section-btn {
    width: 100%;
  }
}
.cid-uPJkYy1P0t .image-wrapper {
  display: flex;
  position: relative;
  z-index: 10;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 510px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPJkYy1P0t .image-wrapper {
    height: 360px;
    margin-top: 24px;
  }
}
@media (max-width: 575px) {
  .cid-uPJkYy1P0t .image-wrapper {
    height: auto;
  }
}
.cid-uPJkYy1P0t .image-wrapper img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.cid-uPJkYy1P0t .card-title,
.cid-uPJkYy1P0t .mbr-section-btn {
  color: #ffffff;
}
.cid-uPJkYy1P0t .mbr-text,
.cid-uPJkYy1P0t .link-wrap {
  color: #000000;
}
.cid-uPJkYyyz9O {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0a0a0a;
  position: relative;
  overflow: hidden;
}
.cid-uPJkYyyz9O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJkYyyz9O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJkYyyz9O .row {
  justify-content: center;
}
.cid-uPJkYyyz9O .mbr-section-title {
  color: #161616;
  width: 100%;
}
.cid-uPJkYyyz9O .mbr-section-subtitle {
  color: #161616;
  width: 100%;
}
.cid-uPJkYyyz9O .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 8px;
  border: 2px solid #000000;
  border-radius: 50%;
  font-size: 20px;
  color: #000000;
  margin-bottom: 1rem;
  width: min-content;
}
@media (max-width: 575px) {
  .cid-uPJkYyyz9O .mbr-iconfont {
    margin-bottom: 0;
    margin-right: 12px;
    padding: 5px;
  }
}
.cid-uPJkYyyz9O .card-row {
  justify-content: flex-start;
}
@media (min-width: 576px) {
  .cid-uPJkYyyz9O .card-row {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media (min-width: 576px) {
  .cid-uPJkYyyz9O .card {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uPJkYyyz9O .card:nth-child(n+3) {
    margin-top: 56px;
  }
}
@media (max-width: 575px) {
  .cid-uPJkYyyz9O .card:nth-child(n+2) {
    margin-top: 56px;
  }
}
.cid-uPJkYyyz9O .card-head {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 575px) {
  .cid-uPJkYyyz9O .card-head {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}
.cid-uPJkYyyz9O .card-title {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-uPJkYyyz9O .card-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-uPJkYyyz9O .circle-blur {
  position: absolute;
  top: -5%;
  right: -5% !important;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-uPJkYyyz9O .card-title,
.cid-uPJkYyyz9O .iconfont-wrapper {
  color: #ffffff;
}
.cid-uPW2DCikr2 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background-color: #161616;
}
.cid-uPW2DCikr2 .mbr-section-title {
  margin-bottom: 18px;
  color: #ffffff;
}
.cid-uPW2DCikr2 .head_title {
  margin: 25px 0 58px;
  text-align: center;
}
.cid-uPW2DCikr2 .card_box {
  margin-bottom: 65px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uPW2DCikr2 .card_info {
  margin-bottom: 12px;
  display: flex;
}
.cid-uPW2DCikr2 .card_title {
  line-height: 1.1em;
  margin-bottom: 18px;
  color: #202020;
}
.cid-uPW2DCikr2 .card_text {
  margin-top: 4px;
}
.cid-uPW2DCikr2 .item-img {
  margin-bottom: 30px;
}
.cid-uPW2DCikr2 .item-img img {
  width: 100%;
  object-fit: cover;
  display: block;
  max-height: 450px;
}
.cid-uPW2DCikr2 .linkBtn a {
  position: relative;
  display: inline-block;
  padding: 1px 7px;
  vertical-align: middle;
  overflow: hidden;
  line-height: 2em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .2em;
}
.cid-uPW2DCikr2 .linkBtn a:after,
.cid-uPW2DCikr2 .linkBtn a:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.4s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}
.cid-uPW2DCikr2 .linkBtn a:before {
  left: 0;
}
.cid-uPW2DCikr2 .linkBtn a:after {
  left: -100%;
  transition-delay: .3s;
}
.cid-uPW2DCikr2 .linkBtn a:hover:before,
.cid-uPW2DCikr2 .linkBtn a:hover:after {
  transform: translateX(100%);
}
.cid-uPW2DCikr2 .card_name:before {
  content: " / ";
  display: inline-block;
  margin: 0 10px;
}
.cid-uPW2DCikr2 .card_text,
.cid-uPW2DCikr2 .linkBtn {
  color: #4a4a4a;
}
.cid-uPJmatRlNB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #161616;
}
.cid-uPJmatRlNB .map-border {
  border-bottom: 2px solid #191919;
}
.cid-uPJmatRlNB .google-map iframe {
  height: 500px;
}
.cid-uPJmatRlNB .map-border {
  padding-bottom: 80px;
}
@media (max-width: 425px) {
  .cid-uPJmatRlNB .google-map iframe {
    height: 250px;
  }
}
.cid-uPJmatRlNB .mbr-section-title {
  color: #ffffff;
}
.cid-uPJpofAeD6 {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-color: #000000;
}
.cid-uPJpofAeD6 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uPJpofAeD6 .card-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  margin-bottom: 2rem;
  display: flex;
  background: #2a2222;
}
.cid-uPJpofAeD6 .card-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-uPJpofAeD6 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPJpofAeD6 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uPJpofAeD6 .mbr-iconfont {
  font-size: 4rem;
  padding-right: 2rem;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPJpofAeD6 .mbr-iconfont {
    font-size: 2.8rem;
  }
}
.cid-uPJpofAeD6 .mbr-section-subtitle {
  color: #696969;
}
.cid-uPJpofAeD6 .mbr-section-title {
  color: #d8d5d1;
}
.cid-uPJpofAeD6 .card-title {
  color: #ffffff;
}
.cid-uPJpofAeD6 P {
  color: #ffffff;
}
.cid-uPJkYAQ6ak {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0a0a0a;
}
.cid-uPJkYAQ6ak .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJkYAQ6ak .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJkYAQ6ak .container {
  display: flex;
  justify-content: center;
}
.cid-uPJkYAQ6ak .row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.cid-uPJkYAQ6ak .col-copyright {
  padding: 0;
}
.cid-uPJkYAQ6ak .copyright {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uPJkYAQ6ak .copyright {
    text-align: center;
  }
}
