.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((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: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !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: #c5ac73 !important;
  border-color: #c5ac73 !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: #9f8342 !important;
  border-color: #9f8342 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #9f8342 !important;
  border-color: #9f8342 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !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: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !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: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !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: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  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: #d4d4d4 !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: #c5ac73;
  color: #c5ac73;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #9f8342 !important;
  background-color: transparent!important;
  border-color: #9f8342 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #c5ac73 !important;
  border-color: #c5ac73 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #c5ac73 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !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: #947a3e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.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: #a0d8df;
}
.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*/
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
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: #000000 !important;
  background: #c5ac73 !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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-tUxo9D6kMv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tUxo9D6kMv nav.navbar {
  position: fixed;
}
.cid-tUxo9D6kMv .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-tUxo9D6kMv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUxo9D6kMv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tUxo9D6kMv .dropdown-item:hover,
.cid-tUxo9D6kMv .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tUxo9D6kMv .dropdown-item:hover span {
  color: white;
}
.cid-tUxo9D6kMv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tUxo9D6kMv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tUxo9D6kMv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tUxo9D6kMv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUxo9D6kMv .nav-link {
  position: relative;
}
.cid-tUxo9D6kMv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxo9D6kMv .container {
    flex-wrap: wrap;
  }
}
.cid-tUxo9D6kMv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxo9D6kMv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tUxo9D6kMv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tUxo9D6kMv .dropdown-menu,
.cid-tUxo9D6kMv .navbar.opened {
  background: #000000 !important;
}
.cid-tUxo9D6kMv .nav-item:focus,
.cid-tUxo9D6kMv .nav-link:focus {
  outline: none;
}
.cid-tUxo9D6kMv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUxo9D6kMv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUxo9D6kMv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tUxo9D6kMv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUxo9D6kMv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUxo9D6kMv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUxo9D6kMv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tUxo9D6kMv .navbar.opened {
  transition: all 0.3s;
}
.cid-tUxo9D6kMv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tUxo9D6kMv .navbar .navbar-logo img {
  width: auto;
}
.cid-tUxo9D6kMv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUxo9D6kMv .navbar.collapsed {
  justify-content: center;
}
.cid-tUxo9D6kMv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUxo9D6kMv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUxo9D6kMv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tUxo9D6kMv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUxo9D6kMv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tUxo9D6kMv .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-tUxo9D6kMv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUxo9D6kMv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tUxo9D6kMv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tUxo9D6kMv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUxo9D6kMv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUxo9D6kMv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUxo9D6kMv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUxo9D6kMv .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-tUxo9D6kMv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUxo9D6kMv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUxo9D6kMv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUxo9D6kMv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUxo9D6kMv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUxo9D6kMv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tUxo9D6kMv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tUxo9D6kMv .navbar.navbar-short {
  min-height: 60px;
}
.cid-tUxo9D6kMv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tUxo9D6kMv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tUxo9D6kMv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tUxo9D6kMv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUxo9D6kMv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUxo9D6kMv .dropdown-item.active,
.cid-tUxo9D6kMv .dropdown-item:active {
  background-color: transparent;
}
.cid-tUxo9D6kMv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUxo9D6kMv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUxo9D6kMv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUxo9D6kMv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tUxo9D6kMv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUxo9D6kMv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUxo9D6kMv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUxo9D6kMv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tUxo9D6kMv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tUxo9D6kMv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tUxo9D6kMv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tUxo9D6kMv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxo9D6kMv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxo9D6kMv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tUxo9D6kMv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxo9D6kMv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tUxo9D6kMv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tUxo9D6kMv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxo9D6kMv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tUxo9D6kMv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUxo9D6kMv .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-tUxo9D6kMv .navbar {
    height: 70px;
  }
  .cid-tUxo9D6kMv .navbar.opened {
    height: auto;
  }
  .cid-tUxo9D6kMv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUx4Doik5W {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUx4Doik5W .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUx4Doik5W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUx4Doik5W .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tUx4Doik5W .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tUx4Doik5W .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tUx4Doik5W .mbr-section-title {
  color: #c5ac73;
  text-align: left;
}
.cid-tUx4Doik5W .mbr-text,
.cid-tUx4Doik5W .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-v4jU2bv4ne {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-v4jU2bv4ne .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4jU2bv4ne .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4jU2bv4ne .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v4jU2bv4ne .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v4jU2bv4ne .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v4jU2bv4ne .mbr-section-title {
  color: #c5ac73;
  text-align: left;
}
.cid-v4jU2bv4ne .mbr-text,
.cid-v4jU2bv4ne .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tUxbtQfETG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxbtQfETG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxbtQfETG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUxbtQfETG .row {
  flex-direction: row-reverse;
}
.cid-tUxbtQfETG .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tUxbtQfETG .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tUxbtQfETG .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tUxbtQfETG .mbr-section-title {
  color: #c5ac73;
  text-align: left;
}
.cid-tUxbtQfETG .mbr-text,
.cid-tUxbtQfETG .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tUxcjActXo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tUxo9D6kMv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tUxo9D6kMv nav.navbar {
  position: fixed;
}
.cid-tUxo9D6kMv .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-tUxo9D6kMv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUxo9D6kMv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tUxo9D6kMv .dropdown-item:hover,
.cid-tUxo9D6kMv .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tUxo9D6kMv .dropdown-item:hover span {
  color: white;
}
.cid-tUxo9D6kMv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tUxo9D6kMv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tUxo9D6kMv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tUxo9D6kMv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUxo9D6kMv .nav-link {
  position: relative;
}
.cid-tUxo9D6kMv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxo9D6kMv .container {
    flex-wrap: wrap;
  }
}
.cid-tUxo9D6kMv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxo9D6kMv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tUxo9D6kMv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tUxo9D6kMv .dropdown-menu,
.cid-tUxo9D6kMv .navbar.opened {
  background: #000000 !important;
}
.cid-tUxo9D6kMv .nav-item:focus,
.cid-tUxo9D6kMv .nav-link:focus {
  outline: none;
}
.cid-tUxo9D6kMv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUxo9D6kMv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUxo9D6kMv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tUxo9D6kMv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUxo9D6kMv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUxo9D6kMv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUxo9D6kMv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tUxo9D6kMv .navbar.opened {
  transition: all 0.3s;
}
.cid-tUxo9D6kMv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tUxo9D6kMv .navbar .navbar-logo img {
  width: auto;
}
.cid-tUxo9D6kMv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUxo9D6kMv .navbar.collapsed {
  justify-content: center;
}
.cid-tUxo9D6kMv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUxo9D6kMv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUxo9D6kMv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tUxo9D6kMv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUxo9D6kMv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tUxo9D6kMv .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-tUxo9D6kMv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUxo9D6kMv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tUxo9D6kMv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tUxo9D6kMv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUxo9D6kMv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUxo9D6kMv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUxo9D6kMv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUxo9D6kMv .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-tUxo9D6kMv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUxo9D6kMv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUxo9D6kMv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUxo9D6kMv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUxo9D6kMv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUxo9D6kMv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tUxo9D6kMv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tUxo9D6kMv .navbar.navbar-short {
  min-height: 60px;
}
.cid-tUxo9D6kMv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tUxo9D6kMv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tUxo9D6kMv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tUxo9D6kMv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUxo9D6kMv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUxo9D6kMv .dropdown-item.active,
.cid-tUxo9D6kMv .dropdown-item:active {
  background-color: transparent;
}
.cid-tUxo9D6kMv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUxo9D6kMv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUxo9D6kMv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUxo9D6kMv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tUxo9D6kMv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUxo9D6kMv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUxo9D6kMv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUxo9D6kMv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tUxo9D6kMv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tUxo9D6kMv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tUxo9D6kMv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tUxo9D6kMv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxo9D6kMv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxo9D6kMv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tUxo9D6kMv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxo9D6kMv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tUxo9D6kMv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tUxo9D6kMv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxo9D6kMv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tUxo9D6kMv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUxo9D6kMv .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-tUxo9D6kMv .navbar {
    height: 70px;
  }
  .cid-tUxo9D6kMv .navbar.opened {
    height: auto;
  }
  .cid-tUxo9D6kMv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUxlz2Aljs {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxlz2Aljs img,
.cid-tUxlz2Aljs .item-img {
  width: 100%;
}
.cid-tUxlz2Aljs .item:focus,
.cid-tUxlz2Aljs span:focus {
  outline: none;
}
.cid-tUxlz2Aljs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tUxlz2Aljs .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tUxlz2Aljs .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tUxlz2Aljs .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tUxlz2Aljs .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tUxlz2Aljs .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tUxlz2Aljs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tUxlz2Aljs .mbr-section-title {
  color: #c5ac73;
}
.cid-tUxlz2Aljs .mbr-text,
.cid-tUxlz2Aljs .mbr-section-btn {
  text-align: left;
}
.cid-tUxlz2Aljs .item-title {
  text-align: left;
}
.cid-tUxlz2Aljs .item-subtitle {
  text-align: left;
}
.cid-tUxlpkBcIr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tUxo9D6kMv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tUxo9D6kMv nav.navbar {
  position: fixed;
}
.cid-tUxo9D6kMv .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-tUxo9D6kMv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUxo9D6kMv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tUxo9D6kMv .dropdown-item:hover,
.cid-tUxo9D6kMv .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tUxo9D6kMv .dropdown-item:hover span {
  color: white;
}
.cid-tUxo9D6kMv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tUxo9D6kMv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tUxo9D6kMv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tUxo9D6kMv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUxo9D6kMv .nav-link {
  position: relative;
}
.cid-tUxo9D6kMv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxo9D6kMv .container {
    flex-wrap: wrap;
  }
}
.cid-tUxo9D6kMv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxo9D6kMv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tUxo9D6kMv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tUxo9D6kMv .dropdown-menu,
.cid-tUxo9D6kMv .navbar.opened {
  background: #000000 !important;
}
.cid-tUxo9D6kMv .nav-item:focus,
.cid-tUxo9D6kMv .nav-link:focus {
  outline: none;
}
.cid-tUxo9D6kMv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUxo9D6kMv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUxo9D6kMv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tUxo9D6kMv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUxo9D6kMv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUxo9D6kMv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUxo9D6kMv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tUxo9D6kMv .navbar.opened {
  transition: all 0.3s;
}
.cid-tUxo9D6kMv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tUxo9D6kMv .navbar .navbar-logo img {
  width: auto;
}
.cid-tUxo9D6kMv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUxo9D6kMv .navbar.collapsed {
  justify-content: center;
}
.cid-tUxo9D6kMv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUxo9D6kMv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUxo9D6kMv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tUxo9D6kMv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUxo9D6kMv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tUxo9D6kMv .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-tUxo9D6kMv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUxo9D6kMv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tUxo9D6kMv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tUxo9D6kMv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUxo9D6kMv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUxo9D6kMv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUxo9D6kMv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUxo9D6kMv .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-tUxo9D6kMv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUxo9D6kMv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUxo9D6kMv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUxo9D6kMv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUxo9D6kMv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUxo9D6kMv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tUxo9D6kMv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tUxo9D6kMv .navbar.navbar-short {
  min-height: 60px;
}
.cid-tUxo9D6kMv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tUxo9D6kMv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tUxo9D6kMv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tUxo9D6kMv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUxo9D6kMv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUxo9D6kMv .dropdown-item.active,
.cid-tUxo9D6kMv .dropdown-item:active {
  background-color: transparent;
}
.cid-tUxo9D6kMv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUxo9D6kMv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUxo9D6kMv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUxo9D6kMv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tUxo9D6kMv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUxo9D6kMv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUxo9D6kMv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUxo9D6kMv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tUxo9D6kMv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tUxo9D6kMv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tUxo9D6kMv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tUxo9D6kMv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxo9D6kMv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxo9D6kMv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tUxo9D6kMv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxo9D6kMv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tUxo9D6kMv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tUxo9D6kMv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxo9D6kMv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tUxo9D6kMv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUxo9D6kMv .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-tUxo9D6kMv .navbar {
    height: 70px;
  }
  .cid-tUxo9D6kMv .navbar.opened {
    height: auto;
  }
  .cid-tUxo9D6kMv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUxmb87dUZ {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxmb87dUZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxmb87dUZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUxmb87dUZ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tUxmb87dUZ .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tUxmb87dUZ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tUxmb87dUZ .mbr-section-title {
  color: #c5ac73;
  text-align: left;
}
.cid-tUxmb87dUZ .mbr-text,
.cid-tUxmb87dUZ .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tUxmV5FvLy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxmV5FvLy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxmV5FvLy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tUxmV5FvLy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tUxmV5FvLy .row {
  flex-direction: row-reverse;
}
.cid-tUxmV5FvLy img {
  width: 100%;
}
.cid-tUxnfgyxgu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxnfgyxgu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxnfgyxgu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUxnfgyxgu .item {
  padding-bottom: 2rem;
}
.cid-tUxnfgyxgu .item-wrapper {
  position: relative;
}
.cid-tUxnfgyxgu .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tUxnfgyxgu .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tUxnfgyxgu .carousel-control,
.cid-tUxnfgyxgu .close {
  background: #1b1b1b;
}
.cid-tUxnfgyxgu .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tUxnfgyxgu .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tUxnfgyxgu .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tUxnfgyxgu .carousel-control-next span {
  margin-left: 5px;
}
.cid-tUxnfgyxgu .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tUxnfgyxgu .close::before {
  content: '\e91a';
}
.cid-tUxnfgyxgu .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tUxnfgyxgu .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tUxnfgyxgu .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUxnfgyxgu .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tUxnfgyxgu .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tUxnfgyxgu .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tUxnfgyxgu .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tUxnfgyxgu .carousel-indicators li.active,
.cid-tUxnfgyxgu .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tUxnfgyxgu .carousel-indicators li::after,
.cid-tUxnfgyxgu .carousel-indicators li::before {
  content: none;
}
.cid-tUxnfgyxgu .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tUxnfgyxgu .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tUxnfgyxgu .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tUxnfgyxgu .carousel-indicators {
    display: none;
  }
}
.cid-tUxnfgyxgu .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tUxnfgyxgu .carousel-inner > .active {
  display: block;
}
.cid-tUxnfgyxgu .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUxnfgyxgu .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tUxnfgyxgu .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tUxnfgyxgu .carousel-control,
  .cid-tUxnfgyxgu .carousel-indicators,
  .cid-tUxnfgyxgu .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tUxnfgyxgu .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tUxnfgyxgu .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tUxnfgyxgu .carousel-indicators .active,
.cid-tUxnfgyxgu .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tUxnfgyxgu .carousel-indicators .active {
  background: #fff;
}
.cid-tUxnfgyxgu .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tUxnfgyxgu .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tUxnfgyxgu .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tUxnfgyxgu .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tUxnfgyxgu .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tUxnfgyxgu .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tUxnfgyxgu .carousel {
  width: 100%;
}
.cid-tUxnfgyxgu .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tUxnfgyxgu .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tUxnfgyxgu .modal.fade .modal-dialog,
.cid-tUxnfgyxgu .modal.in .modal-dialog {
  transform: none;
}
.cid-tUxnfgyxgu .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tUxnfgyxgu H6 {
  text-align: center;
}
.cid-tUxnfgyxgu H3 {
  color: #c5ac73;
}
.cid-tUxmb8LMH3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tUxBZNPkon {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tUxBZNPkon nav.navbar {
  position: fixed;
}
.cid-tUxBZNPkon .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-tUxBZNPkon .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUxBZNPkon .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tUxBZNPkon .dropdown-item:hover,
.cid-tUxBZNPkon .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tUxBZNPkon .dropdown-item:hover span {
  color: white;
}
.cid-tUxBZNPkon .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tUxBZNPkon .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tUxBZNPkon .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tUxBZNPkon .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUxBZNPkon .nav-link {
  position: relative;
}
.cid-tUxBZNPkon .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxBZNPkon .container {
    flex-wrap: wrap;
  }
}
.cid-tUxBZNPkon .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxBZNPkon .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tUxBZNPkon .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tUxBZNPkon .dropdown-menu,
.cid-tUxBZNPkon .navbar.opened {
  background: #000000 !important;
}
.cid-tUxBZNPkon .nav-item:focus,
.cid-tUxBZNPkon .nav-link:focus {
  outline: none;
}
.cid-tUxBZNPkon .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUxBZNPkon .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUxBZNPkon .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tUxBZNPkon .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUxBZNPkon .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUxBZNPkon .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUxBZNPkon .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tUxBZNPkon .navbar.opened {
  transition: all 0.3s;
}
.cid-tUxBZNPkon .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tUxBZNPkon .navbar .navbar-logo img {
  width: auto;
}
.cid-tUxBZNPkon .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUxBZNPkon .navbar.collapsed {
  justify-content: center;
}
.cid-tUxBZNPkon .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUxBZNPkon .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUxBZNPkon .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tUxBZNPkon .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUxBZNPkon .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tUxBZNPkon .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-tUxBZNPkon .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUxBZNPkon .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tUxBZNPkon .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tUxBZNPkon .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUxBZNPkon .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUxBZNPkon .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUxBZNPkon .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUxBZNPkon .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-tUxBZNPkon .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUxBZNPkon .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUxBZNPkon .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUxBZNPkon .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUxBZNPkon .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUxBZNPkon .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tUxBZNPkon .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tUxBZNPkon .navbar.navbar-short {
  min-height: 60px;
}
.cid-tUxBZNPkon .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tUxBZNPkon .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tUxBZNPkon .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tUxBZNPkon .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUxBZNPkon .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUxBZNPkon .dropdown-item.active,
.cid-tUxBZNPkon .dropdown-item:active {
  background-color: transparent;
}
.cid-tUxBZNPkon .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUxBZNPkon .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUxBZNPkon .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUxBZNPkon .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tUxBZNPkon .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUxBZNPkon .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUxBZNPkon ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUxBZNPkon .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tUxBZNPkon button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tUxBZNPkon button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tUxBZNPkon button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tUxBZNPkon button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxBZNPkon button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxBZNPkon button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tUxBZNPkon nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxBZNPkon nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tUxBZNPkon nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tUxBZNPkon nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxBZNPkon .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tUxBZNPkon a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUxBZNPkon .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-tUxBZNPkon .navbar {
    height: 70px;
  }
  .cid-tUxBZNPkon .navbar.opened {
    height: auto;
  }
  .cid-tUxBZNPkon .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUxBZMoNfq {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxBZMoNfq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxBZMoNfq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUxBZMoNfq .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tUxBZMoNfq .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tUxBZMoNfq .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tUxBZMoNfq .mbr-section-title {
  color: #c5ac73;
  text-align: left;
}
.cid-tUxBZMoNfq .mbr-text,
.cid-tUxBZMoNfq .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tUxBZMTuJR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxBZMTuJR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxBZMTuJR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tUxBZMTuJR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tUxBZMTuJR .row {
  flex-direction: row-reverse;
}
.cid-tUxBZMTuJR img {
  width: 100%;
}
.cid-tUxBZN7DGa {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxBZN7DGa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxBZN7DGa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUxBZN7DGa .item {
  padding-bottom: 2rem;
}
.cid-tUxBZN7DGa .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tUxBZN7DGa .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tUxBZN7DGa .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tUxBZN7DGa .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tUxBZN7DGa .carousel-control,
.cid-tUxBZN7DGa .close {
  background: #1b1b1b;
}
.cid-tUxBZN7DGa .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tUxBZN7DGa .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tUxBZN7DGa .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tUxBZN7DGa .carousel-control-next span {
  margin-left: 5px;
}
.cid-tUxBZN7DGa .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tUxBZN7DGa .close::before {
  content: '\e91a';
}
.cid-tUxBZN7DGa .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tUxBZN7DGa .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tUxBZN7DGa .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUxBZN7DGa .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tUxBZN7DGa .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tUxBZN7DGa .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tUxBZN7DGa .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tUxBZN7DGa .carousel-indicators li.active,
.cid-tUxBZN7DGa .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tUxBZN7DGa .carousel-indicators li::after,
.cid-tUxBZN7DGa .carousel-indicators li::before {
  content: none;
}
.cid-tUxBZN7DGa .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tUxBZN7DGa .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tUxBZN7DGa .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tUxBZN7DGa .carousel-indicators {
    display: none;
  }
}
.cid-tUxBZN7DGa .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tUxBZN7DGa .carousel-inner > .active {
  display: block;
}
.cid-tUxBZN7DGa .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUxBZN7DGa .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tUxBZN7DGa .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tUxBZN7DGa .carousel-control,
  .cid-tUxBZN7DGa .carousel-indicators,
  .cid-tUxBZN7DGa .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tUxBZN7DGa .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tUxBZN7DGa .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tUxBZN7DGa .carousel-indicators .active,
.cid-tUxBZN7DGa .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tUxBZN7DGa .carousel-indicators .active {
  background: #fff;
}
.cid-tUxBZN7DGa .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tUxBZN7DGa .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tUxBZN7DGa .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tUxBZN7DGa .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tUxBZN7DGa .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tUxBZN7DGa .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tUxBZN7DGa .carousel {
  width: 100%;
}
.cid-tUxBZN7DGa .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tUxBZN7DGa .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tUxBZN7DGa .modal.fade .modal-dialog,
.cid-tUxBZN7DGa .modal.in .modal-dialog {
  transform: none;
}
.cid-tUxBZN7DGa .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tUxBZN7DGa H6 {
  text-align: center;
}
.cid-tUxBZN7DGa H3 {
  color: #c5ac73;
}
.cid-tUxBZNvy4c {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tUxD25lgec {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tUxD25lgec nav.navbar {
  position: fixed;
}
.cid-tUxD25lgec .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-tUxD25lgec .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUxD25lgec .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tUxD25lgec .dropdown-item:hover,
.cid-tUxD25lgec .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tUxD25lgec .dropdown-item:hover span {
  color: white;
}
.cid-tUxD25lgec .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tUxD25lgec .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tUxD25lgec .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tUxD25lgec .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUxD25lgec .nav-link {
  position: relative;
}
.cid-tUxD25lgec .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxD25lgec .container {
    flex-wrap: wrap;
  }
}
.cid-tUxD25lgec .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxD25lgec .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tUxD25lgec .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tUxD25lgec .dropdown-menu,
.cid-tUxD25lgec .navbar.opened {
  background: #000000 !important;
}
.cid-tUxD25lgec .nav-item:focus,
.cid-tUxD25lgec .nav-link:focus {
  outline: none;
}
.cid-tUxD25lgec .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUxD25lgec .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUxD25lgec .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tUxD25lgec .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUxD25lgec .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUxD25lgec .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUxD25lgec .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tUxD25lgec .navbar.opened {
  transition: all 0.3s;
}
.cid-tUxD25lgec .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tUxD25lgec .navbar .navbar-logo img {
  width: auto;
}
.cid-tUxD25lgec .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUxD25lgec .navbar.collapsed {
  justify-content: center;
}
.cid-tUxD25lgec .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUxD25lgec .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUxD25lgec .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tUxD25lgec .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUxD25lgec .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tUxD25lgec .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-tUxD25lgec .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUxD25lgec .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tUxD25lgec .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tUxD25lgec .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUxD25lgec .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUxD25lgec .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUxD25lgec .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUxD25lgec .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-tUxD25lgec .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUxD25lgec .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUxD25lgec .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUxD25lgec .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUxD25lgec .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUxD25lgec .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tUxD25lgec .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tUxD25lgec .navbar.navbar-short {
  min-height: 60px;
}
.cid-tUxD25lgec .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tUxD25lgec .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tUxD25lgec .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tUxD25lgec .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUxD25lgec .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUxD25lgec .dropdown-item.active,
.cid-tUxD25lgec .dropdown-item:active {
  background-color: transparent;
}
.cid-tUxD25lgec .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUxD25lgec .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUxD25lgec .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUxD25lgec .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tUxD25lgec .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUxD25lgec .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUxD25lgec ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUxD25lgec .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tUxD25lgec button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tUxD25lgec button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tUxD25lgec button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tUxD25lgec button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxD25lgec button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxD25lgec button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tUxD25lgec nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxD25lgec nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tUxD25lgec nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tUxD25lgec nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxD25lgec .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tUxD25lgec a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUxD25lgec .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-tUxD25lgec .navbar {
    height: 70px;
  }
  .cid-tUxD25lgec .navbar.opened {
    height: auto;
  }
  .cid-tUxD25lgec .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUxD24tiev {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxD24tiev img,
.cid-tUxD24tiev .item-img {
  width: 100%;
}
.cid-tUxD24tiev .item:focus,
.cid-tUxD24tiev span:focus {
  outline: none;
}
.cid-tUxD24tiev .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tUxD24tiev .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tUxD24tiev .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tUxD24tiev .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tUxD24tiev .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tUxD24tiev .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tUxD24tiev .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tUxD24tiev .mbr-section-title {
  color: #c5ac73;
}
.cid-tUxD24tiev .mbr-text,
.cid-tUxD24tiev .mbr-section-btn {
  text-align: left;
}
.cid-tUxD24tiev .item-title {
  text-align: left;
}
.cid-tUxD24tiev .item-subtitle {
  text-align: left;
}
.cid-tUxD252kaN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tUxDfTrkAk {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tUxDfTrkAk nav.navbar {
  position: fixed;
}
.cid-tUxDfTrkAk .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-tUxDfTrkAk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUxDfTrkAk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tUxDfTrkAk .dropdown-item:hover,
.cid-tUxDfTrkAk .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tUxDfTrkAk .dropdown-item:hover span {
  color: white;
}
.cid-tUxDfTrkAk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tUxDfTrkAk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tUxDfTrkAk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tUxDfTrkAk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUxDfTrkAk .nav-link {
  position: relative;
}
.cid-tUxDfTrkAk .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxDfTrkAk .container {
    flex-wrap: wrap;
  }
}
.cid-tUxDfTrkAk .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxDfTrkAk .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tUxDfTrkAk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tUxDfTrkAk .dropdown-menu,
.cid-tUxDfTrkAk .navbar.opened {
  background: #000000 !important;
}
.cid-tUxDfTrkAk .nav-item:focus,
.cid-tUxDfTrkAk .nav-link:focus {
  outline: none;
}
.cid-tUxDfTrkAk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUxDfTrkAk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUxDfTrkAk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tUxDfTrkAk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUxDfTrkAk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUxDfTrkAk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUxDfTrkAk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tUxDfTrkAk .navbar.opened {
  transition: all 0.3s;
}
.cid-tUxDfTrkAk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tUxDfTrkAk .navbar .navbar-logo img {
  width: auto;
}
.cid-tUxDfTrkAk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUxDfTrkAk .navbar.collapsed {
  justify-content: center;
}
.cid-tUxDfTrkAk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUxDfTrkAk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUxDfTrkAk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tUxDfTrkAk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUxDfTrkAk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tUxDfTrkAk .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-tUxDfTrkAk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUxDfTrkAk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tUxDfTrkAk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tUxDfTrkAk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUxDfTrkAk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUxDfTrkAk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUxDfTrkAk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUxDfTrkAk .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-tUxDfTrkAk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUxDfTrkAk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUxDfTrkAk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUxDfTrkAk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUxDfTrkAk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUxDfTrkAk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tUxDfTrkAk .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tUxDfTrkAk .navbar.navbar-short {
  min-height: 60px;
}
.cid-tUxDfTrkAk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tUxDfTrkAk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tUxDfTrkAk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tUxDfTrkAk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUxDfTrkAk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUxDfTrkAk .dropdown-item.active,
.cid-tUxDfTrkAk .dropdown-item:active {
  background-color: transparent;
}
.cid-tUxDfTrkAk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUxDfTrkAk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUxDfTrkAk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUxDfTrkAk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tUxDfTrkAk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUxDfTrkAk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUxDfTrkAk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUxDfTrkAk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tUxDfTrkAk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tUxDfTrkAk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tUxDfTrkAk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tUxDfTrkAk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxDfTrkAk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxDfTrkAk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tUxDfTrkAk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxDfTrkAk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tUxDfTrkAk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tUxDfTrkAk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxDfTrkAk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tUxDfTrkAk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUxDfTrkAk .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-tUxDfTrkAk .navbar {
    height: 70px;
  }
  .cid-tUxDfTrkAk .navbar.opened {
    height: auto;
  }
  .cid-tUxDfTrkAk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUxDfRUppM {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxDfRUppM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxDfRUppM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUxDfRUppM .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tUxDfRUppM .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tUxDfRUppM .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tUxDfRUppM .mbr-section-title {
  color: #c5ac73;
  text-align: left;
}
.cid-tUxDfRUppM .mbr-text,
.cid-tUxDfRUppM .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tUxDfSmANM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxDfSmANM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxDfSmANM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tUxDfSmANM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tUxDfSmANM .row {
  flex-direction: row-reverse;
}
.cid-tUxDfSmANM img {
  width: 100%;
}
.cid-tUxDfSC9kO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxDfSC9kO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxDfSC9kO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUxDfSC9kO .item {
  padding-bottom: 2rem;
}
.cid-tUxDfSC9kO .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tUxDfSC9kO .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tUxDfSC9kO .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tUxDfSC9kO .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tUxDfSC9kO .carousel-control,
.cid-tUxDfSC9kO .close {
  background: #1b1b1b;
}
.cid-tUxDfSC9kO .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tUxDfSC9kO .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tUxDfSC9kO .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tUxDfSC9kO .carousel-control-next span {
  margin-left: 5px;
}
.cid-tUxDfSC9kO .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tUxDfSC9kO .close::before {
  content: '\e91a';
}
.cid-tUxDfSC9kO .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tUxDfSC9kO .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tUxDfSC9kO .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUxDfSC9kO .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tUxDfSC9kO .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tUxDfSC9kO .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tUxDfSC9kO .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tUxDfSC9kO .carousel-indicators li.active,
.cid-tUxDfSC9kO .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tUxDfSC9kO .carousel-indicators li::after,
.cid-tUxDfSC9kO .carousel-indicators li::before {
  content: none;
}
.cid-tUxDfSC9kO .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tUxDfSC9kO .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tUxDfSC9kO .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tUxDfSC9kO .carousel-indicators {
    display: none;
  }
}
.cid-tUxDfSC9kO .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tUxDfSC9kO .carousel-inner > .active {
  display: block;
}
.cid-tUxDfSC9kO .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUxDfSC9kO .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tUxDfSC9kO .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tUxDfSC9kO .carousel-control,
  .cid-tUxDfSC9kO .carousel-indicators,
  .cid-tUxDfSC9kO .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tUxDfSC9kO .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tUxDfSC9kO .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tUxDfSC9kO .carousel-indicators .active,
.cid-tUxDfSC9kO .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tUxDfSC9kO .carousel-indicators .active {
  background: #fff;
}
.cid-tUxDfSC9kO .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tUxDfSC9kO .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tUxDfSC9kO .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tUxDfSC9kO .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tUxDfSC9kO .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tUxDfSC9kO .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tUxDfSC9kO .carousel {
  width: 100%;
}
.cid-tUxDfSC9kO .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tUxDfSC9kO .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tUxDfSC9kO .modal.fade .modal-dialog,
.cid-tUxDfSC9kO .modal.in .modal-dialog {
  transform: none;
}
.cid-tUxDfSC9kO .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tUxDfSC9kO H6 {
  text-align: center;
}
.cid-tUxDfSC9kO H3 {
  color: #c5ac73;
}
.cid-tUxDfT2Qp2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tUxEcINNiD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tUxEcINNiD nav.navbar {
  position: fixed;
}
.cid-tUxEcINNiD .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-tUxEcINNiD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUxEcINNiD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tUxEcINNiD .dropdown-item:hover,
.cid-tUxEcINNiD .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tUxEcINNiD .dropdown-item:hover span {
  color: white;
}
.cid-tUxEcINNiD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tUxEcINNiD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tUxEcINNiD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tUxEcINNiD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUxEcINNiD .nav-link {
  position: relative;
}
.cid-tUxEcINNiD .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxEcINNiD .container {
    flex-wrap: wrap;
  }
}
.cid-tUxEcINNiD .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxEcINNiD .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tUxEcINNiD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tUxEcINNiD .dropdown-menu,
.cid-tUxEcINNiD .navbar.opened {
  background: #000000 !important;
}
.cid-tUxEcINNiD .nav-item:focus,
.cid-tUxEcINNiD .nav-link:focus {
  outline: none;
}
.cid-tUxEcINNiD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUxEcINNiD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUxEcINNiD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tUxEcINNiD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUxEcINNiD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUxEcINNiD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUxEcINNiD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tUxEcINNiD .navbar.opened {
  transition: all 0.3s;
}
.cid-tUxEcINNiD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tUxEcINNiD .navbar .navbar-logo img {
  width: auto;
}
.cid-tUxEcINNiD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUxEcINNiD .navbar.collapsed {
  justify-content: center;
}
.cid-tUxEcINNiD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUxEcINNiD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUxEcINNiD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tUxEcINNiD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUxEcINNiD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tUxEcINNiD .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-tUxEcINNiD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUxEcINNiD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tUxEcINNiD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tUxEcINNiD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUxEcINNiD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUxEcINNiD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUxEcINNiD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUxEcINNiD .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-tUxEcINNiD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUxEcINNiD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUxEcINNiD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUxEcINNiD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUxEcINNiD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUxEcINNiD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tUxEcINNiD .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tUxEcINNiD .navbar.navbar-short {
  min-height: 60px;
}
.cid-tUxEcINNiD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tUxEcINNiD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tUxEcINNiD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tUxEcINNiD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUxEcINNiD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUxEcINNiD .dropdown-item.active,
.cid-tUxEcINNiD .dropdown-item:active {
  background-color: transparent;
}
.cid-tUxEcINNiD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUxEcINNiD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUxEcINNiD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUxEcINNiD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tUxEcINNiD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUxEcINNiD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUxEcINNiD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUxEcINNiD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tUxEcINNiD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tUxEcINNiD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tUxEcINNiD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tUxEcINNiD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxEcINNiD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxEcINNiD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tUxEcINNiD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxEcINNiD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tUxEcINNiD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tUxEcINNiD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxEcINNiD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tUxEcINNiD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUxEcINNiD .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-tUxEcINNiD .navbar {
    height: 70px;
  }
  .cid-tUxEcINNiD .navbar.opened {
    height: auto;
  }
  .cid-tUxEcINNiD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUxEcHmwHZ {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxEcHmwHZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxEcHmwHZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUxEcHmwHZ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tUxEcHmwHZ .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tUxEcHmwHZ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tUxEcHmwHZ .mbr-section-title {
  color: #c5ac73;
  text-align: left;
}
.cid-tUxEcHmwHZ .mbr-text,
.cid-tUxEcHmwHZ .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tUxEcHPhez {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxEcHPhez .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxEcHPhez .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tUxEcHPhez .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tUxEcHPhez .row {
  flex-direction: row-reverse;
}
.cid-tUxEcHPhez img {
  width: 100%;
}
.cid-tUxEcI22H6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxEcI22H6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxEcI22H6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUxEcI22H6 .item {
  padding-bottom: 2rem;
}
.cid-tUxEcI22H6 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tUxEcI22H6 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tUxEcI22H6 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tUxEcI22H6 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tUxEcI22H6 .carousel-control,
.cid-tUxEcI22H6 .close {
  background: #1b1b1b;
}
.cid-tUxEcI22H6 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tUxEcI22H6 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tUxEcI22H6 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tUxEcI22H6 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tUxEcI22H6 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tUxEcI22H6 .close::before {
  content: '\e91a';
}
.cid-tUxEcI22H6 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tUxEcI22H6 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tUxEcI22H6 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUxEcI22H6 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tUxEcI22H6 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tUxEcI22H6 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tUxEcI22H6 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tUxEcI22H6 .carousel-indicators li.active,
.cid-tUxEcI22H6 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tUxEcI22H6 .carousel-indicators li::after,
.cid-tUxEcI22H6 .carousel-indicators li::before {
  content: none;
}
.cid-tUxEcI22H6 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tUxEcI22H6 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tUxEcI22H6 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tUxEcI22H6 .carousel-indicators {
    display: none;
  }
}
.cid-tUxEcI22H6 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tUxEcI22H6 .carousel-inner > .active {
  display: block;
}
.cid-tUxEcI22H6 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUxEcI22H6 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tUxEcI22H6 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tUxEcI22H6 .carousel-control,
  .cid-tUxEcI22H6 .carousel-indicators,
  .cid-tUxEcI22H6 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tUxEcI22H6 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tUxEcI22H6 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tUxEcI22H6 .carousel-indicators .active,
.cid-tUxEcI22H6 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tUxEcI22H6 .carousel-indicators .active {
  background: #fff;
}
.cid-tUxEcI22H6 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tUxEcI22H6 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tUxEcI22H6 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tUxEcI22H6 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tUxEcI22H6 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tUxEcI22H6 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tUxEcI22H6 .carousel {
  width: 100%;
}
.cid-tUxEcI22H6 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tUxEcI22H6 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tUxEcI22H6 .modal.fade .modal-dialog,
.cid-tUxEcI22H6 .modal.in .modal-dialog {
  transform: none;
}
.cid-tUxEcI22H6 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tUxEcI22H6 H6 {
  text-align: center;
}
.cid-tUxEcI22H6 H3 {
  color: #c5ac73;
}
.cid-tUxEcIpv3u {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tUxJekWdD8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tUxJekWdD8 nav.navbar {
  position: fixed;
}
.cid-tUxJekWdD8 .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-tUxJekWdD8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUxJekWdD8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tUxJekWdD8 .dropdown-item:hover,
.cid-tUxJekWdD8 .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tUxJekWdD8 .dropdown-item:hover span {
  color: white;
}
.cid-tUxJekWdD8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tUxJekWdD8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tUxJekWdD8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tUxJekWdD8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUxJekWdD8 .nav-link {
  position: relative;
}
.cid-tUxJekWdD8 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxJekWdD8 .container {
    flex-wrap: wrap;
  }
}
.cid-tUxJekWdD8 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxJekWdD8 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tUxJekWdD8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tUxJekWdD8 .dropdown-menu,
.cid-tUxJekWdD8 .navbar.opened {
  background: #000000 !important;
}
.cid-tUxJekWdD8 .nav-item:focus,
.cid-tUxJekWdD8 .nav-link:focus {
  outline: none;
}
.cid-tUxJekWdD8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUxJekWdD8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUxJekWdD8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tUxJekWdD8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUxJekWdD8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUxJekWdD8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUxJekWdD8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tUxJekWdD8 .navbar.opened {
  transition: all 0.3s;
}
.cid-tUxJekWdD8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tUxJekWdD8 .navbar .navbar-logo img {
  width: auto;
}
.cid-tUxJekWdD8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUxJekWdD8 .navbar.collapsed {
  justify-content: center;
}
.cid-tUxJekWdD8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUxJekWdD8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUxJekWdD8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tUxJekWdD8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUxJekWdD8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tUxJekWdD8 .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-tUxJekWdD8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUxJekWdD8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tUxJekWdD8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tUxJekWdD8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUxJekWdD8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUxJekWdD8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUxJekWdD8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUxJekWdD8 .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-tUxJekWdD8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUxJekWdD8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUxJekWdD8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUxJekWdD8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUxJekWdD8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUxJekWdD8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tUxJekWdD8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tUxJekWdD8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tUxJekWdD8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tUxJekWdD8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tUxJekWdD8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tUxJekWdD8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUxJekWdD8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUxJekWdD8 .dropdown-item.active,
.cid-tUxJekWdD8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tUxJekWdD8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUxJekWdD8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUxJekWdD8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUxJekWdD8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tUxJekWdD8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUxJekWdD8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUxJekWdD8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUxJekWdD8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tUxJekWdD8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tUxJekWdD8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tUxJekWdD8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tUxJekWdD8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxJekWdD8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxJekWdD8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tUxJekWdD8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxJekWdD8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tUxJekWdD8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tUxJekWdD8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxJekWdD8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tUxJekWdD8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUxJekWdD8 .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-tUxJekWdD8 .navbar {
    height: 70px;
  }
  .cid-tUxJekWdD8 .navbar.opened {
    height: auto;
  }
  .cid-tUxJekWdD8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUxJejn66a {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxJejn66a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxJejn66a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUxJejn66a .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tUxJejn66a .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tUxJejn66a .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tUxJejn66a .mbr-section-title {
  color: #c5ac73;
  text-align: left;
}
.cid-tUxJejn66a .mbr-text,
.cid-tUxJejn66a .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tUxJejQ0sE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxJejQ0sE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxJejQ0sE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tUxJejQ0sE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tUxJejQ0sE .row {
  flex-direction: row-reverse;
}
.cid-tUxJejQ0sE img {
  width: 100%;
}
.cid-tUxJekeaGo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxJekeaGo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxJekeaGo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUxJekeaGo .item {
  padding-bottom: 2rem;
}
.cid-tUxJekeaGo .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tUxJekeaGo .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tUxJekeaGo .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tUxJekeaGo .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tUxJekeaGo .carousel-control,
.cid-tUxJekeaGo .close {
  background: #1b1b1b;
}
.cid-tUxJekeaGo .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tUxJekeaGo .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tUxJekeaGo .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tUxJekeaGo .carousel-control-next span {
  margin-left: 5px;
}
.cid-tUxJekeaGo .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tUxJekeaGo .close::before {
  content: '\e91a';
}
.cid-tUxJekeaGo .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tUxJekeaGo .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tUxJekeaGo .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUxJekeaGo .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tUxJekeaGo .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tUxJekeaGo .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tUxJekeaGo .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tUxJekeaGo .carousel-indicators li.active,
.cid-tUxJekeaGo .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tUxJekeaGo .carousel-indicators li::after,
.cid-tUxJekeaGo .carousel-indicators li::before {
  content: none;
}
.cid-tUxJekeaGo .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tUxJekeaGo .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tUxJekeaGo .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tUxJekeaGo .carousel-indicators {
    display: none;
  }
}
.cid-tUxJekeaGo .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tUxJekeaGo .carousel-inner > .active {
  display: block;
}
.cid-tUxJekeaGo .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUxJekeaGo .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tUxJekeaGo .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tUxJekeaGo .carousel-control,
  .cid-tUxJekeaGo .carousel-indicators,
  .cid-tUxJekeaGo .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tUxJekeaGo .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tUxJekeaGo .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tUxJekeaGo .carousel-indicators .active,
.cid-tUxJekeaGo .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tUxJekeaGo .carousel-indicators .active {
  background: #fff;
}
.cid-tUxJekeaGo .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tUxJekeaGo .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tUxJekeaGo .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tUxJekeaGo .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tUxJekeaGo .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tUxJekeaGo .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tUxJekeaGo .carousel {
  width: 100%;
}
.cid-tUxJekeaGo .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tUxJekeaGo .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tUxJekeaGo .modal.fade .modal-dialog,
.cid-tUxJekeaGo .modal.in .modal-dialog {
  transform: none;
}
.cid-tUxJekeaGo .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tUxJekeaGo H6 {
  text-align: center;
}
.cid-tUxJekeaGo H3 {
  color: #c5ac73;
}
.cid-tUxJekDWKa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tUxJMyQmwH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tUxJMyQmwH nav.navbar {
  position: fixed;
}
.cid-tUxJMyQmwH .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-tUxJMyQmwH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUxJMyQmwH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tUxJMyQmwH .dropdown-item:hover,
.cid-tUxJMyQmwH .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tUxJMyQmwH .dropdown-item:hover span {
  color: white;
}
.cid-tUxJMyQmwH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tUxJMyQmwH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tUxJMyQmwH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tUxJMyQmwH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUxJMyQmwH .nav-link {
  position: relative;
}
.cid-tUxJMyQmwH .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxJMyQmwH .container {
    flex-wrap: wrap;
  }
}
.cid-tUxJMyQmwH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxJMyQmwH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tUxJMyQmwH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tUxJMyQmwH .dropdown-menu,
.cid-tUxJMyQmwH .navbar.opened {
  background: #000000 !important;
}
.cid-tUxJMyQmwH .nav-item:focus,
.cid-tUxJMyQmwH .nav-link:focus {
  outline: none;
}
.cid-tUxJMyQmwH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUxJMyQmwH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUxJMyQmwH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tUxJMyQmwH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUxJMyQmwH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUxJMyQmwH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUxJMyQmwH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tUxJMyQmwH .navbar.opened {
  transition: all 0.3s;
}
.cid-tUxJMyQmwH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tUxJMyQmwH .navbar .navbar-logo img {
  width: auto;
}
.cid-tUxJMyQmwH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUxJMyQmwH .navbar.collapsed {
  justify-content: center;
}
.cid-tUxJMyQmwH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUxJMyQmwH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUxJMyQmwH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tUxJMyQmwH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUxJMyQmwH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tUxJMyQmwH .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-tUxJMyQmwH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUxJMyQmwH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tUxJMyQmwH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tUxJMyQmwH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUxJMyQmwH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUxJMyQmwH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUxJMyQmwH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUxJMyQmwH .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-tUxJMyQmwH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUxJMyQmwH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUxJMyQmwH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUxJMyQmwH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUxJMyQmwH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUxJMyQmwH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tUxJMyQmwH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tUxJMyQmwH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tUxJMyQmwH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tUxJMyQmwH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tUxJMyQmwH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tUxJMyQmwH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUxJMyQmwH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUxJMyQmwH .dropdown-item.active,
.cid-tUxJMyQmwH .dropdown-item:active {
  background-color: transparent;
}
.cid-tUxJMyQmwH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUxJMyQmwH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUxJMyQmwH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUxJMyQmwH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tUxJMyQmwH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUxJMyQmwH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUxJMyQmwH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUxJMyQmwH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tUxJMyQmwH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tUxJMyQmwH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tUxJMyQmwH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tUxJMyQmwH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxJMyQmwH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxJMyQmwH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tUxJMyQmwH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxJMyQmwH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tUxJMyQmwH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tUxJMyQmwH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxJMyQmwH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tUxJMyQmwH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUxJMyQmwH .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-tUxJMyQmwH .navbar {
    height: 70px;
  }
  .cid-tUxJMyQmwH .navbar.opened {
    height: auto;
  }
  .cid-tUxJMyQmwH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUxJMxsFKB {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxJMxsFKB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxJMxsFKB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUxJMxsFKB .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tUxJMxsFKB .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tUxJMxsFKB .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tUxJMxsFKB .mbr-section-title {
  color: #c5ac73;
  text-align: left;
}
.cid-tUxJMxsFKB .mbr-text,
.cid-tUxJMxsFKB .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tUxJMxXWn6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxJMxXWn6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxJMxXWn6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tUxJMxXWn6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tUxJMxXWn6 .row {
  flex-direction: row-reverse;
}
.cid-tUxJMxXWn6 img {
  width: 100%;
}
.cid-tUxJMybi9n {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxJMybi9n .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxJMybi9n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUxJMybi9n .item {
  padding-bottom: 2rem;
}
.cid-tUxJMybi9n .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tUxJMybi9n .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tUxJMybi9n .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tUxJMybi9n .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tUxJMybi9n .carousel-control,
.cid-tUxJMybi9n .close {
  background: #1b1b1b;
}
.cid-tUxJMybi9n .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tUxJMybi9n .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tUxJMybi9n .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tUxJMybi9n .carousel-control-next span {
  margin-left: 5px;
}
.cid-tUxJMybi9n .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tUxJMybi9n .close::before {
  content: '\e91a';
}
.cid-tUxJMybi9n .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tUxJMybi9n .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tUxJMybi9n .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUxJMybi9n .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tUxJMybi9n .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tUxJMybi9n .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tUxJMybi9n .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tUxJMybi9n .carousel-indicators li.active,
.cid-tUxJMybi9n .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tUxJMybi9n .carousel-indicators li::after,
.cid-tUxJMybi9n .carousel-indicators li::before {
  content: none;
}
.cid-tUxJMybi9n .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tUxJMybi9n .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tUxJMybi9n .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tUxJMybi9n .carousel-indicators {
    display: none;
  }
}
.cid-tUxJMybi9n .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tUxJMybi9n .carousel-inner > .active {
  display: block;
}
.cid-tUxJMybi9n .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUxJMybi9n .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tUxJMybi9n .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tUxJMybi9n .carousel-control,
  .cid-tUxJMybi9n .carousel-indicators,
  .cid-tUxJMybi9n .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tUxJMybi9n .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tUxJMybi9n .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tUxJMybi9n .carousel-indicators .active,
.cid-tUxJMybi9n .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tUxJMybi9n .carousel-indicators .active {
  background: #fff;
}
.cid-tUxJMybi9n .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tUxJMybi9n .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tUxJMybi9n .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tUxJMybi9n .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tUxJMybi9n .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tUxJMybi9n .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tUxJMybi9n .carousel {
  width: 100%;
}
.cid-tUxJMybi9n .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tUxJMybi9n .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tUxJMybi9n .modal.fade .modal-dialog,
.cid-tUxJMybi9n .modal.in .modal-dialog {
  transform: none;
}
.cid-tUxJMybi9n .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tUxJMybi9n H6 {
  text-align: center;
}
.cid-tUxJMybi9n H3 {
  color: #c5ac73;
}
.cid-tUxJMyuRCS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tUxKtv2kkX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tUxKtv2kkX nav.navbar {
  position: fixed;
}
.cid-tUxKtv2kkX .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-tUxKtv2kkX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUxKtv2kkX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tUxKtv2kkX .dropdown-item:hover,
.cid-tUxKtv2kkX .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tUxKtv2kkX .dropdown-item:hover span {
  color: white;
}
.cid-tUxKtv2kkX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tUxKtv2kkX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tUxKtv2kkX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tUxKtv2kkX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUxKtv2kkX .nav-link {
  position: relative;
}
.cid-tUxKtv2kkX .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxKtv2kkX .container {
    flex-wrap: wrap;
  }
}
.cid-tUxKtv2kkX .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxKtv2kkX .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tUxKtv2kkX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tUxKtv2kkX .dropdown-menu,
.cid-tUxKtv2kkX .navbar.opened {
  background: #000000 !important;
}
.cid-tUxKtv2kkX .nav-item:focus,
.cid-tUxKtv2kkX .nav-link:focus {
  outline: none;
}
.cid-tUxKtv2kkX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUxKtv2kkX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUxKtv2kkX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tUxKtv2kkX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUxKtv2kkX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUxKtv2kkX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUxKtv2kkX .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tUxKtv2kkX .navbar.opened {
  transition: all 0.3s;
}
.cid-tUxKtv2kkX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tUxKtv2kkX .navbar .navbar-logo img {
  width: auto;
}
.cid-tUxKtv2kkX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUxKtv2kkX .navbar.collapsed {
  justify-content: center;
}
.cid-tUxKtv2kkX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUxKtv2kkX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUxKtv2kkX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tUxKtv2kkX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUxKtv2kkX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tUxKtv2kkX .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-tUxKtv2kkX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUxKtv2kkX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tUxKtv2kkX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tUxKtv2kkX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUxKtv2kkX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUxKtv2kkX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUxKtv2kkX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUxKtv2kkX .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-tUxKtv2kkX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUxKtv2kkX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUxKtv2kkX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUxKtv2kkX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUxKtv2kkX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUxKtv2kkX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tUxKtv2kkX .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tUxKtv2kkX .navbar.navbar-short {
  min-height: 60px;
}
.cid-tUxKtv2kkX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tUxKtv2kkX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tUxKtv2kkX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tUxKtv2kkX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUxKtv2kkX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUxKtv2kkX .dropdown-item.active,
.cid-tUxKtv2kkX .dropdown-item:active {
  background-color: transparent;
}
.cid-tUxKtv2kkX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUxKtv2kkX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUxKtv2kkX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUxKtv2kkX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tUxKtv2kkX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUxKtv2kkX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUxKtv2kkX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUxKtv2kkX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tUxKtv2kkX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tUxKtv2kkX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tUxKtv2kkX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tUxKtv2kkX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxKtv2kkX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxKtv2kkX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tUxKtv2kkX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxKtv2kkX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tUxKtv2kkX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tUxKtv2kkX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxKtv2kkX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tUxKtv2kkX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUxKtv2kkX .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-tUxKtv2kkX .navbar {
    height: 70px;
  }
  .cid-tUxKtv2kkX .navbar.opened {
    height: auto;
  }
  .cid-tUxKtv2kkX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUxKts7z82 {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxKts7z82 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxKts7z82 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUxKts7z82 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tUxKts7z82 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tUxKts7z82 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tUxKts7z82 .mbr-section-title {
  color: #c5ac73;
  text-align: left;
}
.cid-tUxKts7z82 .mbr-text,
.cid-tUxKts7z82 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tUxL7bOIKo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxL7bOIKo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxL7bOIKo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tUxL7bOIKo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tUxL7bOIKo .row {
  flex-direction: row-reverse;
}
.cid-tUxL7bOIKo img {
  width: 100%;
}
.cid-tUxKtungnW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxKtungnW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxKtungnW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUxKtungnW .item {
  padding-bottom: 2rem;
}
.cid-tUxKtungnW .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tUxKtungnW .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tUxKtungnW .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tUxKtungnW .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tUxKtungnW .carousel-control,
.cid-tUxKtungnW .close {
  background: #1b1b1b;
}
.cid-tUxKtungnW .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tUxKtungnW .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tUxKtungnW .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tUxKtungnW .carousel-control-next span {
  margin-left: 5px;
}
.cid-tUxKtungnW .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tUxKtungnW .close::before {
  content: '\e91a';
}
.cid-tUxKtungnW .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tUxKtungnW .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tUxKtungnW .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUxKtungnW .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tUxKtungnW .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tUxKtungnW .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tUxKtungnW .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tUxKtungnW .carousel-indicators li.active,
.cid-tUxKtungnW .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tUxKtungnW .carousel-indicators li::after,
.cid-tUxKtungnW .carousel-indicators li::before {
  content: none;
}
.cid-tUxKtungnW .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tUxKtungnW .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tUxKtungnW .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tUxKtungnW .carousel-indicators {
    display: none;
  }
}
.cid-tUxKtungnW .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tUxKtungnW .carousel-inner > .active {
  display: block;
}
.cid-tUxKtungnW .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUxKtungnW .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tUxKtungnW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tUxKtungnW .carousel-control,
  .cid-tUxKtungnW .carousel-indicators,
  .cid-tUxKtungnW .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tUxKtungnW .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tUxKtungnW .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tUxKtungnW .carousel-indicators .active,
.cid-tUxKtungnW .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tUxKtungnW .carousel-indicators .active {
  background: #fff;
}
.cid-tUxKtungnW .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tUxKtungnW .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tUxKtungnW .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tUxKtungnW .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tUxKtungnW .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tUxKtungnW .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tUxKtungnW .carousel {
  width: 100%;
}
.cid-tUxKtungnW .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tUxKtungnW .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tUxKtungnW .modal.fade .modal-dialog,
.cid-tUxKtungnW .modal.in .modal-dialog {
  transform: none;
}
.cid-tUxKtungnW .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tUxKtungnW H6 {
  text-align: center;
}
.cid-tUxKtungnW H3 {
  color: #c5ac73;
}
.cid-tUxKtuG8mw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tUxLqPkFH7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tUxLqPkFH7 nav.navbar {
  position: fixed;
}
.cid-tUxLqPkFH7 .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-tUxLqPkFH7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUxLqPkFH7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tUxLqPkFH7 .dropdown-item:hover,
.cid-tUxLqPkFH7 .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tUxLqPkFH7 .dropdown-item:hover span {
  color: white;
}
.cid-tUxLqPkFH7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tUxLqPkFH7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tUxLqPkFH7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tUxLqPkFH7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUxLqPkFH7 .nav-link {
  position: relative;
}
.cid-tUxLqPkFH7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxLqPkFH7 .container {
    flex-wrap: wrap;
  }
}
.cid-tUxLqPkFH7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxLqPkFH7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tUxLqPkFH7 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tUxLqPkFH7 .dropdown-menu,
.cid-tUxLqPkFH7 .navbar.opened {
  background: #000000 !important;
}
.cid-tUxLqPkFH7 .nav-item:focus,
.cid-tUxLqPkFH7 .nav-link:focus {
  outline: none;
}
.cid-tUxLqPkFH7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUxLqPkFH7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUxLqPkFH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tUxLqPkFH7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUxLqPkFH7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUxLqPkFH7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUxLqPkFH7 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tUxLqPkFH7 .navbar.opened {
  transition: all 0.3s;
}
.cid-tUxLqPkFH7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tUxLqPkFH7 .navbar .navbar-logo img {
  width: auto;
}
.cid-tUxLqPkFH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUxLqPkFH7 .navbar.collapsed {
  justify-content: center;
}
.cid-tUxLqPkFH7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUxLqPkFH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUxLqPkFH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tUxLqPkFH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUxLqPkFH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tUxLqPkFH7 .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-tUxLqPkFH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUxLqPkFH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tUxLqPkFH7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tUxLqPkFH7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUxLqPkFH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUxLqPkFH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUxLqPkFH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUxLqPkFH7 .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-tUxLqPkFH7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUxLqPkFH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUxLqPkFH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUxLqPkFH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUxLqPkFH7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUxLqPkFH7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tUxLqPkFH7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tUxLqPkFH7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tUxLqPkFH7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tUxLqPkFH7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tUxLqPkFH7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tUxLqPkFH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUxLqPkFH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUxLqPkFH7 .dropdown-item.active,
.cid-tUxLqPkFH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-tUxLqPkFH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUxLqPkFH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUxLqPkFH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUxLqPkFH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tUxLqPkFH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUxLqPkFH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUxLqPkFH7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUxLqPkFH7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tUxLqPkFH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tUxLqPkFH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tUxLqPkFH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tUxLqPkFH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxLqPkFH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxLqPkFH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tUxLqPkFH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxLqPkFH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tUxLqPkFH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tUxLqPkFH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxLqPkFH7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tUxLqPkFH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUxLqPkFH7 .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-tUxLqPkFH7 .navbar {
    height: 70px;
  }
  .cid-tUxLqPkFH7 .navbar.opened {
    height: auto;
  }
  .cid-tUxLqPkFH7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUxLqOandl {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxLqOandl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxLqOandl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUxLqOandl .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tUxLqOandl .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tUxLqOandl .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tUxLqOandl .mbr-section-title {
  color: #c5ac73;
  text-align: left;
}
.cid-tUxLqOandl .mbr-text,
.cid-tUxLqOandl .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tUxLqOzeXW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxLqOzeXW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxLqOzeXW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tUxLqOzeXW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tUxLqOzeXW .row {
  flex-direction: row-reverse;
}
.cid-tUxLqOzeXW img {
  width: 100%;
}
.cid-tUxLqOLxni {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxLqOLxni .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxLqOLxni .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUxLqOLxni .item {
  padding-bottom: 2rem;
}
.cid-tUxLqOLxni .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tUxLqOLxni .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tUxLqOLxni .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tUxLqOLxni .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tUxLqOLxni .carousel-control,
.cid-tUxLqOLxni .close {
  background: #1b1b1b;
}
.cid-tUxLqOLxni .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tUxLqOLxni .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tUxLqOLxni .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tUxLqOLxni .carousel-control-next span {
  margin-left: 5px;
}
.cid-tUxLqOLxni .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tUxLqOLxni .close::before {
  content: '\e91a';
}
.cid-tUxLqOLxni .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tUxLqOLxni .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tUxLqOLxni .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUxLqOLxni .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tUxLqOLxni .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tUxLqOLxni .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tUxLqOLxni .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tUxLqOLxni .carousel-indicators li.active,
.cid-tUxLqOLxni .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tUxLqOLxni .carousel-indicators li::after,
.cid-tUxLqOLxni .carousel-indicators li::before {
  content: none;
}
.cid-tUxLqOLxni .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tUxLqOLxni .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tUxLqOLxni .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tUxLqOLxni .carousel-indicators {
    display: none;
  }
}
.cid-tUxLqOLxni .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tUxLqOLxni .carousel-inner > .active {
  display: block;
}
.cid-tUxLqOLxni .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUxLqOLxni .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tUxLqOLxni .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tUxLqOLxni .carousel-control,
  .cid-tUxLqOLxni .carousel-indicators,
  .cid-tUxLqOLxni .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tUxLqOLxni .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tUxLqOLxni .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tUxLqOLxni .carousel-indicators .active,
.cid-tUxLqOLxni .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tUxLqOLxni .carousel-indicators .active {
  background: #fff;
}
.cid-tUxLqOLxni .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tUxLqOLxni .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tUxLqOLxni .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tUxLqOLxni .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tUxLqOLxni .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tUxLqOLxni .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tUxLqOLxni .carousel {
  width: 100%;
}
.cid-tUxLqOLxni .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tUxLqOLxni .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tUxLqOLxni .modal.fade .modal-dialog,
.cid-tUxLqOLxni .modal.in .modal-dialog {
  transform: none;
}
.cid-tUxLqOLxni .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tUxLqOLxni H6 {
  text-align: center;
}
.cid-tUxLqOLxni H3 {
  color: #c5ac73;
}
.cid-tUxLqP4yN0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tUxMzbQeEb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tUxMzbQeEb nav.navbar {
  position: fixed;
}
.cid-tUxMzbQeEb .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-tUxMzbQeEb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUxMzbQeEb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tUxMzbQeEb .dropdown-item:hover,
.cid-tUxMzbQeEb .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tUxMzbQeEb .dropdown-item:hover span {
  color: white;
}
.cid-tUxMzbQeEb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tUxMzbQeEb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tUxMzbQeEb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tUxMzbQeEb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUxMzbQeEb .nav-link {
  position: relative;
}
.cid-tUxMzbQeEb .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxMzbQeEb .container {
    flex-wrap: wrap;
  }
}
.cid-tUxMzbQeEb .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxMzbQeEb .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tUxMzbQeEb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tUxMzbQeEb .dropdown-menu,
.cid-tUxMzbQeEb .navbar.opened {
  background: #000000 !important;
}
.cid-tUxMzbQeEb .nav-item:focus,
.cid-tUxMzbQeEb .nav-link:focus {
  outline: none;
}
.cid-tUxMzbQeEb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUxMzbQeEb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUxMzbQeEb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tUxMzbQeEb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUxMzbQeEb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUxMzbQeEb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUxMzbQeEb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tUxMzbQeEb .navbar.opened {
  transition: all 0.3s;
}
.cid-tUxMzbQeEb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tUxMzbQeEb .navbar .navbar-logo img {
  width: auto;
}
.cid-tUxMzbQeEb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUxMzbQeEb .navbar.collapsed {
  justify-content: center;
}
.cid-tUxMzbQeEb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUxMzbQeEb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUxMzbQeEb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tUxMzbQeEb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUxMzbQeEb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tUxMzbQeEb .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-tUxMzbQeEb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUxMzbQeEb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tUxMzbQeEb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tUxMzbQeEb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUxMzbQeEb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUxMzbQeEb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUxMzbQeEb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUxMzbQeEb .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-tUxMzbQeEb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUxMzbQeEb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUxMzbQeEb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUxMzbQeEb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUxMzbQeEb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUxMzbQeEb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tUxMzbQeEb .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tUxMzbQeEb .navbar.navbar-short {
  min-height: 60px;
}
.cid-tUxMzbQeEb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tUxMzbQeEb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tUxMzbQeEb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tUxMzbQeEb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUxMzbQeEb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUxMzbQeEb .dropdown-item.active,
.cid-tUxMzbQeEb .dropdown-item:active {
  background-color: transparent;
}
.cid-tUxMzbQeEb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUxMzbQeEb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUxMzbQeEb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUxMzbQeEb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tUxMzbQeEb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUxMzbQeEb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUxMzbQeEb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUxMzbQeEb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tUxMzbQeEb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tUxMzbQeEb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tUxMzbQeEb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tUxMzbQeEb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxMzbQeEb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxMzbQeEb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tUxMzbQeEb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxMzbQeEb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tUxMzbQeEb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tUxMzbQeEb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxMzbQeEb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tUxMzbQeEb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUxMzbQeEb .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-tUxMzbQeEb .navbar {
    height: 70px;
  }
  .cid-tUxMzbQeEb .navbar.opened {
    height: auto;
  }
  .cid-tUxMzbQeEb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUxMzaBbNS {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxMzaBbNS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxMzaBbNS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUxMzaBbNS .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tUxMzaBbNS .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tUxMzaBbNS .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tUxMzaBbNS .mbr-section-title {
  color: #c5ac73;
  text-align: left;
}
.cid-tUxMzaBbNS .mbr-text,
.cid-tUxMzaBbNS .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tUxMzaZfhl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxMzaZfhl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxMzaZfhl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tUxMzaZfhl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tUxMzaZfhl .row {
  flex-direction: row-reverse;
}
.cid-tUxMzaZfhl img {
  width: 100%;
}
.cid-tUxMzbcbCj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxMzbcbCj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxMzbcbCj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUxMzbcbCj .item {
  padding-bottom: 2rem;
}
.cid-tUxMzbcbCj .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tUxMzbcbCj .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tUxMzbcbCj .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tUxMzbcbCj .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tUxMzbcbCj .carousel-control,
.cid-tUxMzbcbCj .close {
  background: #1b1b1b;
}
.cid-tUxMzbcbCj .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tUxMzbcbCj .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tUxMzbcbCj .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tUxMzbcbCj .carousel-control-next span {
  margin-left: 5px;
}
.cid-tUxMzbcbCj .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tUxMzbcbCj .close::before {
  content: '\e91a';
}
.cid-tUxMzbcbCj .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tUxMzbcbCj .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tUxMzbcbCj .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUxMzbcbCj .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tUxMzbcbCj .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tUxMzbcbCj .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tUxMzbcbCj .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tUxMzbcbCj .carousel-indicators li.active,
.cid-tUxMzbcbCj .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tUxMzbcbCj .carousel-indicators li::after,
.cid-tUxMzbcbCj .carousel-indicators li::before {
  content: none;
}
.cid-tUxMzbcbCj .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tUxMzbcbCj .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tUxMzbcbCj .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tUxMzbcbCj .carousel-indicators {
    display: none;
  }
}
.cid-tUxMzbcbCj .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tUxMzbcbCj .carousel-inner > .active {
  display: block;
}
.cid-tUxMzbcbCj .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUxMzbcbCj .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tUxMzbcbCj .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tUxMzbcbCj .carousel-control,
  .cid-tUxMzbcbCj .carousel-indicators,
  .cid-tUxMzbcbCj .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tUxMzbcbCj .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tUxMzbcbCj .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tUxMzbcbCj .carousel-indicators .active,
.cid-tUxMzbcbCj .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tUxMzbcbCj .carousel-indicators .active {
  background: #fff;
}
.cid-tUxMzbcbCj .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tUxMzbcbCj .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tUxMzbcbCj .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tUxMzbcbCj .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tUxMzbcbCj .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tUxMzbcbCj .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tUxMzbcbCj .carousel {
  width: 100%;
}
.cid-tUxMzbcbCj .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tUxMzbcbCj .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tUxMzbcbCj .modal.fade .modal-dialog,
.cid-tUxMzbcbCj .modal.in .modal-dialog {
  transform: none;
}
.cid-tUxMzbcbCj .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tUxMzbcbCj H6 {
  text-align: center;
}
.cid-tUxMzbcbCj H3 {
  color: #c5ac73;
}
.cid-tUxMzbxVbO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tUxSdLfXay {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tUxSdLfXay nav.navbar {
  position: fixed;
}
.cid-tUxSdLfXay .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-tUxSdLfXay .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUxSdLfXay .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tUxSdLfXay .dropdown-item:hover,
.cid-tUxSdLfXay .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tUxSdLfXay .dropdown-item:hover span {
  color: white;
}
.cid-tUxSdLfXay .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tUxSdLfXay .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tUxSdLfXay .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tUxSdLfXay .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUxSdLfXay .nav-link {
  position: relative;
}
.cid-tUxSdLfXay .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxSdLfXay .container {
    flex-wrap: wrap;
  }
}
.cid-tUxSdLfXay .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxSdLfXay .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tUxSdLfXay .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tUxSdLfXay .dropdown-menu,
.cid-tUxSdLfXay .navbar.opened {
  background: #000000 !important;
}
.cid-tUxSdLfXay .nav-item:focus,
.cid-tUxSdLfXay .nav-link:focus {
  outline: none;
}
.cid-tUxSdLfXay .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUxSdLfXay .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUxSdLfXay .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tUxSdLfXay .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUxSdLfXay .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUxSdLfXay .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUxSdLfXay .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tUxSdLfXay .navbar.opened {
  transition: all 0.3s;
}
.cid-tUxSdLfXay .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tUxSdLfXay .navbar .navbar-logo img {
  width: auto;
}
.cid-tUxSdLfXay .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUxSdLfXay .navbar.collapsed {
  justify-content: center;
}
.cid-tUxSdLfXay .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUxSdLfXay .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUxSdLfXay .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tUxSdLfXay .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUxSdLfXay .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tUxSdLfXay .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-tUxSdLfXay .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUxSdLfXay .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tUxSdLfXay .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tUxSdLfXay .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUxSdLfXay .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUxSdLfXay .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUxSdLfXay .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUxSdLfXay .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-tUxSdLfXay .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUxSdLfXay .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUxSdLfXay .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUxSdLfXay .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUxSdLfXay .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUxSdLfXay .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tUxSdLfXay .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tUxSdLfXay .navbar.navbar-short {
  min-height: 60px;
}
.cid-tUxSdLfXay .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tUxSdLfXay .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tUxSdLfXay .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tUxSdLfXay .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUxSdLfXay .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUxSdLfXay .dropdown-item.active,
.cid-tUxSdLfXay .dropdown-item:active {
  background-color: transparent;
}
.cid-tUxSdLfXay .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUxSdLfXay .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUxSdLfXay .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUxSdLfXay .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tUxSdLfXay .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUxSdLfXay .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUxSdLfXay ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUxSdLfXay .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tUxSdLfXay button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tUxSdLfXay button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tUxSdLfXay button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tUxSdLfXay button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxSdLfXay button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxSdLfXay button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tUxSdLfXay nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxSdLfXay nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tUxSdLfXay nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tUxSdLfXay nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxSdLfXay .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tUxSdLfXay a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUxSdLfXay .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-tUxSdLfXay .navbar {
    height: 70px;
  }
  .cid-tUxSdLfXay .navbar.opened {
    height: auto;
  }
  .cid-tUxSdLfXay .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUxSdJWOfS {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxSdJWOfS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxSdJWOfS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUxSdJWOfS .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tUxSdJWOfS .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tUxSdJWOfS .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tUxSdJWOfS .mbr-section-title {
  color: #c5ac73;
  text-align: left;
}
.cid-tUxSdJWOfS .mbr-text,
.cid-tUxSdJWOfS .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tUxSdKlmNz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxSdKlmNz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxSdKlmNz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tUxSdKlmNz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tUxSdKlmNz .row {
  flex-direction: row-reverse;
}
.cid-tUxSdKlmNz img {
  width: 100%;
}
.cid-tUxSdKyoGi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxSdKyoGi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxSdKyoGi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUxSdKyoGi .item {
  padding-bottom: 2rem;
}
.cid-tUxSdKyoGi .item-wrapper {
  position: relative;
}
.cid-tUxSdKyoGi .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tUxSdKyoGi .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tUxSdKyoGi .carousel-control,
.cid-tUxSdKyoGi .close {
  background: #1b1b1b;
}
.cid-tUxSdKyoGi .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tUxSdKyoGi .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tUxSdKyoGi .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tUxSdKyoGi .carousel-control-next span {
  margin-left: 5px;
}
.cid-tUxSdKyoGi .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tUxSdKyoGi .close::before {
  content: '\e91a';
}
.cid-tUxSdKyoGi .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tUxSdKyoGi .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tUxSdKyoGi .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUxSdKyoGi .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tUxSdKyoGi .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tUxSdKyoGi .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tUxSdKyoGi .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tUxSdKyoGi .carousel-indicators li.active,
.cid-tUxSdKyoGi .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tUxSdKyoGi .carousel-indicators li::after,
.cid-tUxSdKyoGi .carousel-indicators li::before {
  content: none;
}
.cid-tUxSdKyoGi .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tUxSdKyoGi .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tUxSdKyoGi .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tUxSdKyoGi .carousel-indicators {
    display: none;
  }
}
.cid-tUxSdKyoGi .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tUxSdKyoGi .carousel-inner > .active {
  display: block;
}
.cid-tUxSdKyoGi .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUxSdKyoGi .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tUxSdKyoGi .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tUxSdKyoGi .carousel-control,
  .cid-tUxSdKyoGi .carousel-indicators,
  .cid-tUxSdKyoGi .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tUxSdKyoGi .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tUxSdKyoGi .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tUxSdKyoGi .carousel-indicators .active,
.cid-tUxSdKyoGi .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tUxSdKyoGi .carousel-indicators .active {
  background: #fff;
}
.cid-tUxSdKyoGi .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tUxSdKyoGi .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tUxSdKyoGi .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tUxSdKyoGi .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tUxSdKyoGi .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tUxSdKyoGi .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tUxSdKyoGi .carousel {
  width: 100%;
}
.cid-tUxSdKyoGi .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tUxSdKyoGi .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tUxSdKyoGi .modal.fade .modal-dialog,
.cid-tUxSdKyoGi .modal.in .modal-dialog {
  transform: none;
}
.cid-tUxSdKyoGi .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tUxSdKyoGi H6 {
  text-align: center;
}
.cid-tUxSdKyoGi H3 {
  color: #c5ac73;
}
.cid-tUxSdKX0rg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tUxUaquLNP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tUxUaquLNP nav.navbar {
  position: fixed;
}
.cid-tUxUaquLNP .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-tUxUaquLNP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUxUaquLNP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tUxUaquLNP .dropdown-item:hover,
.cid-tUxUaquLNP .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tUxUaquLNP .dropdown-item:hover span {
  color: white;
}
.cid-tUxUaquLNP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tUxUaquLNP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tUxUaquLNP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tUxUaquLNP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUxUaquLNP .nav-link {
  position: relative;
}
.cid-tUxUaquLNP .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxUaquLNP .container {
    flex-wrap: wrap;
  }
}
.cid-tUxUaquLNP .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUxUaquLNP .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tUxUaquLNP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tUxUaquLNP .dropdown-menu,
.cid-tUxUaquLNP .navbar.opened {
  background: #000000 !important;
}
.cid-tUxUaquLNP .nav-item:focus,
.cid-tUxUaquLNP .nav-link:focus {
  outline: none;
}
.cid-tUxUaquLNP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUxUaquLNP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUxUaquLNP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tUxUaquLNP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUxUaquLNP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUxUaquLNP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUxUaquLNP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tUxUaquLNP .navbar.opened {
  transition: all 0.3s;
}
.cid-tUxUaquLNP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tUxUaquLNP .navbar .navbar-logo img {
  width: auto;
}
.cid-tUxUaquLNP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUxUaquLNP .navbar.collapsed {
  justify-content: center;
}
.cid-tUxUaquLNP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUxUaquLNP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUxUaquLNP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tUxUaquLNP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUxUaquLNP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tUxUaquLNP .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-tUxUaquLNP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUxUaquLNP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tUxUaquLNP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tUxUaquLNP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUxUaquLNP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUxUaquLNP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUxUaquLNP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUxUaquLNP .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-tUxUaquLNP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUxUaquLNP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUxUaquLNP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUxUaquLNP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUxUaquLNP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUxUaquLNP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tUxUaquLNP .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tUxUaquLNP .navbar.navbar-short {
  min-height: 60px;
}
.cid-tUxUaquLNP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tUxUaquLNP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tUxUaquLNP .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tUxUaquLNP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUxUaquLNP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUxUaquLNP .dropdown-item.active,
.cid-tUxUaquLNP .dropdown-item:active {
  background-color: transparent;
}
.cid-tUxUaquLNP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUxUaquLNP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUxUaquLNP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUxUaquLNP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tUxUaquLNP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUxUaquLNP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUxUaquLNP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUxUaquLNP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tUxUaquLNP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tUxUaquLNP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tUxUaquLNP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tUxUaquLNP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxUaquLNP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUxUaquLNP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tUxUaquLNP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxUaquLNP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tUxUaquLNP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tUxUaquLNP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUxUaquLNP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tUxUaquLNP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUxUaquLNP .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-tUxUaquLNP .navbar {
    height: 70px;
  }
  .cid-tUxUaquLNP .navbar.opened {
    height: auto;
  }
  .cid-tUxUaquLNP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUxUltqY1R {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUxUltqY1R .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxUltqY1R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUxUltqY1R .item {
  padding-bottom: 2rem;
}
.cid-tUxUltqY1R .item-wrapper {
  position: relative;
}
.cid-tUxUltqY1R .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tUxUltqY1R .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tUxUltqY1R .carousel-control,
.cid-tUxUltqY1R .close {
  background: #1b1b1b;
}
.cid-tUxUltqY1R .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tUxUltqY1R .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tUxUltqY1R .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tUxUltqY1R .carousel-control-next span {
  margin-left: 5px;
}
.cid-tUxUltqY1R .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tUxUltqY1R .close::before {
  content: '\e91a';
}
.cid-tUxUltqY1R .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tUxUltqY1R .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tUxUltqY1R .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUxUltqY1R .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tUxUltqY1R .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tUxUltqY1R .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tUxUltqY1R .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tUxUltqY1R .carousel-indicators li.active,
.cid-tUxUltqY1R .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tUxUltqY1R .carousel-indicators li::after,
.cid-tUxUltqY1R .carousel-indicators li::before {
  content: none;
}
.cid-tUxUltqY1R .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tUxUltqY1R .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tUxUltqY1R .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tUxUltqY1R .carousel-indicators {
    display: none;
  }
}
.cid-tUxUltqY1R .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tUxUltqY1R .carousel-inner > .active {
  display: block;
}
.cid-tUxUltqY1R .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUxUltqY1R .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tUxUltqY1R .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tUxUltqY1R .carousel-control,
  .cid-tUxUltqY1R .carousel-indicators,
  .cid-tUxUltqY1R .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tUxUltqY1R .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tUxUltqY1R .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tUxUltqY1R .carousel-indicators .active,
.cid-tUxUltqY1R .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tUxUltqY1R .carousel-indicators .active {
  background: #fff;
}
.cid-tUxUltqY1R .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tUxUltqY1R .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tUxUltqY1R .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tUxUltqY1R .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tUxUltqY1R .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tUxUltqY1R .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tUxUltqY1R .carousel {
  width: 100%;
}
.cid-tUxUltqY1R .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tUxUltqY1R .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tUxUltqY1R .modal.fade .modal-dialog,
.cid-tUxUltqY1R .modal.in .modal-dialog {
  transform: none;
}
.cid-tUxUltqY1R .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tUxUltqY1R H6 {
  text-align: center;
  color: #ffffff;
}
.cid-tUxUltqY1R H3 {
  color: #c5ac73;
}
.cid-tUxUltqY1R H4 {
  color: #ffffff;
}
.cid-tUxUaqdRVy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tUyBuPJRKr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tUyBuPJRKr nav.navbar {
  position: fixed;
}
.cid-tUyBuPJRKr .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-tUyBuPJRKr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUyBuPJRKr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tUyBuPJRKr .dropdown-item:hover,
.cid-tUyBuPJRKr .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tUyBuPJRKr .dropdown-item:hover span {
  color: white;
}
.cid-tUyBuPJRKr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tUyBuPJRKr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tUyBuPJRKr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tUyBuPJRKr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUyBuPJRKr .nav-link {
  position: relative;
}
.cid-tUyBuPJRKr .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUyBuPJRKr .container {
    flex-wrap: wrap;
  }
}
.cid-tUyBuPJRKr .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUyBuPJRKr .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tUyBuPJRKr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tUyBuPJRKr .dropdown-menu,
.cid-tUyBuPJRKr .navbar.opened {
  background: #000000 !important;
}
.cid-tUyBuPJRKr .nav-item:focus,
.cid-tUyBuPJRKr .nav-link:focus {
  outline: none;
}
.cid-tUyBuPJRKr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUyBuPJRKr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUyBuPJRKr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tUyBuPJRKr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUyBuPJRKr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUyBuPJRKr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUyBuPJRKr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tUyBuPJRKr .navbar.opened {
  transition: all 0.3s;
}
.cid-tUyBuPJRKr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tUyBuPJRKr .navbar .navbar-logo img {
  width: auto;
}
.cid-tUyBuPJRKr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUyBuPJRKr .navbar.collapsed {
  justify-content: center;
}
.cid-tUyBuPJRKr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUyBuPJRKr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUyBuPJRKr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tUyBuPJRKr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUyBuPJRKr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tUyBuPJRKr .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-tUyBuPJRKr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUyBuPJRKr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tUyBuPJRKr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tUyBuPJRKr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUyBuPJRKr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUyBuPJRKr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUyBuPJRKr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUyBuPJRKr .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-tUyBuPJRKr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUyBuPJRKr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUyBuPJRKr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUyBuPJRKr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUyBuPJRKr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUyBuPJRKr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tUyBuPJRKr .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tUyBuPJRKr .navbar.navbar-short {
  min-height: 60px;
}
.cid-tUyBuPJRKr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tUyBuPJRKr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tUyBuPJRKr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tUyBuPJRKr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUyBuPJRKr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUyBuPJRKr .dropdown-item.active,
.cid-tUyBuPJRKr .dropdown-item:active {
  background-color: transparent;
}
.cid-tUyBuPJRKr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUyBuPJRKr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUyBuPJRKr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUyBuPJRKr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tUyBuPJRKr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUyBuPJRKr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUyBuPJRKr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUyBuPJRKr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tUyBuPJRKr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tUyBuPJRKr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tUyBuPJRKr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tUyBuPJRKr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUyBuPJRKr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUyBuPJRKr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tUyBuPJRKr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUyBuPJRKr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tUyBuPJRKr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tUyBuPJRKr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUyBuPJRKr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tUyBuPJRKr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUyBuPJRKr .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-tUyBuPJRKr .navbar {
    height: 70px;
  }
  .cid-tUyBuPJRKr .navbar.opened {
    height: auto;
  }
  .cid-tUyBuPJRKr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUyEAjWUD8 {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ukFVPQyDaG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-ukFVPQyDaG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukFVPQyDaG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukFVPQyDaG .video-wrapper iframe {
  width: 100%;
}
.cid-ukFVPQyDaG .mbr-section-title,
.cid-ukFVPQyDaG .mbr-section-subtitle,
.cid-ukFVPQyDaG .mbr-text {
  text-align: center;
}
.cid-ukFVPQyDaG .mbr-section-title {
  color: #c5ac73;
}
.cid-ukFVPQyDaG .mbr-text {
  color: #ffffff;
}
.cid-tUyBuO5xVH {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUyBuO5xVH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUyBuO5xVH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUyBuO5xVH .item {
  padding-bottom: 2rem;
}
.cid-tUyBuO5xVH .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tUyBuO5xVH .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tUyBuO5xVH .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tUyBuO5xVH .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tUyBuO5xVH .carousel-control,
.cid-tUyBuO5xVH .close {
  background: #1b1b1b;
}
.cid-tUyBuO5xVH .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tUyBuO5xVH .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tUyBuO5xVH .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tUyBuO5xVH .carousel-control-next span {
  margin-left: 5px;
}
.cid-tUyBuO5xVH .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tUyBuO5xVH .close::before {
  content: '\e91a';
}
.cid-tUyBuO5xVH .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tUyBuO5xVH .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tUyBuO5xVH .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUyBuO5xVH .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tUyBuO5xVH .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tUyBuO5xVH .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tUyBuO5xVH .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tUyBuO5xVH .carousel-indicators li.active,
.cid-tUyBuO5xVH .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tUyBuO5xVH .carousel-indicators li::after,
.cid-tUyBuO5xVH .carousel-indicators li::before {
  content: none;
}
.cid-tUyBuO5xVH .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tUyBuO5xVH .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tUyBuO5xVH .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tUyBuO5xVH .carousel-indicators {
    display: none;
  }
}
.cid-tUyBuO5xVH .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tUyBuO5xVH .carousel-inner > .active {
  display: block;
}
.cid-tUyBuO5xVH .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tUyBuO5xVH .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tUyBuO5xVH .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tUyBuO5xVH .carousel-control,
  .cid-tUyBuO5xVH .carousel-indicators,
  .cid-tUyBuO5xVH .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tUyBuO5xVH .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tUyBuO5xVH .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tUyBuO5xVH .carousel-indicators .active,
.cid-tUyBuO5xVH .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tUyBuO5xVH .carousel-indicators .active {
  background: #fff;
}
.cid-tUyBuO5xVH .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tUyBuO5xVH .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tUyBuO5xVH .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tUyBuO5xVH .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tUyBuO5xVH .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tUyBuO5xVH .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tUyBuO5xVH .carousel {
  width: 100%;
}
.cid-tUyBuO5xVH .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tUyBuO5xVH .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tUyBuO5xVH .modal.fade .modal-dialog,
.cid-tUyBuO5xVH .modal.in .modal-dialog {
  transform: none;
}
.cid-tUyBuO5xVH .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tUyBuO5xVH H6 {
  text-align: center;
  color: #ffffff;
}
.cid-tUyBuO5xVH H3 {
  color: #c5ac73;
}
.cid-tUyBuO5xVH H4 {
  color: #ffffff;
}
.cid-tUyDRkWmdF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-tUyDRkWmdF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUyDRkWmdF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUyDRkWmdF .video-wrapper iframe {
  width: 100%;
}
.cid-tUyDRkWmdF .mbr-section-title,
.cid-tUyDRkWmdF .mbr-section-subtitle,
.cid-tUyDRkWmdF .mbr-text {
  text-align: center;
}
.cid-tUyDRkWmdF .mbr-section-title {
  color: #c5ac73;
}
.cid-tUyDRkWmdF .mbr-text {
  color: #ffffff;
}
.cid-tUyBuPqPnc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tWgnYy00rd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWgnYy00rd nav.navbar {
  position: fixed;
}
.cid-tWgnYy00rd .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-tWgnYy00rd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWgnYy00rd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWgnYy00rd .dropdown-item:hover,
.cid-tWgnYy00rd .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tWgnYy00rd .dropdown-item:hover span {
  color: white;
}
.cid-tWgnYy00rd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWgnYy00rd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWgnYy00rd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWgnYy00rd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWgnYy00rd .nav-link {
  position: relative;
}
.cid-tWgnYy00rd .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWgnYy00rd .container {
    flex-wrap: wrap;
  }
}
.cid-tWgnYy00rd .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWgnYy00rd .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tWgnYy00rd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWgnYy00rd .dropdown-menu,
.cid-tWgnYy00rd .navbar.opened {
  background: #000000 !important;
}
.cid-tWgnYy00rd .nav-item:focus,
.cid-tWgnYy00rd .nav-link:focus {
  outline: none;
}
.cid-tWgnYy00rd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWgnYy00rd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWgnYy00rd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWgnYy00rd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWgnYy00rd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWgnYy00rd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWgnYy00rd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tWgnYy00rd .navbar.opened {
  transition: all 0.3s;
}
.cid-tWgnYy00rd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWgnYy00rd .navbar .navbar-logo img {
  width: auto;
}
.cid-tWgnYy00rd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWgnYy00rd .navbar.collapsed {
  justify-content: center;
}
.cid-tWgnYy00rd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWgnYy00rd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWgnYy00rd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tWgnYy00rd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWgnYy00rd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWgnYy00rd .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-tWgnYy00rd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWgnYy00rd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWgnYy00rd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWgnYy00rd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWgnYy00rd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWgnYy00rd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWgnYy00rd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWgnYy00rd .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-tWgnYy00rd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWgnYy00rd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWgnYy00rd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWgnYy00rd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWgnYy00rd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWgnYy00rd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWgnYy00rd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWgnYy00rd .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWgnYy00rd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWgnYy00rd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWgnYy00rd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWgnYy00rd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWgnYy00rd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWgnYy00rd .dropdown-item.active,
.cid-tWgnYy00rd .dropdown-item:active {
  background-color: transparent;
}
.cid-tWgnYy00rd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWgnYy00rd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWgnYy00rd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWgnYy00rd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tWgnYy00rd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWgnYy00rd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWgnYy00rd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWgnYy00rd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWgnYy00rd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWgnYy00rd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWgnYy00rd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWgnYy00rd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWgnYy00rd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWgnYy00rd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWgnYy00rd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWgnYy00rd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWgnYy00rd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWgnYy00rd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWgnYy00rd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWgnYy00rd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWgnYy00rd .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-tWgnYy00rd .navbar {
    height: 70px;
  }
  .cid-tWgnYy00rd .navbar.opened {
    height: auto;
  }
  .cid-tWgnYy00rd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vasEVcxE2a {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-vasEVcxE2a .mbr-fallback-image.disabled {
  display: none;
}
.cid-vasEVcxE2a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vasEVcxE2a .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-vasEVcxE2a .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vasEVcxE2a .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vasEVcxE2a .mbr-section-title {
  color: #c5ac73;
  text-align: left;
}
.cid-vasEVcxE2a .mbr-text,
.cid-vasEVcxE2a .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uJhRyS2S4V {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-uJhRyS2S4V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJhRyS2S4V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJhRyS2S4V .video-wrapper iframe {
  width: 100%;
}
.cid-uJhRyS2S4V .mbr-section-title,
.cid-uJhRyS2S4V .mbr-section-subtitle,
.cid-uJhRyS2S4V .mbr-text {
  text-align: center;
}
.cid-uJhRyS2S4V .mbr-section-title {
  color: #c5ac73;
}
.cid-uFjIwD4cQA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-uFjIwD4cQA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFjIwD4cQA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFjIwD4cQA .item {
  padding-bottom: 2rem;
}
.cid-uFjIwD4cQA .item-wrapper {
  position: relative;
}
.cid-uFjIwD4cQA .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uFjIwD4cQA .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uFjIwD4cQA .carousel-control,
.cid-uFjIwD4cQA .close {
  background: #1b1b1b;
}
.cid-uFjIwD4cQA .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uFjIwD4cQA .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uFjIwD4cQA .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uFjIwD4cQA .carousel-control-next span {
  margin-left: 5px;
}
.cid-uFjIwD4cQA .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uFjIwD4cQA .close::before {
  content: '\e91a';
}
.cid-uFjIwD4cQA .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uFjIwD4cQA .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uFjIwD4cQA .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uFjIwD4cQA .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uFjIwD4cQA .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uFjIwD4cQA .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uFjIwD4cQA .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uFjIwD4cQA .carousel-indicators li.active,
.cid-uFjIwD4cQA .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uFjIwD4cQA .carousel-indicators li::after,
.cid-uFjIwD4cQA .carousel-indicators li::before {
  content: none;
}
.cid-uFjIwD4cQA .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uFjIwD4cQA .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uFjIwD4cQA .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uFjIwD4cQA .carousel-indicators {
    display: none;
  }
}
.cid-uFjIwD4cQA .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uFjIwD4cQA .carousel-inner > .active {
  display: block;
}
.cid-uFjIwD4cQA .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uFjIwD4cQA .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uFjIwD4cQA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uFjIwD4cQA .carousel-control,
  .cid-uFjIwD4cQA .carousel-indicators,
  .cid-uFjIwD4cQA .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uFjIwD4cQA .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uFjIwD4cQA .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uFjIwD4cQA .carousel-indicators .active,
.cid-uFjIwD4cQA .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uFjIwD4cQA .carousel-indicators .active {
  background: #fff;
}
.cid-uFjIwD4cQA .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uFjIwD4cQA .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uFjIwD4cQA .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uFjIwD4cQA .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uFjIwD4cQA .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uFjIwD4cQA .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uFjIwD4cQA .carousel {
  width: 100%;
}
.cid-uFjIwD4cQA .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uFjIwD4cQA .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uFjIwD4cQA .modal.fade .modal-dialog,
.cid-uFjIwD4cQA .modal.in .modal-dialog {
  transform: none;
}
.cid-uFjIwD4cQA .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uFjIwD4cQA H6 {
  text-align: center;
}
.cid-uFjIwD4cQA H3 {
  color: #c5ac73;
}
.cid-uFjIwD4cQA H4 {
  color: #ffffff;
}
.cid-uBhSFHn2Y4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-uBhSFHn2Y4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBhSFHn2Y4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBhSFHn2Y4 .video-wrapper iframe {
  width: 100%;
}
.cid-uBhSFHn2Y4 .mbr-section-title,
.cid-uBhSFHn2Y4 .mbr-section-subtitle,
.cid-uBhSFHn2Y4 .mbr-text {
  text-align: center;
}
.cid-uBhSFHn2Y4 .mbr-section-title {
  color: #c5ac73;
}
.cid-uBhSMfNGzY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-uBhSMfNGzY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBhSMfNGzY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBhSMfNGzY .item {
  padding-bottom: 2rem;
}
.cid-uBhSMfNGzY .item-wrapper {
  position: relative;
}
.cid-uBhSMfNGzY .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uBhSMfNGzY .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uBhSMfNGzY .carousel-control,
.cid-uBhSMfNGzY .close {
  background: #1b1b1b;
}
.cid-uBhSMfNGzY .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uBhSMfNGzY .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uBhSMfNGzY .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uBhSMfNGzY .carousel-control-next span {
  margin-left: 5px;
}
.cid-uBhSMfNGzY .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uBhSMfNGzY .close::before {
  content: '\e91a';
}
.cid-uBhSMfNGzY .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uBhSMfNGzY .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uBhSMfNGzY .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBhSMfNGzY .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBhSMfNGzY .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBhSMfNGzY .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uBhSMfNGzY .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uBhSMfNGzY .carousel-indicators li.active,
.cid-uBhSMfNGzY .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBhSMfNGzY .carousel-indicators li::after,
.cid-uBhSMfNGzY .carousel-indicators li::before {
  content: none;
}
.cid-uBhSMfNGzY .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBhSMfNGzY .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uBhSMfNGzY .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uBhSMfNGzY .carousel-indicators {
    display: none;
  }
}
.cid-uBhSMfNGzY .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBhSMfNGzY .carousel-inner > .active {
  display: block;
}
.cid-uBhSMfNGzY .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBhSMfNGzY .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uBhSMfNGzY .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uBhSMfNGzY .carousel-control,
  .cid-uBhSMfNGzY .carousel-indicators,
  .cid-uBhSMfNGzY .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uBhSMfNGzY .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uBhSMfNGzY .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uBhSMfNGzY .carousel-indicators .active,
.cid-uBhSMfNGzY .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uBhSMfNGzY .carousel-indicators .active {
  background: #fff;
}
.cid-uBhSMfNGzY .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uBhSMfNGzY .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uBhSMfNGzY .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uBhSMfNGzY .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uBhSMfNGzY .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uBhSMfNGzY .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uBhSMfNGzY .carousel {
  width: 100%;
}
.cid-uBhSMfNGzY .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uBhSMfNGzY .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uBhSMfNGzY .modal.fade .modal-dialog,
.cid-uBhSMfNGzY .modal.in .modal-dialog {
  transform: none;
}
.cid-uBhSMfNGzY .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uBhSMfNGzY H6 {
  text-align: center;
}
.cid-uBhSMfNGzY H3 {
  color: #c5ac73;
}
.cid-u6rBevCTvh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-u6rBevCTvh .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6rBevCTvh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6rBevCTvh .item {
  padding-bottom: 2rem;
}
.cid-u6rBevCTvh .item-wrapper {
  position: relative;
}
.cid-u6rBevCTvh .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-u6rBevCTvh .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u6rBevCTvh .carousel-control,
.cid-u6rBevCTvh .close {
  background: #1b1b1b;
}
.cid-u6rBevCTvh .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u6rBevCTvh .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u6rBevCTvh .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u6rBevCTvh .carousel-control-next span {
  margin-left: 5px;
}
.cid-u6rBevCTvh .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u6rBevCTvh .close::before {
  content: '\e91a';
}
.cid-u6rBevCTvh .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u6rBevCTvh .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u6rBevCTvh .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u6rBevCTvh .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u6rBevCTvh .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u6rBevCTvh .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u6rBevCTvh .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u6rBevCTvh .carousel-indicators li.active,
.cid-u6rBevCTvh .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u6rBevCTvh .carousel-indicators li::after,
.cid-u6rBevCTvh .carousel-indicators li::before {
  content: none;
}
.cid-u6rBevCTvh .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u6rBevCTvh .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u6rBevCTvh .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u6rBevCTvh .carousel-indicators {
    display: none;
  }
}
.cid-u6rBevCTvh .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u6rBevCTvh .carousel-inner > .active {
  display: block;
}
.cid-u6rBevCTvh .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u6rBevCTvh .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u6rBevCTvh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u6rBevCTvh .carousel-control,
  .cid-u6rBevCTvh .carousel-indicators,
  .cid-u6rBevCTvh .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u6rBevCTvh .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u6rBevCTvh .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u6rBevCTvh .carousel-indicators .active,
.cid-u6rBevCTvh .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u6rBevCTvh .carousel-indicators .active {
  background: #fff;
}
.cid-u6rBevCTvh .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u6rBevCTvh .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u6rBevCTvh .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u6rBevCTvh .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u6rBevCTvh .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u6rBevCTvh .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u6rBevCTvh .carousel {
  width: 100%;
}
.cid-u6rBevCTvh .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u6rBevCTvh .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u6rBevCTvh .modal.fade .modal-dialog,
.cid-u6rBevCTvh .modal.in .modal-dialog {
  transform: none;
}
.cid-u6rBevCTvh .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u6rBevCTvh H6 {
  text-align: center;
}
.cid-u6rBevCTvh H3 {
  color: #c5ac73;
}
.cid-u6rBevCTvh H4 {
  color: #ffffff;
}
.cid-u4Iy5XOT24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-u4Iy5XOT24 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4Iy5XOT24 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4Iy5XOT24 .video-wrapper iframe {
  width: 100%;
}
.cid-u4Iy5XOT24 .mbr-section-title,
.cid-u4Iy5XOT24 .mbr-section-subtitle,
.cid-u4Iy5XOT24 .mbr-text {
  text-align: center;
}
.cid-u4IyCZSXee {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-u4IyCZSXee .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4IyCZSXee .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4IyCZSXee .item {
  padding-bottom: 2rem;
}
.cid-u4IyCZSXee .item-wrapper {
  position: relative;
}
.cid-u4IyCZSXee .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-u4IyCZSXee .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u4IyCZSXee .carousel-control,
.cid-u4IyCZSXee .close {
  background: #1b1b1b;
}
.cid-u4IyCZSXee .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u4IyCZSXee .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u4IyCZSXee .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u4IyCZSXee .carousel-control-next span {
  margin-left: 5px;
}
.cid-u4IyCZSXee .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u4IyCZSXee .close::before {
  content: '\e91a';
}
.cid-u4IyCZSXee .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u4IyCZSXee .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u4IyCZSXee .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u4IyCZSXee .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u4IyCZSXee .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u4IyCZSXee .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u4IyCZSXee .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u4IyCZSXee .carousel-indicators li.active,
.cid-u4IyCZSXee .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u4IyCZSXee .carousel-indicators li::after,
.cid-u4IyCZSXee .carousel-indicators li::before {
  content: none;
}
.cid-u4IyCZSXee .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u4IyCZSXee .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u4IyCZSXee .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u4IyCZSXee .carousel-indicators {
    display: none;
  }
}
.cid-u4IyCZSXee .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u4IyCZSXee .carousel-inner > .active {
  display: block;
}
.cid-u4IyCZSXee .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u4IyCZSXee .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u4IyCZSXee .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u4IyCZSXee .carousel-control,
  .cid-u4IyCZSXee .carousel-indicators,
  .cid-u4IyCZSXee .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u4IyCZSXee .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u4IyCZSXee .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u4IyCZSXee .carousel-indicators .active,
.cid-u4IyCZSXee .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u4IyCZSXee .carousel-indicators .active {
  background: #fff;
}
.cid-u4IyCZSXee .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u4IyCZSXee .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u4IyCZSXee .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u4IyCZSXee .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u4IyCZSXee .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u4IyCZSXee .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u4IyCZSXee .carousel {
  width: 100%;
}
.cid-u4IyCZSXee .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u4IyCZSXee .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u4IyCZSXee .modal.fade .modal-dialog,
.cid-u4IyCZSXee .modal.in .modal-dialog {
  transform: none;
}
.cid-u4IyCZSXee .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u4IyCZSXee H6 {
  text-align: center;
}
.cid-u4IyCZSXee H3 {
  color: #c5ac73;
}
.cid-u2nbRqVDNC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-u2nbRqVDNC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2nbRqVDNC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2nbRqVDNC .video-wrapper iframe {
  width: 100%;
}
.cid-u2nbRqVDNC .mbr-section-title,
.cid-u2nbRqVDNC .mbr-section-subtitle,
.cid-u2nbRqVDNC .mbr-text {
  text-align: center;
}
.cid-u2nbRqVDNC .mbr-section-title {
  color: #c5ac73;
}
.cid-u0LWhxhw5H {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-u0LWhxhw5H .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0LWhxhw5H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0LWhxhw5H .video-wrapper iframe {
  width: 100%;
}
.cid-u0LWhxhw5H .mbr-section-title,
.cid-u0LWhxhw5H .mbr-section-subtitle,
.cid-u0LWhxhw5H .mbr-text {
  text-align: center;
}
.cid-u0LWhxhw5H .mbr-section-title {
  color: #c5ac73;
}
.cid-tWgnYxK3cv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-ug2bM3bRte {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ug2bM3bRte nav.navbar {
  position: fixed;
}
.cid-ug2bM3bRte .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-ug2bM3bRte .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ug2bM3bRte .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ug2bM3bRte .dropdown-item:hover,
.cid-ug2bM3bRte .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-ug2bM3bRte .dropdown-item:hover span {
  color: white;
}
.cid-ug2bM3bRte .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ug2bM3bRte .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ug2bM3bRte .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ug2bM3bRte .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ug2bM3bRte .nav-link {
  position: relative;
}
.cid-ug2bM3bRte .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ug2bM3bRte .container {
    flex-wrap: wrap;
  }
}
.cid-ug2bM3bRte .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ug2bM3bRte .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ug2bM3bRte .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ug2bM3bRte .dropdown-menu,
.cid-ug2bM3bRte .navbar.opened {
  background: #000000 !important;
}
.cid-ug2bM3bRte .nav-item:focus,
.cid-ug2bM3bRte .nav-link:focus {
  outline: none;
}
.cid-ug2bM3bRte .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ug2bM3bRte .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ug2bM3bRte .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ug2bM3bRte .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ug2bM3bRte .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ug2bM3bRte .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ug2bM3bRte .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-ug2bM3bRte .navbar.opened {
  transition: all 0.3s;
}
.cid-ug2bM3bRte .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ug2bM3bRte .navbar .navbar-logo img {
  width: auto;
}
.cid-ug2bM3bRte .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ug2bM3bRte .navbar.collapsed {
  justify-content: center;
}
.cid-ug2bM3bRte .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ug2bM3bRte .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ug2bM3bRte .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ug2bM3bRte .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ug2bM3bRte .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ug2bM3bRte .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-ug2bM3bRte .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ug2bM3bRte .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ug2bM3bRte .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ug2bM3bRte .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ug2bM3bRte .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ug2bM3bRte .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ug2bM3bRte .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ug2bM3bRte .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-ug2bM3bRte .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ug2bM3bRte .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ug2bM3bRte .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ug2bM3bRte .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ug2bM3bRte .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ug2bM3bRte .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ug2bM3bRte .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ug2bM3bRte .navbar.navbar-short {
  min-height: 60px;
}
.cid-ug2bM3bRte .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ug2bM3bRte .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ug2bM3bRte .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ug2bM3bRte .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ug2bM3bRte .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ug2bM3bRte .dropdown-item.active,
.cid-ug2bM3bRte .dropdown-item:active {
  background-color: transparent;
}
.cid-ug2bM3bRte .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ug2bM3bRte .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ug2bM3bRte .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ug2bM3bRte .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ug2bM3bRte .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ug2bM3bRte .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ug2bM3bRte ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ug2bM3bRte .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ug2bM3bRte button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ug2bM3bRte button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ug2bM3bRte button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ug2bM3bRte button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ug2bM3bRte button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ug2bM3bRte button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ug2bM3bRte nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ug2bM3bRte nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ug2bM3bRte nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ug2bM3bRte nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ug2bM3bRte .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ug2bM3bRte a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ug2bM3bRte .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-ug2bM3bRte .navbar {
    height: 70px;
  }
  .cid-ug2bM3bRte .navbar.opened {
    height: auto;
  }
  .cid-ug2bM3bRte .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ug2bLYvfTj {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-ug2bLYvfTj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug2bLYvfTj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ug2bLYvfTj .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ug2bLYvfTj .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ug2bLYvfTj .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ug2bLYvfTj .mbr-section-title {
  color: #c5ac73;
  text-align: left;
}
.cid-ug2bLYvfTj .mbr-text,
.cid-ug2bLYvfTj .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-ug2bM21bdL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-ug2bM21bdL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug2bM21bdL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ug2bM21bdL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ug2bM21bdL .row {
  flex-direction: row-reverse;
}
.cid-ug2bM21bdL img {
  width: 100%;
}
.cid-ug2bM2huEc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-ug2bM2huEc .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug2bM2huEc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ug2bM2huEc .item {
  padding-bottom: 2rem;
}
.cid-ug2bM2huEc .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-ug2bM2huEc .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-ug2bM2huEc .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-ug2bM2huEc .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-ug2bM2huEc .carousel-control,
.cid-ug2bM2huEc .close {
  background: #1b1b1b;
}
.cid-ug2bM2huEc .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ug2bM2huEc .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ug2bM2huEc .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ug2bM2huEc .carousel-control-next span {
  margin-left: 5px;
}
.cid-ug2bM2huEc .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-ug2bM2huEc .close::before {
  content: '\e91a';
}
.cid-ug2bM2huEc .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ug2bM2huEc .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-ug2bM2huEc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ug2bM2huEc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ug2bM2huEc .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ug2bM2huEc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ug2bM2huEc .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-ug2bM2huEc .carousel-indicators li.active,
.cid-ug2bM2huEc .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ug2bM2huEc .carousel-indicators li::after,
.cid-ug2bM2huEc .carousel-indicators li::before {
  content: none;
}
.cid-ug2bM2huEc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ug2bM2huEc .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ug2bM2huEc .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ug2bM2huEc .carousel-indicators {
    display: none;
  }
}
.cid-ug2bM2huEc .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ug2bM2huEc .carousel-inner > .active {
  display: block;
}
.cid-ug2bM2huEc .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ug2bM2huEc .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ug2bM2huEc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ug2bM2huEc .carousel-control,
  .cid-ug2bM2huEc .carousel-indicators,
  .cid-ug2bM2huEc .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ug2bM2huEc .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ug2bM2huEc .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ug2bM2huEc .carousel-indicators .active,
.cid-ug2bM2huEc .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ug2bM2huEc .carousel-indicators .active {
  background: #fff;
}
.cid-ug2bM2huEc .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ug2bM2huEc .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ug2bM2huEc .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ug2bM2huEc .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ug2bM2huEc .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ug2bM2huEc .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ug2bM2huEc .carousel {
  width: 100%;
}
.cid-ug2bM2huEc .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ug2bM2huEc .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ug2bM2huEc .modal.fade .modal-dialog,
.cid-ug2bM2huEc .modal.in .modal-dialog {
  transform: none;
}
.cid-ug2bM2huEc .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ug2bM2huEc H6 {
  text-align: center;
}
.cid-ug2bM2huEc H3 {
  color: #c5ac73;
}
.cid-ug2bM2Idn8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-ug2dTVC8Td {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ug2dTVC8Td nav.navbar {
  position: fixed;
}
.cid-ug2dTVC8Td .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-ug2dTVC8Td .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ug2dTVC8Td .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ug2dTVC8Td .dropdown-item:hover,
.cid-ug2dTVC8Td .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-ug2dTVC8Td .dropdown-item:hover span {
  color: white;
}
.cid-ug2dTVC8Td .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ug2dTVC8Td .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ug2dTVC8Td .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ug2dTVC8Td .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ug2dTVC8Td .nav-link {
  position: relative;
}
.cid-ug2dTVC8Td .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ug2dTVC8Td .container {
    flex-wrap: wrap;
  }
}
.cid-ug2dTVC8Td .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ug2dTVC8Td .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ug2dTVC8Td .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ug2dTVC8Td .dropdown-menu,
.cid-ug2dTVC8Td .navbar.opened {
  background: #000000 !important;
}
.cid-ug2dTVC8Td .nav-item:focus,
.cid-ug2dTVC8Td .nav-link:focus {
  outline: none;
}
.cid-ug2dTVC8Td .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ug2dTVC8Td .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ug2dTVC8Td .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ug2dTVC8Td .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ug2dTVC8Td .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ug2dTVC8Td .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ug2dTVC8Td .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-ug2dTVC8Td .navbar.opened {
  transition: all 0.3s;
}
.cid-ug2dTVC8Td .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ug2dTVC8Td .navbar .navbar-logo img {
  width: auto;
}
.cid-ug2dTVC8Td .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ug2dTVC8Td .navbar.collapsed {
  justify-content: center;
}
.cid-ug2dTVC8Td .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ug2dTVC8Td .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ug2dTVC8Td .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ug2dTVC8Td .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ug2dTVC8Td .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ug2dTVC8Td .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-ug2dTVC8Td .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ug2dTVC8Td .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ug2dTVC8Td .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ug2dTVC8Td .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ug2dTVC8Td .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ug2dTVC8Td .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ug2dTVC8Td .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ug2dTVC8Td .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-ug2dTVC8Td .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ug2dTVC8Td .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ug2dTVC8Td .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ug2dTVC8Td .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ug2dTVC8Td .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ug2dTVC8Td .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ug2dTVC8Td .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ug2dTVC8Td .navbar.navbar-short {
  min-height: 60px;
}
.cid-ug2dTVC8Td .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ug2dTVC8Td .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ug2dTVC8Td .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ug2dTVC8Td .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ug2dTVC8Td .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ug2dTVC8Td .dropdown-item.active,
.cid-ug2dTVC8Td .dropdown-item:active {
  background-color: transparent;
}
.cid-ug2dTVC8Td .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ug2dTVC8Td .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ug2dTVC8Td .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ug2dTVC8Td .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ug2dTVC8Td .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ug2dTVC8Td .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ug2dTVC8Td ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ug2dTVC8Td .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ug2dTVC8Td button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ug2dTVC8Td button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ug2dTVC8Td button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ug2dTVC8Td button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ug2dTVC8Td button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ug2dTVC8Td button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ug2dTVC8Td nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ug2dTVC8Td nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ug2dTVC8Td nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ug2dTVC8Td nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ug2dTVC8Td .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ug2dTVC8Td a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ug2dTVC8Td .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-ug2dTVC8Td .navbar {
    height: 70px;
  }
  .cid-ug2dTVC8Td .navbar.opened {
    height: auto;
  }
  .cid-ug2dTVC8Td .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ug2dTTV8Jf {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-ug2dTTV8Jf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug2dTTV8Jf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ug2dTTV8Jf .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ug2dTTV8Jf .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ug2dTTV8Jf .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ug2dTTV8Jf .mbr-section-title {
  color: #c5ac73;
  text-align: left;
}
.cid-ug2dTTV8Jf .mbr-text,
.cid-ug2dTTV8Jf .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-ug2dTUyCSD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-ug2dTUyCSD .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug2dTUyCSD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ug2dTUyCSD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ug2dTUyCSD .row {
  flex-direction: row-reverse;
}
.cid-ug2dTUyCSD img {
  width: 100%;
}
.cid-ug2eAEbZrl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-ug2eAEbZrl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug2eAEbZrl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ug2eAEbZrl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ug2eAEbZrl .row {
  flex-direction: row-reverse;
}
.cid-ug2eAEbZrl img {
  width: 100%;
}
.cid-ug2dTUNca0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-ug2dTUNca0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug2dTUNca0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ug2dTUNca0 .item {
  padding-bottom: 2rem;
}
.cid-ug2dTUNca0 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-ug2dTUNca0 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-ug2dTUNca0 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-ug2dTUNca0 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-ug2dTUNca0 .carousel-control,
.cid-ug2dTUNca0 .close {
  background: #1b1b1b;
}
.cid-ug2dTUNca0 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ug2dTUNca0 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ug2dTUNca0 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ug2dTUNca0 .carousel-control-next span {
  margin-left: 5px;
}
.cid-ug2dTUNca0 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-ug2dTUNca0 .close::before {
  content: '\e91a';
}
.cid-ug2dTUNca0 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ug2dTUNca0 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-ug2dTUNca0 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ug2dTUNca0 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ug2dTUNca0 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ug2dTUNca0 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ug2dTUNca0 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-ug2dTUNca0 .carousel-indicators li.active,
.cid-ug2dTUNca0 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ug2dTUNca0 .carousel-indicators li::after,
.cid-ug2dTUNca0 .carousel-indicators li::before {
  content: none;
}
.cid-ug2dTUNca0 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ug2dTUNca0 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ug2dTUNca0 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ug2dTUNca0 .carousel-indicators {
    display: none;
  }
}
.cid-ug2dTUNca0 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ug2dTUNca0 .carousel-inner > .active {
  display: block;
}
.cid-ug2dTUNca0 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ug2dTUNca0 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ug2dTUNca0 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ug2dTUNca0 .carousel-control,
  .cid-ug2dTUNca0 .carousel-indicators,
  .cid-ug2dTUNca0 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ug2dTUNca0 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ug2dTUNca0 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ug2dTUNca0 .carousel-indicators .active,
.cid-ug2dTUNca0 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ug2dTUNca0 .carousel-indicators .active {
  background: #fff;
}
.cid-ug2dTUNca0 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ug2dTUNca0 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ug2dTUNca0 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ug2dTUNca0 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ug2dTUNca0 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ug2dTUNca0 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ug2dTUNca0 .carousel {
  width: 100%;
}
.cid-ug2dTUNca0 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ug2dTUNca0 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ug2dTUNca0 .modal.fade .modal-dialog,
.cid-ug2dTUNca0 .modal.in .modal-dialog {
  transform: none;
}
.cid-ug2dTUNca0 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ug2dTUNca0 H6 {
  text-align: center;
}
.cid-ug2dTUNca0 H3 {
  color: #c5ac73;
}
.cid-ug2dTV93PI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uu0k3rccoI {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uu0k3rccoI nav.navbar {
  position: fixed;
}
.cid-uu0k3rccoI .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-uu0k3rccoI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uu0k3rccoI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uu0k3rccoI .dropdown-item:hover,
.cid-uu0k3rccoI .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uu0k3rccoI .dropdown-item:hover span {
  color: white;
}
.cid-uu0k3rccoI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uu0k3rccoI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uu0k3rccoI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uu0k3rccoI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uu0k3rccoI .nav-link {
  position: relative;
}
.cid-uu0k3rccoI .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uu0k3rccoI .container {
    flex-wrap: wrap;
  }
}
.cid-uu0k3rccoI .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uu0k3rccoI .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uu0k3rccoI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uu0k3rccoI .dropdown-menu,
.cid-uu0k3rccoI .navbar.opened {
  background: #000000 !important;
}
.cid-uu0k3rccoI .nav-item:focus,
.cid-uu0k3rccoI .nav-link:focus {
  outline: none;
}
.cid-uu0k3rccoI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uu0k3rccoI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uu0k3rccoI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uu0k3rccoI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uu0k3rccoI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uu0k3rccoI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uu0k3rccoI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uu0k3rccoI .navbar.opened {
  transition: all 0.3s;
}
.cid-uu0k3rccoI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uu0k3rccoI .navbar .navbar-logo img {
  width: auto;
}
.cid-uu0k3rccoI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uu0k3rccoI .navbar.collapsed {
  justify-content: center;
}
.cid-uu0k3rccoI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uu0k3rccoI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uu0k3rccoI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uu0k3rccoI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uu0k3rccoI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uu0k3rccoI .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-uu0k3rccoI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uu0k3rccoI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uu0k3rccoI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uu0k3rccoI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uu0k3rccoI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uu0k3rccoI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uu0k3rccoI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uu0k3rccoI .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-uu0k3rccoI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uu0k3rccoI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uu0k3rccoI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uu0k3rccoI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uu0k3rccoI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uu0k3rccoI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uu0k3rccoI .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uu0k3rccoI .navbar.navbar-short {
  min-height: 60px;
}
.cid-uu0k3rccoI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uu0k3rccoI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uu0k3rccoI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uu0k3rccoI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uu0k3rccoI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uu0k3rccoI .dropdown-item.active,
.cid-uu0k3rccoI .dropdown-item:active {
  background-color: transparent;
}
.cid-uu0k3rccoI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uu0k3rccoI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uu0k3rccoI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uu0k3rccoI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uu0k3rccoI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uu0k3rccoI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uu0k3rccoI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uu0k3rccoI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uu0k3rccoI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uu0k3rccoI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uu0k3rccoI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uu0k3rccoI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uu0k3rccoI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uu0k3rccoI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uu0k3rccoI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uu0k3rccoI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uu0k3rccoI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uu0k3rccoI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uu0k3rccoI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uu0k3rccoI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uu0k3rccoI .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-uu0k3rccoI .navbar {
    height: 70px;
  }
  .cid-uu0k3rccoI .navbar.opened {
    height: auto;
  }
  .cid-uu0k3rccoI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uu0k3qf00l {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-uu0k3qf00l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uu0k3qf00l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uu0k3qf00l .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uu0k3qf00l .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uu0k3qf00l .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uu0k3qf00l .mbr-section-title {
  color: #c5ac73;
  text-align: left;
}
.cid-uu0k3qf00l .mbr-text,
.cid-uu0k3qf00l .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uu0k3qvlTS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-uu0k3qvlTS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uu0k3qvlTS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uu0k3qvlTS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uu0k3qvlTS .row {
  flex-direction: row-reverse;
}
.cid-uu0k3qvlTS img {
  width: 100%;
}
.cid-uu0k3r0PQ6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uOWSHqL1OP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uOWSHqL1OP nav.navbar {
  position: fixed;
}
.cid-uOWSHqL1OP .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-uOWSHqL1OP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOWSHqL1OP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOWSHqL1OP .dropdown-item:hover,
.cid-uOWSHqL1OP .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uOWSHqL1OP .dropdown-item:hover span {
  color: white;
}
.cid-uOWSHqL1OP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOWSHqL1OP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOWSHqL1OP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uOWSHqL1OP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOWSHqL1OP .nav-link {
  position: relative;
}
.cid-uOWSHqL1OP .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uOWSHqL1OP .container {
    flex-wrap: wrap;
  }
}
.cid-uOWSHqL1OP .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uOWSHqL1OP .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uOWSHqL1OP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOWSHqL1OP .dropdown-menu,
.cid-uOWSHqL1OP .navbar.opened {
  background: #000000 !important;
}
.cid-uOWSHqL1OP .nav-item:focus,
.cid-uOWSHqL1OP .nav-link:focus {
  outline: none;
}
.cid-uOWSHqL1OP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOWSHqL1OP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOWSHqL1OP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOWSHqL1OP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOWSHqL1OP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOWSHqL1OP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOWSHqL1OP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uOWSHqL1OP .navbar.opened {
  transition: all 0.3s;
}
.cid-uOWSHqL1OP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOWSHqL1OP .navbar .navbar-logo img {
  width: auto;
}
.cid-uOWSHqL1OP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOWSHqL1OP .navbar.collapsed {
  justify-content: center;
}
.cid-uOWSHqL1OP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOWSHqL1OP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOWSHqL1OP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uOWSHqL1OP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOWSHqL1OP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOWSHqL1OP .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-uOWSHqL1OP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOWSHqL1OP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOWSHqL1OP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOWSHqL1OP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOWSHqL1OP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOWSHqL1OP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOWSHqL1OP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOWSHqL1OP .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-uOWSHqL1OP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOWSHqL1OP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOWSHqL1OP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOWSHqL1OP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOWSHqL1OP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOWSHqL1OP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uOWSHqL1OP .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uOWSHqL1OP .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOWSHqL1OP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOWSHqL1OP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOWSHqL1OP .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOWSHqL1OP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOWSHqL1OP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOWSHqL1OP .dropdown-item.active,
.cid-uOWSHqL1OP .dropdown-item:active {
  background-color: transparent;
}
.cid-uOWSHqL1OP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOWSHqL1OP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOWSHqL1OP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOWSHqL1OP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uOWSHqL1OP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOWSHqL1OP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOWSHqL1OP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOWSHqL1OP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOWSHqL1OP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOWSHqL1OP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uOWSHqL1OP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOWSHqL1OP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOWSHqL1OP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOWSHqL1OP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOWSHqL1OP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOWSHqL1OP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOWSHqL1OP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOWSHqL1OP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOWSHqL1OP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOWSHqL1OP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOWSHqL1OP .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-uOWSHqL1OP .navbar {
    height: 70px;
  }
  .cid-uOWSHqL1OP .navbar.opened {
    height: auto;
  }
  .cid-uOWSHqL1OP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOWSHresfp {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-uOWSHresfp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOWSHresfp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOWSHresfp .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uOWSHresfp .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uOWSHresfp .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uOWSHresfp .mbr-section-title {
  color: #c5ac73;
  text-align: left;
}
.cid-uOWSHresfp .mbr-text,
.cid-uOWSHresfp .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uOWSHrzHKC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-uOWSHrzHKC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOWSHrzHKC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uOWSHrzHKC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uOWSHrzHKC .row {
  flex-direction: row-reverse;
}
.cid-uOWSHrzHKC img {
  width: 100%;
}
.cid-uOWSHsgXZD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-uOWSHsgXZD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOWSHsgXZD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOWSHsgXZD .item {
  padding-bottom: 2rem;
}
.cid-uOWSHsgXZD .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uOWSHsgXZD .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uOWSHsgXZD .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uOWSHsgXZD .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uOWSHsgXZD .carousel-control,
.cid-uOWSHsgXZD .close {
  background: #1b1b1b;
}
.cid-uOWSHsgXZD .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uOWSHsgXZD .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uOWSHsgXZD .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uOWSHsgXZD .carousel-control-next span {
  margin-left: 5px;
}
.cid-uOWSHsgXZD .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uOWSHsgXZD .close::before {
  content: '\e91a';
}
.cid-uOWSHsgXZD .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uOWSHsgXZD .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uOWSHsgXZD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOWSHsgXZD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uOWSHsgXZD .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uOWSHsgXZD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uOWSHsgXZD .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uOWSHsgXZD .carousel-indicators li.active,
.cid-uOWSHsgXZD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uOWSHsgXZD .carousel-indicators li::after,
.cid-uOWSHsgXZD .carousel-indicators li::before {
  content: none;
}
.cid-uOWSHsgXZD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uOWSHsgXZD .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uOWSHsgXZD .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uOWSHsgXZD .carousel-indicators {
    display: none;
  }
}
.cid-uOWSHsgXZD .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uOWSHsgXZD .carousel-inner > .active {
  display: block;
}
.cid-uOWSHsgXZD .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOWSHsgXZD .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uOWSHsgXZD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uOWSHsgXZD .carousel-control,
  .cid-uOWSHsgXZD .carousel-indicators,
  .cid-uOWSHsgXZD .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uOWSHsgXZD .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uOWSHsgXZD .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uOWSHsgXZD .carousel-indicators .active,
.cid-uOWSHsgXZD .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uOWSHsgXZD .carousel-indicators .active {
  background: #fff;
}
.cid-uOWSHsgXZD .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uOWSHsgXZD .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uOWSHsgXZD .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uOWSHsgXZD .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uOWSHsgXZD .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uOWSHsgXZD .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uOWSHsgXZD .carousel {
  width: 100%;
}
.cid-uOWSHsgXZD .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uOWSHsgXZD .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uOWSHsgXZD .modal.fade .modal-dialog,
.cid-uOWSHsgXZD .modal.in .modal-dialog {
  transform: none;
}
.cid-uOWSHsgXZD .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uOWSHsgXZD H6 {
  text-align: center;
}
.cid-uOWSHsgXZD H3 {
  color: #c5ac73;
}
.cid-uOWSHsN7R4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uOWTvtu7zk {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uOWTvtu7zk nav.navbar {
  position: fixed;
}
.cid-uOWTvtu7zk .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-uOWTvtu7zk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOWTvtu7zk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOWTvtu7zk .dropdown-item:hover,
.cid-uOWTvtu7zk .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uOWTvtu7zk .dropdown-item:hover span {
  color: white;
}
.cid-uOWTvtu7zk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOWTvtu7zk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOWTvtu7zk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uOWTvtu7zk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOWTvtu7zk .nav-link {
  position: relative;
}
.cid-uOWTvtu7zk .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uOWTvtu7zk .container {
    flex-wrap: wrap;
  }
}
.cid-uOWTvtu7zk .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uOWTvtu7zk .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uOWTvtu7zk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOWTvtu7zk .dropdown-menu,
.cid-uOWTvtu7zk .navbar.opened {
  background: #000000 !important;
}
.cid-uOWTvtu7zk .nav-item:focus,
.cid-uOWTvtu7zk .nav-link:focus {
  outline: none;
}
.cid-uOWTvtu7zk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOWTvtu7zk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOWTvtu7zk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOWTvtu7zk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOWTvtu7zk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOWTvtu7zk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOWTvtu7zk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uOWTvtu7zk .navbar.opened {
  transition: all 0.3s;
}
.cid-uOWTvtu7zk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOWTvtu7zk .navbar .navbar-logo img {
  width: auto;
}
.cid-uOWTvtu7zk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOWTvtu7zk .navbar.collapsed {
  justify-content: center;
}
.cid-uOWTvtu7zk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOWTvtu7zk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOWTvtu7zk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uOWTvtu7zk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOWTvtu7zk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOWTvtu7zk .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-uOWTvtu7zk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOWTvtu7zk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOWTvtu7zk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOWTvtu7zk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOWTvtu7zk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOWTvtu7zk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOWTvtu7zk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOWTvtu7zk .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-uOWTvtu7zk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOWTvtu7zk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOWTvtu7zk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOWTvtu7zk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOWTvtu7zk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOWTvtu7zk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uOWTvtu7zk .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uOWTvtu7zk .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOWTvtu7zk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOWTvtu7zk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOWTvtu7zk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOWTvtu7zk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOWTvtu7zk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOWTvtu7zk .dropdown-item.active,
.cid-uOWTvtu7zk .dropdown-item:active {
  background-color: transparent;
}
.cid-uOWTvtu7zk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOWTvtu7zk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOWTvtu7zk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOWTvtu7zk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uOWTvtu7zk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOWTvtu7zk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOWTvtu7zk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOWTvtu7zk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOWTvtu7zk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOWTvtu7zk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uOWTvtu7zk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOWTvtu7zk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOWTvtu7zk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOWTvtu7zk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOWTvtu7zk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOWTvtu7zk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOWTvtu7zk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOWTvtu7zk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOWTvtu7zk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOWTvtu7zk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOWTvtu7zk .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-uOWTvtu7zk .navbar {
    height: 70px;
  }
  .cid-uOWTvtu7zk .navbar.opened {
    height: auto;
  }
  .cid-uOWTvtu7zk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOWTvtXVcj {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-uOWTvtXVcj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOWTvtXVcj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOWTvtXVcj .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uOWTvtXVcj .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uOWTvtXVcj .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uOWTvtXVcj .mbr-section-title {
  color: #c5ac73;
  text-align: left;
}
.cid-uOWTvtXVcj .mbr-text,
.cid-uOWTvtXVcj .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uOWTvuDVhX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background-website-dark-1800x1200.jpg");
}
.cid-uOWTvuDVhX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOWTvuDVhX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOWTvuDVhX .item {
  padding-bottom: 2rem;
}
.cid-uOWTvuDVhX .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uOWTvuDVhX .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uOWTvuDVhX .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uOWTvuDVhX .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uOWTvuDVhX .carousel-control,
.cid-uOWTvuDVhX .close {
  background: #1b1b1b;
}
.cid-uOWTvuDVhX .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uOWTvuDVhX .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uOWTvuDVhX .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uOWTvuDVhX .carousel-control-next span {
  margin-left: 5px;
}
.cid-uOWTvuDVhX .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uOWTvuDVhX .close::before {
  content: '\e91a';
}
.cid-uOWTvuDVhX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uOWTvuDVhX .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uOWTvuDVhX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOWTvuDVhX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uOWTvuDVhX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uOWTvuDVhX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uOWTvuDVhX .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uOWTvuDVhX .carousel-indicators li.active,
.cid-uOWTvuDVhX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uOWTvuDVhX .carousel-indicators li::after,
.cid-uOWTvuDVhX .carousel-indicators li::before {
  content: none;
}
.cid-uOWTvuDVhX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uOWTvuDVhX .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uOWTvuDVhX .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uOWTvuDVhX .carousel-indicators {
    display: none;
  }
}
.cid-uOWTvuDVhX .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uOWTvuDVhX .carousel-inner > .active {
  display: block;
}
.cid-uOWTvuDVhX .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOWTvuDVhX .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uOWTvuDVhX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uOWTvuDVhX .carousel-control,
  .cid-uOWTvuDVhX .carousel-indicators,
  .cid-uOWTvuDVhX .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uOWTvuDVhX .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uOWTvuDVhX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uOWTvuDVhX .carousel-indicators .active,
.cid-uOWTvuDVhX .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uOWTvuDVhX .carousel-indicators .active {
  background: #fff;
}
.cid-uOWTvuDVhX .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uOWTvuDVhX .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uOWTvuDVhX .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uOWTvuDVhX .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uOWTvuDVhX .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uOWTvuDVhX .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uOWTvuDVhX .carousel {
  width: 100%;
}
.cid-uOWTvuDVhX .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uOWTvuDVhX .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uOWTvuDVhX .modal.fade .modal-dialog,
.cid-uOWTvuDVhX .modal.in .modal-dialog {
  transform: none;
}
.cid-uOWTvuDVhX .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uOWTvuDVhX H6 {
  text-align: center;
}
.cid-uOWTvuDVhX H3 {
  color: #c5ac73;
}
.cid-uOWTvv4Nps {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
