body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'segoeui';
  font-size: 4.8rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 7.68rem;
}
.display-2 {
  font-family: 'segoeuil';
  font-size: 2.5rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'segoeuil';
  font-size: 1.2rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-5 {
  font-family: 'segoeuil';
  font-size: 1.8rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-7 {
  font-family: 'segoeuil';
  font-size: 1.2rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.84rem;
    font-size: calc( 2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #e4d295 !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #cebfaf !important;
}
.bg-danger {
  background-color: #e4d295 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e4d295 !important;
  border-color: #e4d295 !important;
  color: #615119 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #615119 !important;
  background-color: #d4b858 !important;
  border-color: #d4b858 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #615119 !important;
  background-color: #d4b858 !important;
  border-color: #d4b858 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #cebfaf !important;
  border-color: #cebfaf !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #b19980 !important;
  border-color: #b19980 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #b19980 !important;
  border-color: #b19980 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #e4d295 !important;
  border-color: #e4d295 !important;
  color: #615119 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #615119 !important;
  background-color: #d4b858 !important;
  border-color: #d4b858 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #615119 !important;
  background-color: #d4b858 !important;
  border-color: #d4b858 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #cfaf44;
  color: #cfaf44;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #615119;
  background-color: #e4d295;
  border-color: #e4d295;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #615119 !important;
  background-color: #e4d295 !important;
  border-color: #e4d295 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cc0033;
  color: #cc0033;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #a78c70;
  color: #a78c70;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #cebfaf;
  border-color: #cebfaf;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #cebfaf !important;
  border-color: #cebfaf !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #cfaf44;
  color: #cfaf44;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #615119;
  background-color: #e4d295;
  border-color: #e4d295;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #615119 !important;
  background-color: #e4d295 !important;
  border-color: #e4d295 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #e4d295 !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #cebfaf !important;
}
.text-danger {
  color: #e4d295 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #cfaf44 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cc0033 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a78c70 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cfaf44 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #cebfaf;
}
.alert-danger {
  background-color: #e4d295;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e4d295;
  border-color: #e4d295;
  color: #76621e;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e4d295;
}
.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: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'segoeuil';
  font-size: 1.2rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #e4d295;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #e4d295;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #e4d295;
}
/* Headers*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e4d295;
  color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #e4d295;
  border-bottom-color: #e4d295;
}
.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: #e4d295 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff3366 !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%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  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='%23e4d295' %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.3;
}
.cid-sK1sKm1htV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sK1sKm1htV .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sK1sKm1htV .container {
    padding: 0 ;
  }
}
.cid-sK1sKm1htV .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-sK1sKm1htV .navbar.opened {
  transition: all 0.3s;
}
.cid-sK1sKm1htV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sK1sKm1htV .navbar .navbar-logo img {
  width: auto;
}
.cid-sK1sKm1htV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sK1sKm1htV .navbar.collapsed {
  justify-content: center;
}
.cid-sK1sKm1htV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sK1sKm1htV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sK1sKm1htV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sK1sKm1htV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sK1sKm1htV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sK1sKm1htV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sK1sKm1htV .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-sK1sKm1htV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sK1sKm1htV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sK1sKm1htV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sK1sKm1htV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sK1sKm1htV .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-sK1sKm1htV .navbar.navbar-short {
  min-height: 110px;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sK1sKm1htV .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-sK1sKm1htV nav.navbar {
  position: fixed;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sK1sKm1htV .dropdown-item:hover,
.cid-sK1sKm1htV .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-sK1sKm1htV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sK1sKm1htV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sK1sKm1htV .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown-menu,
.cid-sK1sKm1htV .navbar.opened {
  background: #474141 !important;
}
.cid-sK1sKm1htV .nav-item:focus,
.cid-sK1sKm1htV .nav-link:focus {
  outline: none;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sK1sKm1htV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sK1sKm1htV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sK1sKm1htV .dropdown-item.active,
.cid-sK1sKm1htV .dropdown-item:active {
  background-color: transparent;
}
.cid-sK1sKm1htV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sK1sKm1htV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sK1sKm1htV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sK1sKm1htV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sK1sKm1htV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sK1sKm1htV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar {
    height: 70px;
  }
  .cid-sK1sKm1htV .navbar.opened {
    height: auto;
  }
  .cid-sK1sKm1htV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-szKpMnnDFq {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-szKpMnnDFq .mbr-section-subtitle {
  color: #767676;
}
.cid-szKpMnnDFq H2 {
  color: #e4d295;
  text-align: center;
}
.cid-tlQFJhRoz2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tlQFJhRoz2 .line {
  background-color: #767676;
  color: #767676;
  align: center;
  height: 1px;
  margin: 0 auto;
}
.cid-tlQFJhRoz2 .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #b1a374;
}
.cid-tlQFJhRoz2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tlQFJhRoz2 .inner-container {
    width: 100% !important;
  }
}
.cid-tlQFJhRoz2 .section-text DIV {
  text-align: left;
}
.cid-szKpSbJfJu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-szKpSbJfJu .mbr-text,
.cid-szKpSbJfJu blockquote {
  color: #767676;
}
.cid-szKpSbJfJu .mbr-text {
  color: #cebfaf;
}
.cid-szKqekYwLC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-szKqekYwLC .line {
  background-color: #767676;
  color: #767676;
  align: center;
  height: 1px;
  margin: 0 auto;
}
.cid-szKqekYwLC .section-text {
  padding: 2rem 0;
  text-align: left;
  color: #b1a374;
}
.cid-szKqekYwLC .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-szKqekYwLC .inner-container {
    width: 100% !important;
  }
}
.cid-szKqekYwLC .section-text DIV {
  text-align: left;
}
.cid-sCcMyaFtnJ {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-sCcMyaFtnJ .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCcMyaFtnJ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCcMyaFtnJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCcMyaFtnJ foot-menu-item {
  color: #cebfaf;
}
.cid-sCcMyaFtnJ .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-sK1sKm1htV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sK1sKm1htV .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sK1sKm1htV .container {
    padding: 0 ;
  }
}
.cid-sK1sKm1htV .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-sK1sKm1htV .navbar.opened {
  transition: all 0.3s;
}
.cid-sK1sKm1htV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sK1sKm1htV .navbar .navbar-logo img {
  width: auto;
}
.cid-sK1sKm1htV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sK1sKm1htV .navbar.collapsed {
  justify-content: center;
}
.cid-sK1sKm1htV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sK1sKm1htV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sK1sKm1htV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sK1sKm1htV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sK1sKm1htV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sK1sKm1htV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sK1sKm1htV .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-sK1sKm1htV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sK1sKm1htV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sK1sKm1htV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sK1sKm1htV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sK1sKm1htV .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-sK1sKm1htV .navbar.navbar-short {
  min-height: 110px;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sK1sKm1htV .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-sK1sKm1htV nav.navbar {
  position: fixed;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sK1sKm1htV .dropdown-item:hover,
.cid-sK1sKm1htV .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-sK1sKm1htV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sK1sKm1htV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sK1sKm1htV .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown-menu,
.cid-sK1sKm1htV .navbar.opened {
  background: #474141 !important;
}
.cid-sK1sKm1htV .nav-item:focus,
.cid-sK1sKm1htV .nav-link:focus {
  outline: none;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sK1sKm1htV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sK1sKm1htV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sK1sKm1htV .dropdown-item.active,
.cid-sK1sKm1htV .dropdown-item:active {
  background-color: transparent;
}
.cid-sK1sKm1htV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sK1sKm1htV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sK1sKm1htV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sK1sKm1htV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sK1sKm1htV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sK1sKm1htV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar {
    height: 70px;
  }
  .cid-sK1sKm1htV .navbar.opened {
    height: auto;
  }
  .cid-sK1sKm1htV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-sbMakr0Ic0 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #232323;
}
@media (min-width: 992px) {
  .cid-sbMakr0Ic0 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sbMakr0Ic0 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sbMakr0Ic0 .mbr-text {
    text-align: center;
  }
}
.cid-sbMakr0Ic0 H1 {
  color: #cebfaf;
}
.cid-sbMakr0Ic0 .mbr-text,
.cid-sbMakr0Ic0 .mbr-section-btn {
  color: #cebfaf;
}
.cid-sbMbkJlwlA {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sbMbkJlwlA .title {
  margin-bottom: 2rem;
}
.cid-sbMbkJlwlA .mbr-section-subtitle {
  color: #cebfaf;
  text-align: left;
}
.cid-sbMbkJlwlA a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-sbMbkJlwlA a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-sbMbkJlwlA textarea.form-control {
  min-height: 188px;
}
.cid-sbMbkJlwlA LABEL {
  color: #e4d295;
}
.cid-sCcMyaFtnJ {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-sCcMyaFtnJ .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCcMyaFtnJ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCcMyaFtnJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCcMyaFtnJ foot-menu-item {
  color: #cebfaf;
}
.cid-sCcMyaFtnJ .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-sK1sKm1htV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sK1sKm1htV .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sK1sKm1htV .container {
    padding: 0 ;
  }
}
.cid-sK1sKm1htV .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-sK1sKm1htV .navbar.opened {
  transition: all 0.3s;
}
.cid-sK1sKm1htV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sK1sKm1htV .navbar .navbar-logo img {
  width: auto;
}
.cid-sK1sKm1htV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sK1sKm1htV .navbar.collapsed {
  justify-content: center;
}
.cid-sK1sKm1htV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sK1sKm1htV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sK1sKm1htV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sK1sKm1htV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sK1sKm1htV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sK1sKm1htV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sK1sKm1htV .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-sK1sKm1htV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sK1sKm1htV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sK1sKm1htV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sK1sKm1htV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sK1sKm1htV .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-sK1sKm1htV .navbar.navbar-short {
  min-height: 110px;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sK1sKm1htV .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-sK1sKm1htV nav.navbar {
  position: fixed;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sK1sKm1htV .dropdown-item:hover,
.cid-sK1sKm1htV .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-sK1sKm1htV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sK1sKm1htV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sK1sKm1htV .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown-menu,
.cid-sK1sKm1htV .navbar.opened {
  background: #474141 !important;
}
.cid-sK1sKm1htV .nav-item:focus,
.cid-sK1sKm1htV .nav-link:focus {
  outline: none;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sK1sKm1htV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sK1sKm1htV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sK1sKm1htV .dropdown-item.active,
.cid-sK1sKm1htV .dropdown-item:active {
  background-color: transparent;
}
.cid-sK1sKm1htV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sK1sKm1htV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sK1sKm1htV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sK1sKm1htV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sK1sKm1htV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sK1sKm1htV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar {
    height: 70px;
  }
  .cid-sK1sKm1htV .navbar.opened {
    height: auto;
  }
  .cid-sK1sKm1htV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-sK1zXBes6K {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sK1zXBes6K .mbr-text,
.cid-sK1zXBes6K blockquote {
  color: #767676;
}
.cid-sK1zXBes6K .mbr-text {
  color: #e4d295;
}
.cid-tmoNfeTycz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-tmoNfeTycz .mbr-text,
.cid-tmoNfeTycz blockquote {
  color: #767676;
}
.cid-u5MQVOaII6 {
  background: #232323;
}
.cid-u5MQVOaII6 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u5MQVOaII6 figcaption {
  position: relative;
}
.cid-u5MQVOaII6 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u5MQVOaII6 .image-block {
    width: 100% !important;
  }
}
.cid-u5MQVOaII6 DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-sA248AF048 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sA248AF048 .mbr-text,
.cid-sA248AF048 blockquote {
  color: #767676;
}
.cid-sA248AF048 .mbr-text {
  color: #e4d295;
}
.cid-sD8CICfosD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sD8CICfosD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sD8CICfosD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sD8CICfosD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sD8CICfosD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sD8CICfosD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sD8CICfosD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sD8CICfosD .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sD8CICfosD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sD8CICfosD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u5SvMPkPqr {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #e48a1a, #232323);
}
.cid-u5SvMPkPqr .image-block {
  margin: auto;
}
.cid-u5SvMPkPqr figcaption {
  position: relative;
}
.cid-u5SvMPkPqr figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u5SvMPkPqr .image-block {
    width: 100% !important;
  }
}
.cid-u5SvMPkPqr DIV {
  text-align: center;
  color: #ffffff;
}
.cid-u5NFuOkO2w {
  background-color: #232323;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-u5NFuOkO2w .row {
  align-items: center;
}
.cid-u5NFuOkO2w .text-wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #e4d295;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-u5NFuOkO2w .content {
  position: relative;
  border: 3px solid #000000;
  padding: 40px;
}
.cid-u5NFuOkO2w .label {
  position: absolute;
  border-radius: 20px;
  background-color: #000000;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  font-family: "Josefin Sans";
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
}
@media (max-width: 991px) {
  .cid-u5NFuOkO2w .text-wrapper {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .cid-u5NFuOkO2w .card {
    height: 300px;
  }
}
.cid-u5NFuOkO2w .mbr-section-title,
.cid-u5NFuOkO2w .mbr-section-btn {
  color: #232323;
}
.cid-u5NFuOkO2w .mbr-label {
  color: #e4d295;
}
.cid-u5SkvVcGYn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-u5SkvVcGYn .row {
  align-items: stretch;
  justify-content: center;
}
.cid-u5SkvVcGYn .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-u5SkvVcGYn .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-u5SkvVcGYn P {
  color: #000000;
  margin-bottom: 0px;
  margin-top: 5px;
}
.cid-u5SkvVcGYn img {
  margin-top: 32px;
}
@media (max-width: 990px) {
  .cid-u5SkvVcGYn .top {
    margin-top: 0;
  }
}
@media (min-width: 990px) {
  .cid-u5SkvVcGYn .top,
  .cid-u5SkvVcGYn .top-2 {
    margin-top: 0;
  }
}
.cid-u5Sncfssmw {
  background-color: #232323;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-u5Sncfssmw .row {
  align-items: center;
}
.cid-u5Sncfssmw .text-wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #e4d295;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-u5Sncfssmw .content {
  position: relative;
  border: 3px solid #000000;
  padding: 40px;
}
.cid-u5Sncfssmw .label {
  position: absolute;
  border-radius: 20px;
  background-color: #000000;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  font-family: "Josefin Sans";
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
}
@media (max-width: 991px) {
  .cid-u5Sncfssmw .text-wrapper {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .cid-u5Sncfssmw .card {
    height: 300px;
  }
}
.cid-u5Sncfssmw .mbr-section-title,
.cid-u5Sncfssmw .mbr-section-btn {
  color: #232323;
}
.cid-u5Sncfssmw .mbr-label {
  color: #e4d295;
}
.cid-u5SoIIKOYU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u5SoIIKOYU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u5SoIIKOYU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u5SoIIKOYU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u5SoIIKOYU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u5SoIIKOYU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u5SoIIKOYU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u5SoIIKOYU .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u5SoIIKOYU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u5SoIIKOYU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u5SoIIKOYU .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u5SzSAgbm6 {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #e48a1a, #232323);
}
.cid-u5SzSAgbm6 .image-block {
  margin: auto;
}
.cid-u5SzSAgbm6 figcaption {
  position: relative;
}
.cid-u5SzSAgbm6 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u5SzSAgbm6 .image-block {
    width: 100% !important;
  }
}
.cid-u5SzSAgbm6 DIV {
  text-align: center;
  color: #ffffff;
}
.cid-u5SCuAPfmR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u5SCuAPfmR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u5SCuAPfmR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u5SCuAPfmR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u5SCuAPfmR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u5SCuAPfmR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u5SCuAPfmR .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u5SCuAPfmR .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u5SCuAPfmR .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u5SCuAPfmR .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u5SCuAPfmR .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u5XBb8iRHD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u5XBb8iRHD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u5XBb8iRHD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u5XBb8iRHD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u5XBb8iRHD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u5XBb8iRHD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u5XBb8iRHD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u5XBb8iRHD .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u5XBb8iRHD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u5XBb8iRHD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u5XBb8iRHD .mbr-gallery-item > div > span {
  text-align: center;
  color: #e4d295;
}
.cid-u5XMaFgTit {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #e48a1a, #232323);
}
.cid-u5XMaFgTit .image-block {
  margin: auto;
}
.cid-u5XMaFgTit figcaption {
  position: relative;
}
.cid-u5XMaFgTit figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u5XMaFgTit .image-block {
    width: 100% !important;
  }
}
.cid-u5XMaFgTit DIV {
  text-align: right;
  color: #ffffff;
}
.cid-u5XURdInhV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u5XURdInhV .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u5XURdInhV .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u5XURdInhV .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u5XURdInhV .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u5XURdInhV .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u5XURdInhV .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u5XURdInhV .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u5XURdInhV .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u5XURdInhV .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u5XURdInhV .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u5ScqN2NDV {
  background: #0f7699;
  background: linear-gradient(0deg, #cc2952, #0f7699);
}
.cid-u5ScqN2NDV .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u5ScqN2NDV figcaption {
  position: relative;
}
.cid-u5ScqN2NDV figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u5ScqN2NDV .image-block {
    width: 100% !important;
  }
}
.cid-u5ScqN2NDV DIV {
  text-align: left;
  color: #232323;
}
.cid-sCcMyaFtnJ {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-sCcMyaFtnJ .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCcMyaFtnJ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCcMyaFtnJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCcMyaFtnJ foot-menu-item {
  color: #cebfaf;
}
.cid-sCcMyaFtnJ .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-sK1sKm1htV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sK1sKm1htV .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sK1sKm1htV .container {
    padding: 0 ;
  }
}
.cid-sK1sKm1htV .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-sK1sKm1htV .navbar.opened {
  transition: all 0.3s;
}
.cid-sK1sKm1htV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sK1sKm1htV .navbar .navbar-logo img {
  width: auto;
}
.cid-sK1sKm1htV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sK1sKm1htV .navbar.collapsed {
  justify-content: center;
}
.cid-sK1sKm1htV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sK1sKm1htV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sK1sKm1htV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sK1sKm1htV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sK1sKm1htV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sK1sKm1htV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sK1sKm1htV .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-sK1sKm1htV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sK1sKm1htV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sK1sKm1htV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sK1sKm1htV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sK1sKm1htV .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-sK1sKm1htV .navbar.navbar-short {
  min-height: 110px;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sK1sKm1htV .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-sK1sKm1htV nav.navbar {
  position: fixed;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sK1sKm1htV .dropdown-item:hover,
.cid-sK1sKm1htV .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-sK1sKm1htV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sK1sKm1htV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sK1sKm1htV .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown-menu,
.cid-sK1sKm1htV .navbar.opened {
  background: #474141 !important;
}
.cid-sK1sKm1htV .nav-item:focus,
.cid-sK1sKm1htV .nav-link:focus {
  outline: none;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sK1sKm1htV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sK1sKm1htV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sK1sKm1htV .dropdown-item.active,
.cid-sK1sKm1htV .dropdown-item:active {
  background-color: transparent;
}
.cid-sK1sKm1htV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sK1sKm1htV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sK1sKm1htV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sK1sKm1htV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sK1sKm1htV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sK1sKm1htV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar {
    height: 70px;
  }
  .cid-sK1sKm1htV .navbar.opened {
    height: auto;
  }
  .cid-sK1sKm1htV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-sK1zzmOsZy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sK1zzmOsZy .mbr-text,
.cid-sK1zzmOsZy blockquote {
  color: #767676;
}
.cid-sK1zzmOsZy .mbr-text {
  color: #e4d295;
}
.cid-u9suEndkgc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u9suEndkgc .mbr-text,
.cid-u9suEndkgc blockquote {
  color: #767676;
}
.cid-szWmD7n7US {
  background: #0f7699;
  background: linear-gradient(0deg, #cc2952, #0f7699);
}
.cid-szWmD7n7US .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-szWmD7n7US figcaption {
  position: relative;
}
.cid-szWmD7n7US figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-szWmD7n7US .image-block {
    width: 100% !important;
  }
}
.cid-szWmD7n7US DIV {
  text-align: left;
  color: #232323;
}
.cid-uewuXa4wFY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uewuXa4wFY .mbr-section-title {
  text-align: center;
}
.cid-uewuXa4wFY .mbr-text {
  color: #d0eabc;
  text-align: center;
}
.cid-sC6CUlYEnY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-sC6CUlYEnY .mbr-section-title {
  text-align: center;
}
.cid-sC6CUlYEnY .mbr-text {
  color: #e4d295;
  text-align: left;
}
.cid-ueww9EasRe {
  background: #7fcc29;
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #232323, #7fcc29);
}
.cid-ueww9EasRe .image-block {
  margin: auto;
}
.cid-ueww9EasRe figcaption {
  position: relative;
}
.cid-ueww9EasRe figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ueww9EasRe .image-block {
    width: 100% !important;
  }
}
.cid-ueww9EasRe DIV {
  text-align: left;
  color: #efefef;
}
.cid-sCcMyaFtnJ {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-sCcMyaFtnJ .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCcMyaFtnJ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCcMyaFtnJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCcMyaFtnJ foot-menu-item {
  color: #cebfaf;
}
.cid-sCcMyaFtnJ .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-sK1sKm1htV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sK1sKm1htV .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sK1sKm1htV .container {
    padding: 0 ;
  }
}
.cid-sK1sKm1htV .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-sK1sKm1htV .navbar.opened {
  transition: all 0.3s;
}
.cid-sK1sKm1htV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sK1sKm1htV .navbar .navbar-logo img {
  width: auto;
}
.cid-sK1sKm1htV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sK1sKm1htV .navbar.collapsed {
  justify-content: center;
}
.cid-sK1sKm1htV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sK1sKm1htV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sK1sKm1htV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sK1sKm1htV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sK1sKm1htV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sK1sKm1htV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sK1sKm1htV .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-sK1sKm1htV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sK1sKm1htV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sK1sKm1htV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sK1sKm1htV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sK1sKm1htV .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-sK1sKm1htV .navbar.navbar-short {
  min-height: 110px;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sK1sKm1htV .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-sK1sKm1htV nav.navbar {
  position: fixed;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sK1sKm1htV .dropdown-item:hover,
.cid-sK1sKm1htV .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-sK1sKm1htV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sK1sKm1htV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sK1sKm1htV .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown-menu,
.cid-sK1sKm1htV .navbar.opened {
  background: #474141 !important;
}
.cid-sK1sKm1htV .nav-item:focus,
.cid-sK1sKm1htV .nav-link:focus {
  outline: none;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sK1sKm1htV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sK1sKm1htV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sK1sKm1htV .dropdown-item.active,
.cid-sK1sKm1htV .dropdown-item:active {
  background-color: transparent;
}
.cid-sK1sKm1htV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sK1sKm1htV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sK1sKm1htV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sK1sKm1htV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sK1sKm1htV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sK1sKm1htV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar {
    height: 70px;
  }
  .cid-sK1sKm1htV .navbar.opened {
    height: auto;
  }
  .cid-sK1sKm1htV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-szWnFHlTy7 {
  background: #0f7699;
  background: linear-gradient(0deg, #cc2952, #0f7699);
}
.cid-szWnFHlTy7 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-szWnFHlTy7 figcaption {
  position: relative;
}
.cid-szWnFHlTy7 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-szWnFHlTy7 .image-block {
    width: 100% !important;
  }
}
.cid-u5B9prBHx7 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u5B9prBHx7 .mbr-text,
.cid-u5B9prBHx7 blockquote {
  color: #767676;
}
.cid-u5B9prBHx7 .mbr-text {
  color: #e4d295;
}
.cid-szWnFHs75z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-szWnFHs75z .mbr-text,
.cid-szWnFHs75z blockquote {
  color: #767676;
}
.cid-szWnFHs75z .mbr-text {
  color: #e4d295;
}
.cid-sCcMyaFtnJ {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-sCcMyaFtnJ .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCcMyaFtnJ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCcMyaFtnJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCcMyaFtnJ foot-menu-item {
  color: #cebfaf;
}
.cid-sCcMyaFtnJ .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-sK1sKm1htV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sK1sKm1htV .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sK1sKm1htV .container {
    padding: 0 ;
  }
}
.cid-sK1sKm1htV .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-sK1sKm1htV .navbar.opened {
  transition: all 0.3s;
}
.cid-sK1sKm1htV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sK1sKm1htV .navbar .navbar-logo img {
  width: auto;
}
.cid-sK1sKm1htV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sK1sKm1htV .navbar.collapsed {
  justify-content: center;
}
.cid-sK1sKm1htV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sK1sKm1htV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sK1sKm1htV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sK1sKm1htV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sK1sKm1htV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sK1sKm1htV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sK1sKm1htV .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-sK1sKm1htV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sK1sKm1htV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sK1sKm1htV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sK1sKm1htV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sK1sKm1htV .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-sK1sKm1htV .navbar.navbar-short {
  min-height: 110px;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sK1sKm1htV .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-sK1sKm1htV nav.navbar {
  position: fixed;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sK1sKm1htV .dropdown-item:hover,
.cid-sK1sKm1htV .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-sK1sKm1htV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sK1sKm1htV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sK1sKm1htV .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown-menu,
.cid-sK1sKm1htV .navbar.opened {
  background: #474141 !important;
}
.cid-sK1sKm1htV .nav-item:focus,
.cid-sK1sKm1htV .nav-link:focus {
  outline: none;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sK1sKm1htV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sK1sKm1htV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sK1sKm1htV .dropdown-item.active,
.cid-sK1sKm1htV .dropdown-item:active {
  background-color: transparent;
}
.cid-sK1sKm1htV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sK1sKm1htV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sK1sKm1htV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sK1sKm1htV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sK1sKm1htV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sK1sKm1htV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar {
    height: 70px;
  }
  .cid-sK1sKm1htV .navbar.opened {
    height: auto;
  }
  .cid-sK1sKm1htV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u4tNqjQi8K {
  background: #ffffff;
}
.cid-u4tNqjQi8K .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u4tNqjQi8K figcaption {
  position: relative;
}
.cid-u4tNqjQi8K figcaption div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u4tNqjQi8K .image-block {
    width: 100% !important;
  }
}
.cid-u4tNqjQi8K DIV {
  color: #232323;
  text-align: left;
}
.cid-udZg7GAxnW {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-udZg7GAxnW .mbr-text,
.cid-udZg7GAxnW blockquote {
  color: #767676;
}
.cid-udZg7GAxnW .mbr-text {
  color: #b1a374;
}
.cid-udZg7GAxnW .mbr-text P {
  text-align: left;
}
.cid-sCnVQd9cQN {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sCnVQd9cQN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sCnVQd9cQN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCnVQd9cQN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sCnVQd9cQN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sCnVQd9cQN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sCnVQd9cQN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sCnVQd9cQN .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sCnVQd9cQN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sCnVQd9cQN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sCinODLbEg {
  padding-top: 315px;
  background-image: url("../../../assets/images/panorama-feldberg-1-2000x396.jpg");
}
.cid-sCio5A7GFg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sCio5A7GFg .mbr-text,
.cid-sCio5A7GFg blockquote {
  color: #767676;
}
.cid-sCio5A7GFg .mbr-text {
  color: #b1a374;
}
.cid-sCio5A7GFg .mbr-text P {
  text-align: center;
}
.cid-sCcMyaFtnJ {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-sCcMyaFtnJ .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCcMyaFtnJ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCcMyaFtnJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCcMyaFtnJ foot-menu-item {
  color: #cebfaf;
}
.cid-sCcMyaFtnJ .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-sK1sKm1htV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sK1sKm1htV .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sK1sKm1htV .container {
    padding: 0 ;
  }
}
.cid-sK1sKm1htV .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-sK1sKm1htV .navbar.opened {
  transition: all 0.3s;
}
.cid-sK1sKm1htV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sK1sKm1htV .navbar .navbar-logo img {
  width: auto;
}
.cid-sK1sKm1htV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sK1sKm1htV .navbar.collapsed {
  justify-content: center;
}
.cid-sK1sKm1htV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sK1sKm1htV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sK1sKm1htV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sK1sKm1htV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sK1sKm1htV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sK1sKm1htV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sK1sKm1htV .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-sK1sKm1htV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sK1sKm1htV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sK1sKm1htV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sK1sKm1htV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sK1sKm1htV .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-sK1sKm1htV .navbar.navbar-short {
  min-height: 110px;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sK1sKm1htV .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-sK1sKm1htV nav.navbar {
  position: fixed;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sK1sKm1htV .dropdown-item:hover,
.cid-sK1sKm1htV .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-sK1sKm1htV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sK1sKm1htV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sK1sKm1htV .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown-menu,
.cid-sK1sKm1htV .navbar.opened {
  background: #474141 !important;
}
.cid-sK1sKm1htV .nav-item:focus,
.cid-sK1sKm1htV .nav-link:focus {
  outline: none;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sK1sKm1htV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sK1sKm1htV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sK1sKm1htV .dropdown-item.active,
.cid-sK1sKm1htV .dropdown-item:active {
  background-color: transparent;
}
.cid-sK1sKm1htV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sK1sKm1htV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sK1sKm1htV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sK1sKm1htV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sK1sKm1htV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sK1sKm1htV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar {
    height: 70px;
  }
  .cid-sK1sKm1htV .navbar.opened {
    height: auto;
  }
  .cid-sK1sKm1htV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-sASjB0v3hK {
  background: #0f7699;
  background: linear-gradient(0deg, #cc2952, #0f7699);
}
.cid-sASjB0v3hK .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sASjB0v3hK figcaption {
  position: relative;
}
.cid-sASjB0v3hK figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sASjB0v3hK .image-block {
    width: 100% !important;
  }
}
.cid-sASjB0v3hK DIV {
  text-align: left;
}
.cid-u4yAii4iOy {
  background: #e48a1a;
  padding-top: 30px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #232323, #e48a1a);
}
.cid-u4yAii4iOy .image-block {
  margin: auto;
}
.cid-u4yAii4iOy figcaption {
  position: relative;
}
.cid-u4yAii4iOy figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u4yAii4iOy .image-block {
    width: 100% !important;
  }
}
.cid-u4yAii4iOy DIV {
  text-align: right;
  color: #232323;
}
.cid-u4yyuaQZ1k {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
@media (max-width: 1000px) {
  .cid-u4yyuaQZ1k {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 768px) {
  .cid-u4yyuaQZ1k {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }
}
@media (min-width: 992px) {
  .cid-u4yyuaQZ1k .card-wrapper {
    padding-right: 10rem;
  }
  .cid-u4yyuaQZ1k .image-wrapper {
    padding-left: 10rem;
  }
}
@media (min-width: 992px) {
  .cid-u4yyuaQZ1k .card-wrapper {
    padding-left: 1rem;
  }
  .cid-u4yyuaQZ1k .image-wrapper {
    padding-right: 1rem;
  }
}
.cid-u4yyuaQZ1k .row {
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .cid-u4yyuaQZ1k .card {
    margin-bottom: 2rem!important;
  }
}
@media (max-width: 767px) {
  .cid-u4yyuaQZ1k .link-wrap {
    align-items: center;
  }
}
.cid-u4yyuaQZ1k .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u4yyuaQZ1k .card-title,
.cid-u4yyuaQZ1k .card-box {
  text-align: left;
  color: #232323;
}
.cid-u4yyuaQZ1k .mbr-text,
.cid-u4yyuaQZ1k .link-wrap,
.cid-u4yyuaQZ1k .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-u4yyuaQZ1k .card-title,
.cid-u4yyuaQZ1k .mbr-text,
.cid-u4yyuaQZ1k .mbr-section-btn {
  text-align: left;
  color: #e4d295;
}
.cid-u4yAej7vLl {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #e48a1a, #232323);
}
.cid-u4yAej7vLl .image-block {
  margin: auto;
}
.cid-u4yAej7vLl figcaption {
  position: relative;
}
.cid-u4yAej7vLl figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u4yAej7vLl .image-block {
    width: 100% !important;
  }
}
.cid-u4yAej7vLl DIV {
  text-align: right;
  color: #232323;
}
.cid-u4yBTQ5NoA {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u4yBTQ5NoA .mbr-text,
.cid-u4yBTQ5NoA blockquote {
  color: #767676;
}
.cid-u4yBTQ5NoA .mbr-text {
  color: #e4d295;
}
.cid-u4yBTQ5NoA .mbr-text P {
  text-align: left;
}
.cid-u4yWlMUqiJ {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u4yWlMUqiJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u4yWlMUqiJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u4yWlMUqiJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u4yWlMUqiJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u4yWlMUqiJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u4yWlMUqiJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u4yWlMUqiJ .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u4yWlMUqiJ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u4yWlMUqiJ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u4yWlMUqiJ .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u4yXk16gpj {
  background: #e48a1a;
  padding-top: 30px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #232323, #e48a1a);
}
.cid-u4yXk16gpj .image-block {
  margin: auto;
}
.cid-u4yXk16gpj figcaption {
  position: relative;
}
.cid-u4yXk16gpj figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u4yXk16gpj .image-block {
    width: 100% !important;
  }
}
.cid-u4yXk16gpj DIV {
  text-align: right;
  color: #232323;
}
.cid-u4yYdCmz5R {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
@media (max-width: 1000px) {
  .cid-u4yYdCmz5R {
    padding-top: 0.5rem;
    padding-bottom: 0rem;
  }
}
@media (max-width: 768px) {
  .cid-u4yYdCmz5R {
    padding-top: 0.3rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-u4yYdCmz5R .card-wrapper {
    padding-right: 10rem;
  }
  .cid-u4yYdCmz5R .image-wrapper {
    padding-left: 10rem;
  }
}
@media (min-width: 992px) {
  .cid-u4yYdCmz5R .card-wrapper {
    padding-left: 1rem;
  }
  .cid-u4yYdCmz5R .image-wrapper {
    padding-right: 1rem;
  }
}
.cid-u4yYdCmz5R .row {
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .cid-u4yYdCmz5R .card {
    margin-bottom: 2rem!important;
  }
}
@media (max-width: 767px) {
  .cid-u4yYdCmz5R .link-wrap {
    align-items: center;
  }
}
.cid-u4yYdCmz5R .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u4yYdCmz5R .card-title,
.cid-u4yYdCmz5R .card-box {
  text-align: left;
  color: #232323;
}
.cid-u4yYdCmz5R .mbr-text,
.cid-u4yYdCmz5R .link-wrap,
.cid-u4yYdCmz5R .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-u4yYdCmz5R .card-title,
.cid-u4yYdCmz5R .mbr-text,
.cid-u4yYdCmz5R .mbr-section-btn {
  text-align: left;
  color: #e4d295;
}
.cid-u4yXRWbKiv {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #e48a1a, #232323);
}
.cid-u4yXRWbKiv .image-block {
  margin: auto;
}
.cid-u4yXRWbKiv figcaption {
  position: relative;
}
.cid-u4yXRWbKiv figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u4yXRWbKiv .image-block {
    width: 100% !important;
  }
}
.cid-u4yXRWbKiv DIV {
  text-align: right;
  color: #232323;
}
.cid-u4z0lLc7GT {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u4z0lLc7GT .mbr-text,
.cid-u4z0lLc7GT blockquote {
  color: #767676;
}
.cid-u4z0lLc7GT .mbr-text {
  color: #e4d295;
}
.cid-u4z0lLc7GT .mbr-text P {
  text-align: left;
}
.cid-u4z0t3JUzJ {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #e48a1a, #232323);
}
.cid-u4z0t3JUzJ .image-block {
  margin: auto;
}
.cid-u4z0t3JUzJ figcaption {
  position: relative;
}
.cid-u4z0t3JUzJ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u4z0t3JUzJ .image-block {
    width: 100% !important;
  }
}
.cid-u4z0t3JUzJ DIV {
  text-align: center;
  color: #ffffff;
}
.cid-u4z0uBbRpf {
  background: #e48a1a;
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #232323, #e48a1a);
}
.cid-u4z0uBbRpf .image-block {
  margin: auto;
}
.cid-u4z0uBbRpf figcaption {
  position: relative;
}
.cid-u4z0uBbRpf figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u4z0uBbRpf .image-block {
    width: 100% !important;
  }
}
.cid-u4z0uBbRpf DIV {
  text-align: center;
  color: #ffffff;
}
.cid-sCcMyaFtnJ {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-sCcMyaFtnJ .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCcMyaFtnJ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCcMyaFtnJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCcMyaFtnJ foot-menu-item {
  color: #cebfaf;
}
.cid-sCcMyaFtnJ .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-sK1sKm1htV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sK1sKm1htV .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sK1sKm1htV .container {
    padding: 0 ;
  }
}
.cid-sK1sKm1htV .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-sK1sKm1htV .navbar.opened {
  transition: all 0.3s;
}
.cid-sK1sKm1htV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sK1sKm1htV .navbar .navbar-logo img {
  width: auto;
}
.cid-sK1sKm1htV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sK1sKm1htV .navbar.collapsed {
  justify-content: center;
}
.cid-sK1sKm1htV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sK1sKm1htV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sK1sKm1htV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sK1sKm1htV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sK1sKm1htV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sK1sKm1htV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sK1sKm1htV .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-sK1sKm1htV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sK1sKm1htV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sK1sKm1htV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sK1sKm1htV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sK1sKm1htV .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-sK1sKm1htV .navbar.navbar-short {
  min-height: 110px;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sK1sKm1htV .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-sK1sKm1htV nav.navbar {
  position: fixed;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sK1sKm1htV .dropdown-item:hover,
.cid-sK1sKm1htV .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-sK1sKm1htV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sK1sKm1htV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sK1sKm1htV .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown-menu,
.cid-sK1sKm1htV .navbar.opened {
  background: #474141 !important;
}
.cid-sK1sKm1htV .nav-item:focus,
.cid-sK1sKm1htV .nav-link:focus {
  outline: none;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sK1sKm1htV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sK1sKm1htV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sK1sKm1htV .dropdown-item.active,
.cid-sK1sKm1htV .dropdown-item:active {
  background-color: transparent;
}
.cid-sK1sKm1htV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sK1sKm1htV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sK1sKm1htV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sK1sKm1htV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sK1sKm1htV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sK1sKm1htV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar {
    height: 70px;
  }
  .cid-sK1sKm1htV .navbar.opened {
    height: auto;
  }
  .cid-sK1sKm1htV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-sASjSPmhbV {
  background: #0f7699;
  background: linear-gradient(0deg, #cc2952, #0f7699);
}
.cid-sASjSPmhbV .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sASjSPmhbV figcaption {
  position: relative;
}
.cid-sASjSPmhbV figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sASjSPmhbV .image-block {
    width: 100% !important;
  }
}
.cid-sASjSPmhbV DIV {
  color: #232323;
  text-align: left;
}
.cid-u4EvWNkAtv {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u4EvWNkAtv .mbr-text,
.cid-u4EvWNkAtv blockquote {
  color: #767676;
}
.cid-u4EvWNkAtv .mbr-text {
  color: #e4d295;
}
.cid-udZgimXLEb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-udZgimXLEb .mbr-text,
.cid-udZgimXLEb blockquote {
  color: #767676;
}
.cid-udZgimXLEb .mbr-text {
  color: #b1a374;
}
.cid-udZgimXLEb .mbr-text P {
  text-align: left;
}
.cid-u4EwenJ7Y5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u4EwenJ7Y5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u4EwenJ7Y5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u4EwenJ7Y5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u4EwenJ7Y5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u4EwenJ7Y5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u4EwenJ7Y5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u4EwenJ7Y5 .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u4EwenJ7Y5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u4EwenJ7Y5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u4EwenJ7Y5 .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u4EHQqh2x3 {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #e48a1a, #232323);
}
.cid-u4EHQqh2x3 .image-block {
  margin: auto;
}
.cid-u4EHQqh2x3 figcaption {
  position: relative;
}
.cid-u4EHQqh2x3 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u4EHQqh2x3 .image-block {
    width: 100% !important;
  }
}
.cid-u4EHQqh2x3 DIV {
  text-align: left;
  color: #ffffff;
}
.cid-u4EKa4hoGs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u4EKa4hoGs .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u4EKa4hoGs .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u4EKa4hoGs .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u4EKa4hoGs .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u4EKa4hoGs .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u4EKa4hoGs .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u4EKa4hoGs .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u4EKa4hoGs .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u4EKa4hoGs .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u4EKa4hoGs .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u4Kwo3v6RN {
  background: #e48a1a;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #232323, #e48a1a);
}
.cid-u4Kwo3v6RN .image-block {
  margin: auto;
}
.cid-u4Kwo3v6RN figcaption {
  position: relative;
}
.cid-u4Kwo3v6RN figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u4Kwo3v6RN .image-block {
    width: 100% !important;
  }
}
.cid-u4Kwo3v6RN DIV {
  text-align: right;
  color: #232323;
}
.cid-u4EwLKhuor {
  background-color: #232323;
  padding-top: 0rem;
  padding-bottom: 1rem;
}
.cid-u4EwLKhuor .row {
  align-items: center;
}
.cid-u4EwLKhuor .text-wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #e4d295;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-u4EwLKhuor .content {
  position: relative;
  border: 3px solid #000000;
  padding: 40px;
}
.cid-u4EwLKhuor .label {
  position: absolute;
  border-radius: 20px;
  background-color: #000000;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  font-family: "Josefin Sans";
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
}
@media (max-width: 991px) {
  .cid-u4EwLKhuor .text-wrapper {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .cid-u4EwLKhuor .card {
    height: 300px;
  }
}
.cid-u4EwLKhuor .mbr-section-title,
.cid-u4EwLKhuor .mbr-section-btn {
  color: #232323;
}
.cid-u4EwLKhuor .mbr-label {
  color: #e4d295;
}
.cid-u4Ex2Q6EQP {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #e48a1a, #232323);
}
.cid-u4Ex2Q6EQP .image-block {
  margin: auto;
}
.cid-u4Ex2Q6EQP figcaption {
  position: relative;
}
.cid-u4Ex2Q6EQP figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u4Ex2Q6EQP .image-block {
    width: 100% !important;
  }
}
.cid-u4Ex2Q6EQP DIV {
  text-align: left;
  color: #ffffff;
}
.cid-u4KzTq7shY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u4KzTq7shY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u4KzTq7shY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u4KzTq7shY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u4KzTq7shY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u4KzTq7shY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u4KzTq7shY .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u4KzTq7shY .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u4KzTq7shY .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u4KzTq7shY .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u4KzTq7shY .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u4KQFNIFFi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u4KQFNIFFi .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u4KQFNIFFi .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u4KQFNIFFi .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u4KQFNIFFi .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u4KQFNIFFi .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u4KQFNIFFi .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u4KQFNIFFi .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u4KQFNIFFi .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u4KQFNIFFi .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u4KQFNIFFi .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u4KIa9Jlmv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u4KIa9Jlmv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u4KIa9Jlmv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u4KIa9Jlmv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u4KIa9Jlmv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u4KIa9Jlmv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u4KIa9Jlmv .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u4KIa9Jlmv .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u4KIa9Jlmv .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u4KIa9Jlmv .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u4KIa9Jlmv .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u4Qwh0ollz {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #e48a1a, #232323);
}
.cid-u4Qwh0ollz .image-block {
  margin: auto;
}
.cid-u4Qwh0ollz figcaption {
  position: relative;
}
.cid-u4Qwh0ollz figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u4Qwh0ollz .image-block {
    width: 100% !important;
  }
}
.cid-u4Qwh0ollz DIV {
  text-align: center;
  color: #ffffff;
}
.cid-u4EnuptA4f {
  padding-top: 375px;
  background-image: url("../../../assets/images/mbr-1920x1277.jpg");
}
.cid-sCcMyaFtnJ {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-sCcMyaFtnJ .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCcMyaFtnJ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCcMyaFtnJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCcMyaFtnJ foot-menu-item {
  color: #cebfaf;
}
.cid-sCcMyaFtnJ .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-sK1sKm1htV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sK1sKm1htV .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sK1sKm1htV .container {
    padding: 0 ;
  }
}
.cid-sK1sKm1htV .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-sK1sKm1htV .navbar.opened {
  transition: all 0.3s;
}
.cid-sK1sKm1htV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sK1sKm1htV .navbar .navbar-logo img {
  width: auto;
}
.cid-sK1sKm1htV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sK1sKm1htV .navbar.collapsed {
  justify-content: center;
}
.cid-sK1sKm1htV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sK1sKm1htV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sK1sKm1htV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sK1sKm1htV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sK1sKm1htV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sK1sKm1htV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sK1sKm1htV .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-sK1sKm1htV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sK1sKm1htV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sK1sKm1htV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sK1sKm1htV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sK1sKm1htV .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-sK1sKm1htV .navbar.navbar-short {
  min-height: 110px;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sK1sKm1htV .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-sK1sKm1htV nav.navbar {
  position: fixed;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sK1sKm1htV .dropdown-item:hover,
.cid-sK1sKm1htV .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-sK1sKm1htV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sK1sKm1htV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sK1sKm1htV .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown-menu,
.cid-sK1sKm1htV .navbar.opened {
  background: #474141 !important;
}
.cid-sK1sKm1htV .nav-item:focus,
.cid-sK1sKm1htV .nav-link:focus {
  outline: none;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sK1sKm1htV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sK1sKm1htV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sK1sKm1htV .dropdown-item.active,
.cid-sK1sKm1htV .dropdown-item:active {
  background-color: transparent;
}
.cid-sK1sKm1htV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sK1sKm1htV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sK1sKm1htV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sK1sKm1htV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sK1sKm1htV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sK1sKm1htV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar {
    height: 70px;
  }
  .cid-sK1sKm1htV .navbar.opened {
    height: auto;
  }
  .cid-sK1sKm1htV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-sASku1dyto {
  background: #0f7699;
  background: linear-gradient(0deg, #cc2952, #0f7699);
}
.cid-sASku1dyto .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sASku1dyto figcaption {
  position: relative;
}
.cid-sASku1dyto figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sASku1dyto .image-block {
    width: 100% !important;
  }
}
.cid-sASku1dyto DIV {
  text-align: left;
}
.cid-u5vHTOfEvr {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u5vHTOfEvr .mbr-text,
.cid-u5vHTOfEvr blockquote {
  color: #767676;
}
.cid-u5vHTOfEvr .mbr-text {
  color: #e4d295;
}
.cid-u5vHTOfEvr .mbr-text P {
  text-align: left;
}
.cid-u5vIgi5emV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u5vIgi5emV .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u5vIgi5emV .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u5vIgi5emV .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u5vIgi5emV .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u5vIgi5emV .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u5vIgi5emV .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u5vIgi5emV .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u5vIgi5emV .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u5vIgi5emV .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u5vIgi5emV .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u5vHVkCoY4 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u5vHVkCoY4 .mbr-text,
.cid-u5vHVkCoY4 blockquote {
  color: #767676;
}
.cid-u5vHVkCoY4 .mbr-text {
  color: #e4d295;
}
.cid-u5vHVkCoY4 .mbr-text P {
  text-align: left;
}
.cid-udZgpbtYpl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-udZgpbtYpl .mbr-text,
.cid-udZgpbtYpl blockquote {
  color: #767676;
}
.cid-udZgpbtYpl .mbr-text {
  color: #b1a374;
}
.cid-udZgpbtYpl .mbr-text P {
  text-align: left;
}
.cid-sCF4dMrSdO {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sCF4dMrSdO .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sCF4dMrSdO .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCF4dMrSdO .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sCF4dMrSdO .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sCF4dMrSdO .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sCF4dMrSdO .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sCF4dMrSdO .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sCF4dMrSdO .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sCF4dMrSdO .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sCF4dMrSdO .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u5vBFoSO5Z {
  background: #c4bc3b;
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #232323, #c4bc3b);
}
.cid-u5vBFoSO5Z .image-block {
  margin: auto;
}
.cid-u5vBFoSO5Z figcaption {
  position: relative;
}
.cid-u5vBFoSO5Z figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u5vBFoSO5Z .image-block {
    width: 100% !important;
  }
}
.cid-u5vBFoSO5Z DIV {
  text-align: right;
  color: #232323;
}
.cid-u4QKSxDW0P {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u4QKSxDW0P .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u4QKSxDW0P .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u4QKSxDW0P .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u4QKSxDW0P .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u4QKSxDW0P .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u4QKSxDW0P .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u4QKSxDW0P .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u4QKSxDW0P .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u4QKSxDW0P .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u4QKSxDW0P .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u5vu1As0TK {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #c4bc3b, #232323);
}
.cid-u5vu1As0TK .image-block {
  margin: auto;
}
.cid-u5vu1As0TK figcaption {
  position: relative;
}
.cid-u5vu1As0TK figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u5vu1As0TK .image-block {
    width: 100% !important;
  }
}
.cid-u5vu1As0TK DIV {
  text-align: right;
  color: #232323;
}
.cid-u5vumwkuus {
  background-color: #232323;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-u5vumwkuus .row {
  align-items: center;
}
.cid-u5vumwkuus .text-wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #e4d295;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-u5vumwkuus .content {
  position: relative;
  border: 3px solid #000000;
  padding: 40px;
}
.cid-u5vumwkuus .label {
  position: absolute;
  border-radius: 20px;
  background-color: #000000;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  font-family: "Josefin Sans";
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
}
@media (max-width: 991px) {
  .cid-u5vumwkuus .text-wrapper {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .cid-u5vumwkuus .card {
    height: 300px;
  }
}
.cid-u5vumwkuus .mbr-section-title,
.cid-u5vumwkuus .mbr-section-btn {
  color: #232323;
}
.cid-u5vumwkuus .mbr-label {
  color: #e4d295;
}
.cid-u4QErXJuOO {
  background: #c4bc3b;
  padding-top: 30px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #232323, #c4bc3b);
}
.cid-u4QErXJuOO .image-block {
  margin: auto;
}
.cid-u4QErXJuOO figcaption {
  position: relative;
}
.cid-u4QErXJuOO figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u4QErXJuOO .image-block {
    width: 100% !important;
  }
}
.cid-u4QErXJuOO DIV {
  text-align: center;
  color: #ffffff;
}
.cid-u5vnjZoijw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u5vnjZoijw .mbr-text,
.cid-u5vnjZoijw blockquote {
  color: #767676;
}
.cid-u5vnjZoijw .mbr-text {
  color: #e4d295;
}
.cid-u5vnjZoijw .mbr-text P {
  text-align: left;
}
.cid-sCcMyaFtnJ {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-sCcMyaFtnJ .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCcMyaFtnJ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCcMyaFtnJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCcMyaFtnJ foot-menu-item {
  color: #cebfaf;
}
.cid-sCcMyaFtnJ .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-sK1sKm1htV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sK1sKm1htV .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sK1sKm1htV .container {
    padding: 0 ;
  }
}
.cid-sK1sKm1htV .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-sK1sKm1htV .navbar.opened {
  transition: all 0.3s;
}
.cid-sK1sKm1htV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sK1sKm1htV .navbar .navbar-logo img {
  width: auto;
}
.cid-sK1sKm1htV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sK1sKm1htV .navbar.collapsed {
  justify-content: center;
}
.cid-sK1sKm1htV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sK1sKm1htV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sK1sKm1htV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sK1sKm1htV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sK1sKm1htV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sK1sKm1htV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sK1sKm1htV .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-sK1sKm1htV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sK1sKm1htV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sK1sKm1htV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sK1sKm1htV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sK1sKm1htV .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-sK1sKm1htV .navbar.navbar-short {
  min-height: 110px;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sK1sKm1htV .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-sK1sKm1htV nav.navbar {
  position: fixed;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sK1sKm1htV .dropdown-item:hover,
.cid-sK1sKm1htV .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-sK1sKm1htV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sK1sKm1htV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sK1sKm1htV .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown-menu,
.cid-sK1sKm1htV .navbar.opened {
  background: #474141 !important;
}
.cid-sK1sKm1htV .nav-item:focus,
.cid-sK1sKm1htV .nav-link:focus {
  outline: none;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sK1sKm1htV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sK1sKm1htV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sK1sKm1htV .dropdown-item.active,
.cid-sK1sKm1htV .dropdown-item:active {
  background-color: transparent;
}
.cid-sK1sKm1htV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sK1sKm1htV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sK1sKm1htV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sK1sKm1htV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sK1sKm1htV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sK1sKm1htV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar {
    height: 70px;
  }
  .cid-sK1sKm1htV .navbar.opened {
    height: auto;
  }
  .cid-sK1sKm1htV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-szWn3lJ5qv {
  background: #0f7699;
  background: linear-gradient(0deg, #cc2952, #0f7699);
}
.cid-szWn3lJ5qv .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-szWn3lJ5qv figcaption {
  position: relative;
}
.cid-szWn3lJ5qv figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-szWn3lJ5qv .image-block {
    width: 100% !important;
  }
}
.cid-u5B6G4jp3W {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u5B6G4jp3W .mbr-text,
.cid-u5B6G4jp3W blockquote {
  color: #767676;
}
.cid-u5B6G4jp3W .mbr-text {
  color: #e4d295;
}
.cid-sCRpDCGK3X {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-sCRpDCGK3X .mbr-text,
.cid-sCRpDCGK3X blockquote {
  color: #767676;
}
.cid-sCRpDCGK3X .mbr-text {
  color: #e4d295;
}
.cid-sCX7OR73h7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sCX7OR73h7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sCX7OR73h7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCX7OR73h7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sCX7OR73h7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sCX7OR73h7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sCX7OR73h7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sCX7OR73h7 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sCX7OR73h7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sCX7OR73h7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uv2RW9LdRt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uv2RW9LdRt .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uv2RW9LdRt .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uv2RW9LdRt .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uv2RW9LdRt .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uv2RW9LdRt .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uv2RW9LdRt .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uv2RW9LdRt .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uv2RW9LdRt .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uv2RW9LdRt .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uv2RaQwUKR {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #767676, #232323);
}
.cid-uv2RaQwUKR .image-block {
  margin: auto;
}
.cid-uv2RaQwUKR figcaption {
  position: relative;
}
.cid-uv2RaQwUKR figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uv2RaQwUKR .image-block {
    width: 100% !important;
  }
}
.cid-uv2RaQwUKR DIV {
  text-align: left;
  color: #ffffff;
}
.cid-u5YgBJPeK2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u5YgBJPeK2 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u5YgBJPeK2 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u5YgBJPeK2 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u5YgBJPeK2 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u5YgBJPeK2 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u5YgBJPeK2 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u5YgBJPeK2 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u5YgBJPeK2 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u5YgBJPeK2 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u5YdhZwUdY {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #767676, #232323);
}
.cid-u5YdhZwUdY .image-block {
  margin: auto;
}
.cid-u5YdhZwUdY figcaption {
  position: relative;
}
.cid-u5YdhZwUdY figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u5YdhZwUdY .image-block {
    width: 100% !important;
  }
}
.cid-u5YdhZwUdY DIV {
  text-align: right;
  color: #232323;
}
.cid-sCcMyaFtnJ {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-sCcMyaFtnJ .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCcMyaFtnJ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCcMyaFtnJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCcMyaFtnJ foot-menu-item {
  color: #cebfaf;
}
.cid-sCcMyaFtnJ .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-sK1sKm1htV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sK1sKm1htV .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sK1sKm1htV .container {
    padding: 0 ;
  }
}
.cid-sK1sKm1htV .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-sK1sKm1htV .navbar.opened {
  transition: all 0.3s;
}
.cid-sK1sKm1htV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sK1sKm1htV .navbar .navbar-logo img {
  width: auto;
}
.cid-sK1sKm1htV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sK1sKm1htV .navbar.collapsed {
  justify-content: center;
}
.cid-sK1sKm1htV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sK1sKm1htV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sK1sKm1htV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sK1sKm1htV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sK1sKm1htV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sK1sKm1htV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sK1sKm1htV .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-sK1sKm1htV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sK1sKm1htV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sK1sKm1htV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sK1sKm1htV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sK1sKm1htV .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-sK1sKm1htV .navbar.navbar-short {
  min-height: 110px;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sK1sKm1htV .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-sK1sKm1htV nav.navbar {
  position: fixed;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sK1sKm1htV .dropdown-item:hover,
.cid-sK1sKm1htV .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-sK1sKm1htV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sK1sKm1htV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sK1sKm1htV .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown-menu,
.cid-sK1sKm1htV .navbar.opened {
  background: #474141 !important;
}
.cid-sK1sKm1htV .nav-item:focus,
.cid-sK1sKm1htV .nav-link:focus {
  outline: none;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sK1sKm1htV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sK1sKm1htV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sK1sKm1htV .dropdown-item.active,
.cid-sK1sKm1htV .dropdown-item:active {
  background-color: transparent;
}
.cid-sK1sKm1htV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sK1sKm1htV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sK1sKm1htV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sK1sKm1htV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sK1sKm1htV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sK1sKm1htV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar {
    height: 70px;
  }
  .cid-sK1sKm1htV .navbar.opened {
    height: auto;
  }
  .cid-sK1sKm1htV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-sCWwkPaPSy {
  background: #0f7699;
  background: linear-gradient(0deg, #cc2952, #0f7699);
}
.cid-sCWwkPaPSy .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sCWwkPaPSy figcaption {
  position: relative;
}
.cid-sCWwkPaPSy figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sCWwkPaPSy .image-block {
    width: 100% !important;
  }
}
.cid-sCWwkPaPSy DIV {
  color: #7fdbfd;
  text-align: right;
}
.cid-sCWws6IpAl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/niagara-falls-american-bridal-veil-falls-by-night-2000x1500.jpg");
}
.cid-sCWws6IpAl .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sCWws6IpAl .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sCWws6IpAl .photo-split {
  padding: 100px;
}
.cid-sCWws6IpAl .photo-split img {
  width: 100%;
}
.cid-sCWws6IpAl .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-sCWws6IpAl .counter-container ul {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sCWws6IpAl .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-sCWws6IpAl .wrap-block {
  padding: 3rem 3rem;
}
.cid-sCWws6IpAl .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-sCWws6IpAl .wrap-block ul li {
  display: inline-block;
}
.cid-sCWws6IpAl .wrap-block ul li span {
  text-align: center;
}
.cid-sCWws6IpAl .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-sCWws6IpAl .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sCWws6IpAl .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sCWws6IpAl .mbr-list,
.cid-sCWws6IpAl .social-media UL {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-sCWws6IpAl .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sCWws6IpAl .mbr-section-title,
  .cid-sCWws6IpAl .mbr-section-subtitle,
  .cid-sCWws6IpAl .mbr-text {
    text-align: center !important;
  }
  .cid-sCWws6IpAl .social-list {
    text-align: center !important;
  }
}
.cid-sCWws6IpAl .mbr-list,
.cid-sCWws6IpAl .social-media {
  color: #767676;
}
.cid-sCWws6IpAl .mbr-text {
  color: #e4d295;
}
.cid-sCWws6IpAl .mbr-section-subtitle {
  color: #b1a374;
}
.cid-sCWwsZPoIH {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sCWwsZPoIH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sCWwsZPoIH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCWwsZPoIH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sCWwsZPoIH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sCWwsZPoIH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sCWwsZPoIH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sCWwsZPoIH .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sCWwsZPoIH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sCWwsZPoIH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sCWwuYHLcD {
  padding-top: 585px;
  background-image: url("../../../assets/images/mwe-2000x684.jpg");
}
.cid-sCWww6qfaj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-sCWww6qfaj .mbr-section-title {
  text-align: center;
}
.cid-sCWww6qfaj .mbr-text {
  color: #e4d295;
  text-align: center;
}
.cid-sCWw8nwXdi {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-sCWw8nwXdi .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCWw8nwXdi .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCWw8nwXdi .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCWw8nwXdi .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCWw8nwXdi .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCWw8nwXdi .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCWw8nwXdi .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sCWw8nwXdi .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCWw8nwXdi .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCWw8nwXdi .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sCWw8nwXdi .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCWw8nwXdi .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCWw8nwXdi .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCWw8nwXdi .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCWw8nwXdi foot-menu-item {
  color: #cebfaf;
}
.cid-sCWw8nwXdi .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-sK1sKm1htV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sK1sKm1htV .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sK1sKm1htV .container {
    padding: 0 ;
  }
}
.cid-sK1sKm1htV .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-sK1sKm1htV .navbar.opened {
  transition: all 0.3s;
}
.cid-sK1sKm1htV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sK1sKm1htV .navbar .navbar-logo img {
  width: auto;
}
.cid-sK1sKm1htV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sK1sKm1htV .navbar.collapsed {
  justify-content: center;
}
.cid-sK1sKm1htV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sK1sKm1htV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sK1sKm1htV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sK1sKm1htV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sK1sKm1htV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sK1sKm1htV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sK1sKm1htV .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-sK1sKm1htV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sK1sKm1htV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sK1sKm1htV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sK1sKm1htV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sK1sKm1htV .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-sK1sKm1htV .navbar.navbar-short {
  min-height: 110px;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sK1sKm1htV .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-sK1sKm1htV nav.navbar {
  position: fixed;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sK1sKm1htV .dropdown-item:hover,
.cid-sK1sKm1htV .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-sK1sKm1htV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sK1sKm1htV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sK1sKm1htV .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown-menu,
.cid-sK1sKm1htV .navbar.opened {
  background: #474141 !important;
}
.cid-sK1sKm1htV .nav-item:focus,
.cid-sK1sKm1htV .nav-link:focus {
  outline: none;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sK1sKm1htV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sK1sKm1htV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sK1sKm1htV .dropdown-item.active,
.cid-sK1sKm1htV .dropdown-item:active {
  background-color: transparent;
}
.cid-sK1sKm1htV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sK1sKm1htV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sK1sKm1htV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sK1sKm1htV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sK1sKm1htV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sK1sKm1htV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar {
    height: 70px;
  }
  .cid-sK1sKm1htV .navbar.opened {
    height: auto;
  }
  .cid-sK1sKm1htV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-sHPZz9wqG4 {
  background: #0f7699;
  background: linear-gradient(0deg, #cc2952, #0f7699);
}
.cid-sHPZz9wqG4 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sHPZz9wqG4 figcaption {
  position: relative;
}
.cid-sHPZz9wqG4 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sHPZz9wqG4 .image-block {
    width: 100% !important;
  }
}
.cid-sHPZz9wqG4 DIV {
  text-align: left;
}
.cid-u4DLujfUbL {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u4DLujfUbL .mbr-text,
.cid-u4DLujfUbL blockquote {
  color: #767676;
}
.cid-u4DLujfUbL .mbr-text {
  color: #e4d295;
}
.cid-u4DKZyeMiw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
@media (max-width: 991px) {
  .cid-u4DKZyeMiw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u4DKZyeMiw .row {
  flex-direction: row-reverse;
}
.cid-u4DKZyeMiw img {
  width: 100%;
}
.cid-u4DKHo1ZFI {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u4DKHo1ZFI .mbr-text,
.cid-u4DKHo1ZFI blockquote {
  color: #767676;
}
.cid-u4DKHo1ZFI .mbr-text {
  color: #e4d295;
}
.cid-u4KTQzyJQq {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u4KTQzyJQq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u4KTQzyJQq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u4KTQzyJQq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u4KTQzyJQq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u4KTQzyJQq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u4KTQzyJQq .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u4KTQzyJQq .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u4KTQzyJQq .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u4KTQzyJQq .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u4KTQzyJQq .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-sHQAfHL5vw {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
@media (max-width: 991px) {
  .cid-sHQAfHL5vw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sHQAfHL5vw .row {
  flex-direction: row-reverse;
}
.cid-sHQAfHL5vw img {
  width: 100%;
}
.cid-u4DLJnAp0g {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u4DLJnAp0g .mbr-text,
.cid-u4DLJnAp0g blockquote {
  color: #767676;
}
.cid-u4DLJnAp0g .mbr-text {
  color: #e4d295;
}
.cid-sHPZzb5MOm {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-sHPZzb5MOm .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sHPZzb5MOm .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sHPZzb5MOm .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sHPZzb5MOm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sHPZzb5MOm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sHPZzb5MOm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sHPZzb5MOm .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sHPZzb5MOm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sHPZzb5MOm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sHPZzb5MOm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sHPZzb5MOm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sHPZzb5MOm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sHPZzb5MOm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sHPZzb5MOm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sHPZzb5MOm foot-menu-item {
  color: #cebfaf;
}
.cid-sHPZzb5MOm .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-sK1sKm1htV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sK1sKm1htV .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sK1sKm1htV .container {
    padding: 0 ;
  }
}
.cid-sK1sKm1htV .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-sK1sKm1htV .navbar.opened {
  transition: all 0.3s;
}
.cid-sK1sKm1htV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sK1sKm1htV .navbar .navbar-logo img {
  width: auto;
}
.cid-sK1sKm1htV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sK1sKm1htV .navbar.collapsed {
  justify-content: center;
}
.cid-sK1sKm1htV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sK1sKm1htV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sK1sKm1htV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sK1sKm1htV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sK1sKm1htV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sK1sKm1htV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sK1sKm1htV .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-sK1sKm1htV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sK1sKm1htV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sK1sKm1htV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sK1sKm1htV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sK1sKm1htV .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-sK1sKm1htV .navbar.navbar-short {
  min-height: 110px;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sK1sKm1htV .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-sK1sKm1htV nav.navbar {
  position: fixed;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sK1sKm1htV .dropdown-item:hover,
.cid-sK1sKm1htV .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-sK1sKm1htV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sK1sKm1htV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sK1sKm1htV .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown-menu,
.cid-sK1sKm1htV .navbar.opened {
  background: #474141 !important;
}
.cid-sK1sKm1htV .nav-item:focus,
.cid-sK1sKm1htV .nav-link:focus {
  outline: none;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sK1sKm1htV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sK1sKm1htV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sK1sKm1htV .dropdown-item.active,
.cid-sK1sKm1htV .dropdown-item:active {
  background-color: transparent;
}
.cid-sK1sKm1htV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sK1sKm1htV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sK1sKm1htV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sK1sKm1htV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sK1sKm1htV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sK1sKm1htV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar {
    height: 70px;
  }
  .cid-sK1sKm1htV .navbar.opened {
    height: auto;
  }
  .cid-sK1sKm1htV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-sK1z0c0GPc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sK1z0c0GPc .mbr-text,
.cid-sK1z0c0GPc blockquote {
  color: #767676;
}
.cid-sK1z0c0GPc .mbr-text {
  color: #e4d295;
}
.cid-u2EicVv2Re {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #474141;
}
.cid-u2EicVv2Re .mbr-text,
.cid-u2EicVv2Re blockquote {
  color: #767676;
}
.cid-udZa4yfebo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #474141;
}
.cid-udZa4yfebo .mbr-text,
.cid-udZa4yfebo blockquote {
  color: #767676;
}
.cid-uddQ3mwZRb {
  padding-top: 28rem;
  padding-bottom: 18rem;
  background-image: url("../../../assets/images/intro-homepage-2000x834.jpg");
}
.cid-uddQ3mwZRb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uddQ3mwZRb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uddQ3mwZRb .mbr-section-title {
  color: #d0eabc;
  text-align: center;
}
.cid-uddQ3mwZRb .mbr-section-subtitle {
  color: #d0eabc;
  margin-top: 0px;
  text-align: center;
}
.cid-uddQ3mwZRb .mbr-text {
  color: #FFFFFF;
  margin-top: 0px;
}
.cid-uddQ3mwZRb .mbr-section-btn {
  margin-top: 0px;
}
.cid-uddQ3mwZRb .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-uddQ3mwZRb .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-szQxNCfp15 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/titel5-2-2000x1500.jpg");
}
@media (max-width: 1000px) {
  .cid-szQxNCfp15 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-szQxNCfp15 {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
}
@media (min-width: 992px) {
  .cid-szQxNCfp15 .card-wrapper {
    padding-right: 15rem;
  }
  .cid-szQxNCfp15 .image-wrapper {
    padding-left: 20rem;
  }
}
@media (min-width: 992px) {
  .cid-szQxNCfp15 .card-wrapper {
    padding-left: 0rem;
  }
  .cid-szQxNCfp15 .image-wrapper {
    padding-right: 1rem;
  }
}
.cid-szQxNCfp15 .row {
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .cid-szQxNCfp15 .card {
    margin-bottom: 2rem!important;
  }
}
@media (max-width: 767px) {
  .cid-szQxNCfp15 .link-wrap {
    align-items: right;
  }
}
.cid-szQxNCfp15 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-szQxNCfp15 .card-title,
.cid-szQxNCfp15 .card-box {
  text-align: left;
  color: #232323;
}
.cid-szQxNCfp15 .mbr-text,
.cid-szQxNCfp15 .link-wrap,
.cid-szQxNCfp15 .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-szQxNCfp15 .card-title,
.cid-szQxNCfp15 .mbr-text,
.cid-szQxNCfp15 .mbr-section-btn {
  text-align: left;
  color: #e4d295;
}
.cid-sbBd3C8aZO {
  background: #232323;
}
.cid-sbBd3C8aZO .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sbBd3C8aZO figcaption {
  position: relative;
}
.cid-sbBd3C8aZO figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sbBd3C8aZO .image-block {
    width: 100% !important;
  }
}
.cid-sbBd3C8aZO DIV {
  color: #e4d295;
  text-align: left;
}
.cid-sCcMyaFtnJ {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-sCcMyaFtnJ .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCcMyaFtnJ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCcMyaFtnJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCcMyaFtnJ foot-menu-item {
  color: #cebfaf;
}
.cid-sCcMyaFtnJ .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u0StEIIOG2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u0StEIIOG2 .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u0StEIIOG2 .container {
    padding: 0 ;
  }
}
.cid-u0StEIIOG2 .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u0StEIIOG2 .navbar.opened {
  transition: all 0.3s;
}
.cid-u0StEIIOG2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0StEIIOG2 .navbar .navbar-logo img {
  width: auto;
}
.cid-u0StEIIOG2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0StEIIOG2 .navbar.collapsed {
  justify-content: center;
}
.cid-u0StEIIOG2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0StEIIOG2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0StEIIOG2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u0StEIIOG2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0StEIIOG2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0StEIIOG2 .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-u0StEIIOG2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0StEIIOG2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0StEIIOG2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0StEIIOG2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0StEIIOG2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0StEIIOG2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0StEIIOG2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0StEIIOG2 .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-u0StEIIOG2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0StEIIOG2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u0StEIIOG2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0StEIIOG2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0StEIIOG2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0StEIIOG2 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u0StEIIOG2 .navbar.navbar-short {
  min-height: 110px;
}
.cid-u0StEIIOG2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u0StEIIOG2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u0StEIIOG2 .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u0StEIIOG2 nav.navbar {
  position: fixed;
}
.cid-u0StEIIOG2 .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-u0StEIIOG2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u0StEIIOG2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u0StEIIOG2 .dropdown-item:hover,
.cid-u0StEIIOG2 .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u0StEIIOG2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u0StEIIOG2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u0StEIIOG2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u0StEIIOG2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0StEIIOG2 .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0StEIIOG2 .dropdown-menu,
.cid-u0StEIIOG2 .navbar.opened {
  background: #474141 !important;
}
.cid-u0StEIIOG2 .nav-item:focus,
.cid-u0StEIIOG2 .nav-link:focus {
  outline: none;
}
.cid-u0StEIIOG2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0StEIIOG2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0StEIIOG2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0StEIIOG2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0StEIIOG2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0StEIIOG2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0StEIIOG2 .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-u0StEIIOG2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0StEIIOG2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0StEIIOG2 .dropdown-item.active,
.cid-u0StEIIOG2 .dropdown-item:active {
  background-color: transparent;
}
.cid-u0StEIIOG2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0StEIIOG2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0StEIIOG2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0StEIIOG2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u0StEIIOG2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0StEIIOG2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0StEIIOG2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u0StEIIOG2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0StEIIOG2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u0StEIIOG2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u0StEIIOG2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0StEIIOG2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0StEIIOG2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0StEIIOG2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0StEIIOG2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0StEIIOG2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0StEIIOG2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0StEIIOG2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0StEIIOG2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u0StEIIOG2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0StEIIOG2 .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-u0StEIIOG2 .navbar {
    height: 70px;
  }
  .cid-u0StEIIOG2 .navbar.opened {
    height: auto;
  }
  .cid-u0StEIIOG2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0StEIIOG2 .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u0StEIIOG2 .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u0StEJ2IMd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #474141;
}
.cid-u0StEJ2IMd .mbr-text,
.cid-u0StEJ2IMd blockquote {
  color: #767676;
}
.cid-u0StEJaEgJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #474141;
}
.cid-u0StEJaEgJ .mbr-text,
.cid-u0StEJaEgJ blockquote {
  color: #767676;
}
.cid-u0StEJhqqU {
  background: #f9e2c5;
  background: linear-gradient(0deg, #fbaa8f, #f9e2c5);
}
.cid-u0StEJhqqU .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u0StEJhqqU figcaption {
  position: relative;
}
.cid-u0StEJhqqU figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u0StEJhqqU .image-block {
    width: 100% !important;
  }
}
.cid-u0StEJhqqU DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u1m5eP0pzw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-u1m5eP0pzw .mbr-section-title {
  text-align: center;
}
.cid-u1m5eP0pzw .mbr-text {
  color: #d0eabc;
  text-align: center;
}
.cid-u1JHOZ05WY {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u1JHOZ05WY .mbr-text,
.cid-u1JHOZ05WY blockquote {
  color: #767676;
}
.cid-u1JHOZ05WY .mbr-text {
  color: #e4d295;
}
.cid-u1JHOZ05WY .mbr-text P {
  text-align: left;
}
.cid-u2EkzS6J88 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-u2EkzS6J88 .mbr-text,
.cid-u2EkzS6J88 blockquote {
  color: #767676;
}
.cid-u2EkzS6J88 .mbr-text {
  color: #e4d295;
}
.cid-u12RXRmwo2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u12RXRmwo2 .mbr-text,
.cid-u12RXRmwo2 blockquote {
  color: #767676;
}
.cid-u12RXRmwo2 .mbr-text {
  color: #e4d295;
}
.cid-u1md8gkdNr {
  background-color: #232323;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-u1md8gkdNr .row {
  align-items: center;
}
.cid-u1md8gkdNr .text-wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #e4d295;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-u1md8gkdNr .content {
  position: relative;
  border: 3px solid #000000;
  padding: 40px;
}
.cid-u1md8gkdNr .label {
  position: absolute;
  border-radius: 20px;
  background-color: #000000;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  font-family: "Josefin Sans";
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
}
@media (max-width: 991px) {
  .cid-u1md8gkdNr .text-wrapper {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .cid-u1md8gkdNr .card {
    height: 300px;
  }
}
.cid-u1md8gkdNr .mbr-section-title,
.cid-u1md8gkdNr .mbr-section-btn {
  color: #232323;
}
.cid-u1md8gkdNr .mbr-label {
  text-align: center;
  color: #e4d295;
}
.cid-u0StEKwLCl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u0StEKwLCl .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u0StEKwLCl .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0StEKwLCl .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u0StEKwLCl .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u0StEKwLCl .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u0StEKwLCl .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u0StEKwLCl .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u0StEKwLCl .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u0StEKwLCl .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uazWAXHhPy {
  background-color: #232323;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-uazWAXHhPy .row {
  align-items: center;
}
.cid-uazWAXHhPy .text-wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #e4d295;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uazWAXHhPy .content {
  position: relative;
  border: 3px solid #000000;
  padding: 40px;
}
.cid-uazWAXHhPy .label {
  position: absolute;
  border-radius: 20px;
  background-color: #000000;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  font-family: "Josefin Sans";
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
}
@media (max-width: 991px) {
  .cid-uazWAXHhPy .text-wrapper {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .cid-uazWAXHhPy .card {
    height: 300px;
  }
}
.cid-uazWAXHhPy .mbr-section-title,
.cid-uazWAXHhPy .mbr-section-btn {
  color: #232323;
}
.cid-uazWAXHhPy .mbr-label {
  text-align: center;
  color: #e4d295;
}
.cid-uazWGO3WzA {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uazWGO3WzA .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uazWGO3WzA .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uazWGO3WzA .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uazWGO3WzA .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uazWGO3WzA .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uazWGO3WzA .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uazWGO3WzA .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-uazWGO3WzA .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uazWGO3WzA .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uazWGO3WzA .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u12RPTs1gw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u12RPTs1gw .mbr-text,
.cid-u12RPTs1gw blockquote {
  color: #767676;
}
.cid-u12RPTs1gw .mbr-text {
  color: #e4d295;
}
.cid-u0StEJz7RE {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u0StEJz7RE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u0StEJz7RE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0StEJz7RE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u0StEJz7RE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u0StEJz7RE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u0StEJz7RE .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u0StEJz7RE .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u0StEJz7RE .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u0StEJz7RE .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u0StEJz7RE .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u0StEKUuUg {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u0StEKUuUg .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u0StEKUuUg .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u0StEKUuUg .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u0StEKUuUg .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u0StEKUuUg .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u0StEKUuUg .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u0StEKUuUg .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u0StEKUuUg .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u0StEKUuUg .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u0StEKUuUg .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u0StEKUuUg .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u0StEKUuUg .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u0StEKUuUg .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u0StEKUuUg .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u0StEKUuUg foot-menu-item {
  color: #cebfaf;
}
.cid-u0StEKUuUg .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u0SGcg9i3U {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u0SGcg9i3U .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u0SGcg9i3U .container {
    padding: 0 ;
  }
}
.cid-u0SGcg9i3U .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u0SGcg9i3U .navbar.opened {
  transition: all 0.3s;
}
.cid-u0SGcg9i3U .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0SGcg9i3U .navbar .navbar-logo img {
  width: auto;
}
.cid-u0SGcg9i3U .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0SGcg9i3U .navbar.collapsed {
  justify-content: center;
}
.cid-u0SGcg9i3U .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0SGcg9i3U .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0SGcg9i3U .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u0SGcg9i3U .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0SGcg9i3U .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0SGcg9i3U .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-u0SGcg9i3U .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0SGcg9i3U .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0SGcg9i3U .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0SGcg9i3U .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0SGcg9i3U .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0SGcg9i3U .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0SGcg9i3U .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0SGcg9i3U .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-u0SGcg9i3U .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0SGcg9i3U .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u0SGcg9i3U .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0SGcg9i3U .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0SGcg9i3U .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0SGcg9i3U .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u0SGcg9i3U .navbar.navbar-short {
  min-height: 110px;
}
.cid-u0SGcg9i3U .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u0SGcg9i3U .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u0SGcg9i3U .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u0SGcg9i3U nav.navbar {
  position: fixed;
}
.cid-u0SGcg9i3U .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-u0SGcg9i3U .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u0SGcg9i3U .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u0SGcg9i3U .dropdown-item:hover,
.cid-u0SGcg9i3U .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u0SGcg9i3U .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u0SGcg9i3U .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u0SGcg9i3U .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u0SGcg9i3U .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0SGcg9i3U .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0SGcg9i3U .dropdown-menu,
.cid-u0SGcg9i3U .navbar.opened {
  background: #474141 !important;
}
.cid-u0SGcg9i3U .nav-item:focus,
.cid-u0SGcg9i3U .nav-link:focus {
  outline: none;
}
.cid-u0SGcg9i3U .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0SGcg9i3U .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0SGcg9i3U .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0SGcg9i3U .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0SGcg9i3U .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0SGcg9i3U .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0SGcg9i3U .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-u0SGcg9i3U .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0SGcg9i3U .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0SGcg9i3U .dropdown-item.active,
.cid-u0SGcg9i3U .dropdown-item:active {
  background-color: transparent;
}
.cid-u0SGcg9i3U .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0SGcg9i3U .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0SGcg9i3U .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0SGcg9i3U .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u0SGcg9i3U .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0SGcg9i3U .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0SGcg9i3U ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u0SGcg9i3U .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0SGcg9i3U button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u0SGcg9i3U button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u0SGcg9i3U button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0SGcg9i3U button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0SGcg9i3U button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0SGcg9i3U button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0SGcg9i3U nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0SGcg9i3U nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0SGcg9i3U nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0SGcg9i3U nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0SGcg9i3U .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u0SGcg9i3U a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0SGcg9i3U .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-u0SGcg9i3U .navbar {
    height: 70px;
  }
  .cid-u0SGcg9i3U .navbar.opened {
    height: auto;
  }
  .cid-u0SGcg9i3U .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0SGcg9i3U .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u0SGcg9i3U .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u0SGcgtIn6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #474141;
}
.cid-u0SGcgtIn6 .mbr-text,
.cid-u0SGcgtIn6 blockquote {
  color: #767676;
}
.cid-u0SGcgBCe3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #474141;
}
.cid-u0SGcgBCe3 .mbr-text,
.cid-u0SGcgBCe3 blockquote {
  color: #767676;
}
.cid-u0SGcgKzzv {
  background: #f9e2c5;
  background: linear-gradient(0deg, #fbaa8f, #f9e2c5);
}
.cid-u0SGcgKzzv .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u0SGcgKzzv figcaption {
  position: relative;
}
.cid-u0SGcgKzzv figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u0SGcgKzzv .image-block {
    width: 100% !important;
  }
}
.cid-u0SGcgKzzv DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u1DuxDtDGF {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u1DuxDtDGF .mbr-text,
.cid-u1DuxDtDGF blockquote {
  color: #767676;
}
.cid-u1DuxDtDGF .mbr-text {
  color: #e4d295;
}
.cid-u2yv7n9Ht8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u2yv7n9Ht8 .mbr-text,
.cid-u2yv7n9Ht8 blockquote {
  color: #767676;
}
.cid-u2yv7n9Ht8 .mbr-text {
  color: #e4d295;
}
.cid-u8GIEHNmS0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u8GIEHNmS0 .card-box {
  padding: 0 2rem;
}
.cid-u8GIEHNmS0 .mbr-section-btn {
  padding-top: 1rem;
}
.cid-u8GIEHNmS0 .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-u8GIEHNmS0 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-u8GIEHNmS0 p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-u8GIEHNmS0 .mbr-text {
  color: #767676;
}
.cid-u8GIEHNmS0 .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #f9e2c5;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-u8GIEHNmS0 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u8GIEHNmS0 .card-title {
  text-align: center;
}
.cid-u0SGchoHiY {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u0SGchoHiY .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u0SGchoHiY .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u0SGchoHiY .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u0SGchoHiY .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u0SGchoHiY .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u0SGchoHiY .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u0SGchoHiY .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u0SGchoHiY .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u0SGchoHiY .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u0SGchoHiY .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u0SGchoHiY .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u0SGchoHiY .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u0SGchoHiY .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u0SGchoHiY .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u0SGchoHiY foot-menu-item {
  color: #cebfaf;
}
.cid-u0SGchoHiY .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-sK1sKm1htV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sK1sKm1htV .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sK1sKm1htV .container {
    padding: 0 ;
  }
}
.cid-sK1sKm1htV .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-sK1sKm1htV .navbar.opened {
  transition: all 0.3s;
}
.cid-sK1sKm1htV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sK1sKm1htV .navbar .navbar-logo img {
  width: auto;
}
.cid-sK1sKm1htV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sK1sKm1htV .navbar.collapsed {
  justify-content: center;
}
.cid-sK1sKm1htV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sK1sKm1htV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sK1sKm1htV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sK1sKm1htV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sK1sKm1htV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sK1sKm1htV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sK1sKm1htV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sK1sKm1htV .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-sK1sKm1htV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sK1sKm1htV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sK1sKm1htV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sK1sKm1htV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sK1sKm1htV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sK1sKm1htV .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-sK1sKm1htV .navbar.navbar-short {
  min-height: 110px;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sK1sKm1htV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sK1sKm1htV .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-sK1sKm1htV nav.navbar {
  position: fixed;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sK1sKm1htV .dropdown-item:hover,
.cid-sK1sKm1htV .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-sK1sKm1htV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sK1sKm1htV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sK1sKm1htV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sK1sKm1htV .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown-menu,
.cid-sK1sKm1htV .navbar.opened {
  background: #474141 !important;
}
.cid-sK1sKm1htV .nav-item:focus,
.cid-sK1sKm1htV .nav-link:focus {
  outline: none;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sK1sKm1htV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sK1sKm1htV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sK1sKm1htV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sK1sKm1htV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sK1sKm1htV .dropdown-item.active,
.cid-sK1sKm1htV .dropdown-item:active {
  background-color: transparent;
}
.cid-sK1sKm1htV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sK1sKm1htV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-sK1sKm1htV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sK1sKm1htV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sK1sKm1htV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sK1sKm1htV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sK1sKm1htV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sK1sKm1htV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sK1sKm1htV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sK1sKm1htV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sK1sKm1htV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sK1sKm1htV .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-sK1sKm1htV .navbar {
    height: 70px;
  }
  .cid-sK1sKm1htV .navbar.opened {
    height: auto;
  }
  .cid-sK1sKm1htV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sK1sKm1htV .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u0ZnpdkCkK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u0ZnpdkCkK .mbr-text,
.cid-u0ZnpdkCkK blockquote {
  color: #767676;
}
.cid-u1eJL2HMzO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u1eJL2HMzO .mbr-text,
.cid-u1eJL2HMzO blockquote {
  color: #767676;
}
.cid-u0ZmU4Iqyf {
  background: #f7ab4a;
}
.cid-u0ZmU4Iqyf .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u0ZmU4Iqyf figcaption {
  position: relative;
}
.cid-u0ZmU4Iqyf figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u0ZmU4Iqyf .image-block {
    width: 100% !important;
  }
}
.cid-u0ZmU4Iqyf DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u1lSmjHsit {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-u1lSmjHsit .mbr-section-title {
  text-align: center;
}
.cid-u1lSmjHsit .mbr-text {
  color: #d0eabc;
  text-align: center;
}
.cid-u13rtKzWti {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u13rtKzWti .mbr-text,
.cid-u13rtKzWti blockquote {
  color: #767676;
}
.cid-u13rtKzWti .mbr-text {
  color: #b1a374;
}
.cid-u13rtKzWti .mbr-text P {
  text-align: left;
}
.cid-u0YJXjLXXM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u0YJXjLXXM .card-box {
  padding: 0 2rem;
}
.cid-u0YJXjLXXM .mbr-section-btn {
  padding-top: 1rem;
}
.cid-u0YJXjLXXM .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-u0YJXjLXXM h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-u0YJXjLXXM p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-u0YJXjLXXM .mbr-text {
  color: #767676;
}
.cid-u0YJXjLXXM .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #f9e2c5;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-u0YJXjLXXM .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u0YJXjLXXM .card-title {
  text-align: center;
}
.cid-u0YNQN0OQV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u0YNQN0OQV .card-box {
  padding: 0 2rem;
}
.cid-u0YNQN0OQV .mbr-section-btn {
  padding-top: 1rem;
}
.cid-u0YNQN0OQV .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-u0YNQN0OQV h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-u0YNQN0OQV p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-u0YNQN0OQV .mbr-text {
  color: #767676;
}
.cid-u0YNQN0OQV .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #f9e2c5;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-u0YNQN0OQV .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u0YNQN0OQV .card-title {
  text-align: center;
}
.cid-sCcMyaFtnJ {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-sCcMyaFtnJ .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCcMyaFtnJ .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCcMyaFtnJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCcMyaFtnJ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCcMyaFtnJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sCcMyaFtnJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCcMyaFtnJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCcMyaFtnJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCcMyaFtnJ foot-menu-item {
  color: #cebfaf;
}
.cid-sCcMyaFtnJ .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u0YSQMThTr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u0YSQMThTr .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u0YSQMThTr .container {
    padding: 0 ;
  }
}
.cid-u0YSQMThTr .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u0YSQMThTr .navbar.opened {
  transition: all 0.3s;
}
.cid-u0YSQMThTr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0YSQMThTr .navbar .navbar-logo img {
  width: auto;
}
.cid-u0YSQMThTr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0YSQMThTr .navbar.collapsed {
  justify-content: center;
}
.cid-u0YSQMThTr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0YSQMThTr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0YSQMThTr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u0YSQMThTr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0YSQMThTr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0YSQMThTr .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-u0YSQMThTr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0YSQMThTr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0YSQMThTr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0YSQMThTr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0YSQMThTr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0YSQMThTr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0YSQMThTr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0YSQMThTr .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-u0YSQMThTr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0YSQMThTr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u0YSQMThTr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0YSQMThTr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0YSQMThTr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0YSQMThTr .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u0YSQMThTr .navbar.navbar-short {
  min-height: 110px;
}
.cid-u0YSQMThTr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u0YSQMThTr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u0YSQMThTr .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u0YSQMThTr nav.navbar {
  position: fixed;
}
.cid-u0YSQMThTr .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-u0YSQMThTr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u0YSQMThTr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u0YSQMThTr .dropdown-item:hover,
.cid-u0YSQMThTr .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u0YSQMThTr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u0YSQMThTr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u0YSQMThTr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u0YSQMThTr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0YSQMThTr .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0YSQMThTr .dropdown-menu,
.cid-u0YSQMThTr .navbar.opened {
  background: #474141 !important;
}
.cid-u0YSQMThTr .nav-item:focus,
.cid-u0YSQMThTr .nav-link:focus {
  outline: none;
}
.cid-u0YSQMThTr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0YSQMThTr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0YSQMThTr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0YSQMThTr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0YSQMThTr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0YSQMThTr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0YSQMThTr .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-u0YSQMThTr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0YSQMThTr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0YSQMThTr .dropdown-item.active,
.cid-u0YSQMThTr .dropdown-item:active {
  background-color: transparent;
}
.cid-u0YSQMThTr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0YSQMThTr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0YSQMThTr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0YSQMThTr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u0YSQMThTr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0YSQMThTr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0YSQMThTr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u0YSQMThTr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0YSQMThTr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u0YSQMThTr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u0YSQMThTr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0YSQMThTr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0YSQMThTr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0YSQMThTr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0YSQMThTr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0YSQMThTr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0YSQMThTr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0YSQMThTr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0YSQMThTr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u0YSQMThTr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0YSQMThTr .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-u0YSQMThTr .navbar {
    height: 70px;
  }
  .cid-u0YSQMThTr .navbar.opened {
    height: auto;
  }
  .cid-u0YSQMThTr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0YSQMThTr .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u0YSQMThTr .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u0YSQNefzE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #474141;
}
.cid-u0YSQNefzE .mbr-text,
.cid-u0YSQNefzE blockquote {
  color: #767676;
}
.cid-u0YSQNmggp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #474141;
}
.cid-u0YSQNmggp .mbr-text,
.cid-u0YSQNmggp blockquote {
  color: #767676;
}
.cid-u0YSQNuTMB {
  background: #f9e2c5;
  background: linear-gradient(0deg, #fbaa8f, #f9e2c5);
}
.cid-u0YSQNuTMB .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u0YSQNuTMB figcaption {
  position: relative;
}
.cid-u0YSQNuTMB figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u0YSQNuTMB .image-block {
    width: 100% !important;
  }
}
.cid-u0YSQNuTMB DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u1OT1PWfP0 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u1OT1PWfP0 .mbr-text,
.cid-u1OT1PWfP0 blockquote {
  color: #767676;
}
.cid-u1OT1PWfP0 .mbr-text {
  color: #e4d295;
}
.cid-u0YSQNDhau {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-u0YSQNDhau .mbr-text,
.cid-u0YSQNDhau blockquote {
  color: #767676;
}
.cid-u0YSQNDhau .mbr-text {
  color: #e4d295;
}
.cid-u0YSQNOUEp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u0YSQNOUEp .mbr-text,
.cid-u0YSQNOUEp blockquote {
  color: #767676;
}
.cid-u0YSQNOUEp .mbr-text {
  color: #e4d295;
}
.cid-u0YSQNWD3w {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u0YSQNWD3w .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u0YSQNWD3w .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0YSQNWD3w .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u0YSQNWD3w .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u0YSQNWD3w .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u0YSQNWD3w .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u0YSQNWD3w .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-u0YSQNWD3w .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u0YSQNWD3w .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u0YSQNWD3w .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u0YSQOdYH6 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u0YSQOdYH6 .mbr-text,
.cid-u0YSQOdYH6 blockquote {
  color: #767676;
}
.cid-u0YSQOdYH6 .mbr-text {
  color: #e4d295;
}
.cid-u0YSQOmIOn {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u0YSQOmIOn .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u0YSQOmIOn .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0YSQOmIOn .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u0YSQOmIOn .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u0YSQOmIOn .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u0YSQOmIOn .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u0YSQOmIOn .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u0YSQOmIOn .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u0YSQOmIOn .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u0YSQOmIOn .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-uaAcajwhHe {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #d0eabc, #232323);
}
.cid-uaAcajwhHe .image-block {
  margin: auto;
}
.cid-uaAcajwhHe figcaption {
  position: relative;
}
.cid-uaAcajwhHe figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uaAcajwhHe .image-block {
    width: 100% !important;
  }
}
.cid-uaAcajwhHe DIV {
  text-align: right;
  color: #232323;
}
.cid-u8B1wJS3F5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u8B1wJS3F5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u8B1wJS3F5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u8B1wJS3F5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u8B1wJS3F5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u8B1wJS3F5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u8B1wJS3F5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u8B1wJS3F5 .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u8B1wJS3F5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u8B1wJS3F5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u8B1wJS3F5 .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u8B7buBYpG {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #daf59a, #232323);
}
.cid-u8B7buBYpG .image-block {
  margin: auto;
}
.cid-u8B7buBYpG figcaption {
  position: relative;
}
.cid-u8B7buBYpG figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u8B7buBYpG .image-block {
    width: 100% !important;
  }
}
.cid-u8B7buBYpG DIV {
  text-align: right;
  color: #232323;
}
.cid-u0YSQOIERv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u0YSQOIERv .mbr-text,
.cid-u0YSQOIERv blockquote {
  color: #767676;
}
.cid-u0YSQOIERv .mbr-text {
  color: #e4d295;
}
.cid-u6CZTMoRLO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u6CZTMoRLO .mbr-text,
.cid-u6CZTMoRLO blockquote {
  color: #767676;
}
.cid-u6CZTMoRLO .mbr-text {
  color: #e4d295;
}
.cid-u0YSQOV9g1 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u0YSQOV9g1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u0YSQOV9g1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0YSQOV9g1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u0YSQOV9g1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u0YSQOV9g1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u0YSQOV9g1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u0YSQOV9g1 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u0YSQOV9g1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u0YSQOV9g1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u0YSQOV9g1 .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u0YSQP6KEo {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u0YSQP6KEo .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u0YSQP6KEo .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u0YSQP6KEo .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u0YSQP6KEo .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u0YSQP6KEo .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u0YSQP6KEo .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u0YSQP6KEo .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u0YSQP6KEo .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u0YSQP6KEo .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u0YSQP6KEo .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u0YSQP6KEo .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u0YSQP6KEo .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u0YSQP6KEo .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u0YSQP6KEo .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u0YSQP6KEo foot-menu-item {
  color: #cebfaf;
}
.cid-u0YSQP6KEo .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u0YTd68BiA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u0YTd68BiA .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u0YTd68BiA .container {
    padding: 0 ;
  }
}
.cid-u0YTd68BiA .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u0YTd68BiA .navbar.opened {
  transition: all 0.3s;
}
.cid-u0YTd68BiA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0YTd68BiA .navbar .navbar-logo img {
  width: auto;
}
.cid-u0YTd68BiA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0YTd68BiA .navbar.collapsed {
  justify-content: center;
}
.cid-u0YTd68BiA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0YTd68BiA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0YTd68BiA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u0YTd68BiA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0YTd68BiA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0YTd68BiA .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-u0YTd68BiA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0YTd68BiA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0YTd68BiA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0YTd68BiA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0YTd68BiA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0YTd68BiA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0YTd68BiA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0YTd68BiA .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-u0YTd68BiA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0YTd68BiA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u0YTd68BiA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0YTd68BiA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0YTd68BiA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0YTd68BiA .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u0YTd68BiA .navbar.navbar-short {
  min-height: 110px;
}
.cid-u0YTd68BiA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u0YTd68BiA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u0YTd68BiA .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u0YTd68BiA nav.navbar {
  position: fixed;
}
.cid-u0YTd68BiA .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-u0YTd68BiA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u0YTd68BiA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u0YTd68BiA .dropdown-item:hover,
.cid-u0YTd68BiA .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u0YTd68BiA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u0YTd68BiA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u0YTd68BiA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u0YTd68BiA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0YTd68BiA .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0YTd68BiA .dropdown-menu,
.cid-u0YTd68BiA .navbar.opened {
  background: #474141 !important;
}
.cid-u0YTd68BiA .nav-item:focus,
.cid-u0YTd68BiA .nav-link:focus {
  outline: none;
}
.cid-u0YTd68BiA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0YTd68BiA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0YTd68BiA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0YTd68BiA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0YTd68BiA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0YTd68BiA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0YTd68BiA .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-u0YTd68BiA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0YTd68BiA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0YTd68BiA .dropdown-item.active,
.cid-u0YTd68BiA .dropdown-item:active {
  background-color: transparent;
}
.cid-u0YTd68BiA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0YTd68BiA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0YTd68BiA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0YTd68BiA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u0YTd68BiA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0YTd68BiA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0YTd68BiA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u0YTd68BiA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0YTd68BiA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u0YTd68BiA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u0YTd68BiA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0YTd68BiA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0YTd68BiA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0YTd68BiA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0YTd68BiA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0YTd68BiA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0YTd68BiA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0YTd68BiA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0YTd68BiA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u0YTd68BiA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0YTd68BiA .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-u0YTd68BiA .navbar {
    height: 70px;
  }
  .cid-u0YTd68BiA .navbar.opened {
    height: auto;
  }
  .cid-u0YTd68BiA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0YTd68BiA .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u0YTd68BiA .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u0YTd6tJd5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #474141;
}
.cid-u0YTd6tJd5 .mbr-text,
.cid-u0YTd6tJd5 blockquote {
  color: #767676;
}
.cid-u0YTd6B0Yt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #474141;
}
.cid-u0YTd6B0Yt .mbr-text,
.cid-u0YTd6B0Yt blockquote {
  color: #767676;
}
.cid-u0YTd6JDvY {
  background: #f9e2c5;
  background: linear-gradient(0deg, #fbaa8f, #f9e2c5);
}
.cid-u0YTd6JDvY .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u0YTd6JDvY figcaption {
  position: relative;
}
.cid-u0YTd6JDvY figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u0YTd6JDvY .image-block {
    width: 100% !important;
  }
}
.cid-u0YTd6JDvY DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u1Pp3a67cZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-u1Pp3a67cZ .mbr-section-title {
  text-align: center;
}
.cid-u1Pp3a67cZ .mbr-text {
  color: #d0eabc;
  text-align: center;
}
.cid-u1PlSarYKJ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u1PlSarYKJ .mbr-text,
.cid-u1PlSarYKJ blockquote {
  color: #767676;
}
.cid-u1PlSarYKJ .mbr-text {
  color: #e4d295;
}
.cid-u1PKP8dpDK {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-u1PKP8dpDK .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-u1PKP8dpDK .video-block {
    width: 100% !important;
  }
}
.cid-u0YTd6UdZ8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u0YTd6UdZ8 .mbr-text,
.cid-u0YTd6UdZ8 blockquote {
  color: #767676;
}
.cid-u0YTd6UdZ8 .mbr-text {
  color: #e4d295;
}
.cid-u0YTd731y7 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u0YTd731y7 .mbr-text,
.cid-u0YTd731y7 blockquote {
  color: #767676;
}
.cid-u0YTd731y7 .mbr-text {
  color: #e4d295;
}
.cid-u0YTd7aEbu {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u0YTd7aEbu .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u0YTd7aEbu .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0YTd7aEbu .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u0YTd7aEbu .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u0YTd7aEbu .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u0YTd7aEbu .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u0YTd7aEbu .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u0YTd7aEbu .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u0YTd7aEbu .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u0YTd7aEbu .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u1PCDLdw12 {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 30px;
}
.cid-u1PCDLdw12 .image-block {
  margin: auto;
}
.cid-u1PCDLdw12 figcaption {
  position: relative;
}
.cid-u1PCDLdw12 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u1PCDLdw12 .image-block {
    width: 100% !important;
  }
}
.cid-u1PCDLdw12 DIV {
  text-align: right;
}
.cid-u1PBCRnFK2 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u1PBCRnFK2 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u1PBCRnFK2 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u1PBCRnFK2 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u1PBCRnFK2 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u1PBCRnFK2 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u1PBCRnFK2 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u1PBCRnFK2 .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u1PBCRnFK2 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u1PBCRnFK2 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u1PBCRnFK2 .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-upAGytu7Hh {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-upAGytu7Hh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-upAGytu7Hh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-upAGytu7Hh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-upAGytu7Hh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-upAGytu7Hh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-upAGytu7Hh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-upAGytu7Hh .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-upAGytu7Hh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-upAGytu7Hh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-upAGytu7Hh .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-upAIukTQGN {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #9ff470, #232323);
}
.cid-upAIukTQGN .image-block {
  margin: auto;
}
.cid-upAIukTQGN figcaption {
  position: relative;
}
.cid-upAIukTQGN figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-upAIukTQGN .image-block {
    width: 100% !important;
  }
}
.cid-upAIukTQGN DIV {
  text-align: left;
  color: #232323;
}
.cid-u1PzA1nPoO {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u1PzA1nPoO .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u1PzA1nPoO .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u1PzA1nPoO .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u1PzA1nPoO .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u1PzA1nPoO .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u1PzA1nPoO .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u1PzA1nPoO .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u1PzA1nPoO .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u1PzA1nPoO .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u1PzA1nPoO .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u1PAGNZiCz {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u1PAGNZiCz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u1PAGNZiCz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u1PAGNZiCz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u1PAGNZiCz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u1PAGNZiCz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u1PAGNZiCz .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u1PAGNZiCz .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u1PAGNZiCz .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u1PAGNZiCz .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u1PAGNZiCz .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u1PEQYHVXA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-u1PEQYHVXA .row {
  display: flex;
  flex-direction: row-reverse;
  border: 1px solid #ffffff;
  margin-top: -1px;
}
.cid-u1PEQYHVXA .title-wrapper {
  padding: 0 12px;
}
.cid-u1PEQYHVXA .text-block {
  padding: 48px 24px;
}
.cid-u1PEQYHVXA .video-wrapper iframe {
  width: 100%;
}
.cid-u1PEQYHVXA .video-block {
  border-left: 1px solid #ffffff;
  padding: 0;
}
.cid-u1PEQYHVXA .mbr-section-title {
  text-align: center;
  color: #FFFFFF;
}
.cid-u1PEQYHVXA .mbr-description {
  text-align: center;
  color: #FFFFFF;
  padding: 16px;
}
@media (min-width: 992px) {
  .cid-u1PEQYHVXA .mbr-description {
    padding: 16px 60px 16px;
  }
}
.cid-u1PEQYHVXA .mbr-text,
.cid-u1PEQYHVXA .mbr-section-subtitle {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-u1PEQYHVXA .video-block {
    border-left: none;
  }
  .cid-u1PEQYHVXA .text-block {
    border-top: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-u1PEQYHVXA .title-wrapper {
    padding: 0 48px;
  }
  .cid-u1PEQYHVXA .text-block {
    padding: 60px;
    border-right: 1px solid #ffffff;
    margin-right: -1px;
    margin-bottom: auto;
  }
}
.cid-u1PEQYHVXA .mbr-text {
  color: #e4d295;
}
.cid-u1PEQYHVXA .mbr-section-subtitle {
  color: #e4d295;
}
.cid-u1PyaxYfXD {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u1PyaxYfXD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u1PyaxYfXD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u1PyaxYfXD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u1PyaxYfXD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u1PyaxYfXD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u1PyaxYfXD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u1PyaxYfXD .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u1PyaxYfXD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u1PyaxYfXD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u1PyaxYfXD .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u0YTd7r79V {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u0YTd7r79V .mbr-text,
.cid-u0YTd7r79V blockquote {
  color: #767676;
}
.cid-u0YTd7r79V .mbr-text {
  color: #e4d295;
}
.cid-u0YTd7ADN3 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u0YTd7ADN3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u0YTd7ADN3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0YTd7ADN3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u0YTd7ADN3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u0YTd7ADN3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u0YTd7ADN3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u0YTd7ADN3 .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-u0YTd7ADN3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u0YTd7ADN3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u0YTd7ADN3 .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-upAKa2NBXr {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #9ff470, #232323);
}
.cid-upAKa2NBXr .image-block {
  margin: auto;
}
.cid-upAKa2NBXr figcaption {
  position: relative;
}
.cid-upAKa2NBXr figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-upAKa2NBXr .image-block {
    width: 100% !important;
  }
}
.cid-upAKa2NBXr DIV {
  text-align: center;
  color: #232323;
}
.cid-u0YTd7YT2T {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u0YTd7YT2T .mbr-text,
.cid-u0YTd7YT2T blockquote {
  color: #767676;
}
.cid-u0YTd7YT2T .mbr-text {
  color: #e4d295;
}
.cid-u1398KFMml {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u1398KFMml .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u1398KFMml .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u1398KFMml .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u1398KFMml .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u1398KFMml .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u1398KFMml .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u1398KFMml .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u1398KFMml .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u1398KFMml .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u1398KFMml .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u0YTd8kTgV {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u0YTd8kTgV .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u0YTd8kTgV .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u0YTd8kTgV .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u0YTd8kTgV .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u0YTd8kTgV .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u0YTd8kTgV .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u0YTd8kTgV .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u0YTd8kTgV .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u0YTd8kTgV .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u0YTd8kTgV .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u0YTd8kTgV .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u0YTd8kTgV .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u0YTd8kTgV .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u0YTd8kTgV .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u0YTd8kTgV foot-menu-item {
  color: #cebfaf;
}
.cid-u0YTd8kTgV .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u0Z27nI3OE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u0Z27nI3OE .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u0Z27nI3OE .container {
    padding: 0 ;
  }
}
.cid-u0Z27nI3OE .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u0Z27nI3OE .navbar.opened {
  transition: all 0.3s;
}
.cid-u0Z27nI3OE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0Z27nI3OE .navbar .navbar-logo img {
  width: auto;
}
.cid-u0Z27nI3OE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0Z27nI3OE .navbar.collapsed {
  justify-content: center;
}
.cid-u0Z27nI3OE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0Z27nI3OE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0Z27nI3OE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u0Z27nI3OE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0Z27nI3OE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0Z27nI3OE .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-u0Z27nI3OE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0Z27nI3OE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0Z27nI3OE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0Z27nI3OE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0Z27nI3OE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0Z27nI3OE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0Z27nI3OE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0Z27nI3OE .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-u0Z27nI3OE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0Z27nI3OE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u0Z27nI3OE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0Z27nI3OE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0Z27nI3OE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0Z27nI3OE .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u0Z27nI3OE .navbar.navbar-short {
  min-height: 110px;
}
.cid-u0Z27nI3OE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u0Z27nI3OE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u0Z27nI3OE .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u0Z27nI3OE nav.navbar {
  position: fixed;
}
.cid-u0Z27nI3OE .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-u0Z27nI3OE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u0Z27nI3OE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u0Z27nI3OE .dropdown-item:hover,
.cid-u0Z27nI3OE .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u0Z27nI3OE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u0Z27nI3OE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u0Z27nI3OE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u0Z27nI3OE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0Z27nI3OE .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0Z27nI3OE .dropdown-menu,
.cid-u0Z27nI3OE .navbar.opened {
  background: #474141 !important;
}
.cid-u0Z27nI3OE .nav-item:focus,
.cid-u0Z27nI3OE .nav-link:focus {
  outline: none;
}
.cid-u0Z27nI3OE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0Z27nI3OE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0Z27nI3OE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0Z27nI3OE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0Z27nI3OE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0Z27nI3OE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0Z27nI3OE .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-u0Z27nI3OE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0Z27nI3OE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0Z27nI3OE .dropdown-item.active,
.cid-u0Z27nI3OE .dropdown-item:active {
  background-color: transparent;
}
.cid-u0Z27nI3OE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0Z27nI3OE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0Z27nI3OE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0Z27nI3OE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u0Z27nI3OE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0Z27nI3OE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0Z27nI3OE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u0Z27nI3OE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0Z27nI3OE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u0Z27nI3OE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u0Z27nI3OE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0Z27nI3OE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0Z27nI3OE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0Z27nI3OE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0Z27nI3OE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0Z27nI3OE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0Z27nI3OE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0Z27nI3OE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0Z27nI3OE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u0Z27nI3OE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0Z27nI3OE .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-u0Z27nI3OE .navbar {
    height: 70px;
  }
  .cid-u0Z27nI3OE .navbar.opened {
    height: auto;
  }
  .cid-u0Z27nI3OE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0Z27nI3OE .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u0Z27nI3OE .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u0Z27o2veB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #474141;
}
.cid-u0Z27o2veB .mbr-text,
.cid-u0Z27o2veB blockquote {
  color: #767676;
}
.cid-u0Z27oaRmn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #474141;
}
.cid-u0Z27oaRmn .mbr-text,
.cid-u0Z27oaRmn blockquote {
  color: #767676;
}
.cid-u2u4GSjMxX {
  background: #f9e2c5;
  background: linear-gradient(0deg, #fbaa8f, #f9e2c5);
}
.cid-u2u4GSjMxX .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u2u4GSjMxX figcaption {
  position: relative;
}
.cid-u2u4GSjMxX figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u2u4GSjMxX .image-block {
    width: 100% !important;
  }
}
.cid-u2u4GSjMxX DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u2u4JPzyWI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-u2u4JPzyWI .mbr-section-title {
  text-align: center;
}
.cid-u2u4JPzyWI .mbr-text {
  color: #d0eabc;
  text-align: center;
}
.cid-u2tXoEAbAJ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u2tXoEAbAJ .mbr-text,
.cid-u2tXoEAbAJ blockquote {
  color: #767676;
}
.cid-u2tXoEAbAJ .mbr-text {
  color: #e4d295;
}
.cid-u0Z27ouzH5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-u0Z27ouzH5 .mbr-text,
.cid-u0Z27ouzH5 blockquote {
  color: #767676;
}
.cid-u0Z27ouzH5 .mbr-text {
  color: #e4d295;
}
.cid-u0Z27oCTcr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u0Z27oCTcr .mbr-text,
.cid-u0Z27oCTcr blockquote {
  color: #767676;
}
.cid-u0Z27oCTcr .mbr-text {
  color: #e4d295;
}
.cid-u2ukTJKXCk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2ukTJKXCk .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2ukTJKXCk .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2ukTJKXCk .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2ukTJKXCk .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2ukTJKXCk .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2ukTJKXCk .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2ukTJKXCk .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u2ukTJKXCk .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2ukTJKXCk .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2ukTJKXCk .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-upANvHSDZI {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #9ff470, #232323);
}
.cid-upANvHSDZI .image-block {
  margin: auto;
}
.cid-upANvHSDZI figcaption {
  position: relative;
}
.cid-upANvHSDZI figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-upANvHSDZI .image-block {
    width: 100% !important;
  }
}
.cid-upANvHSDZI DIV {
  text-align: left;
  color: #232323;
}
.cid-u2uolM7li6 {
  background-color: #232323;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-u2uolM7li6 .row {
  align-items: center;
}
.cid-u2uolM7li6 .text-wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #e4d295;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-u2uolM7li6 .content {
  position: relative;
  border: 3px solid #000000;
  padding: 40px;
}
.cid-u2uolM7li6 .label {
  position: absolute;
  border-radius: 20px;
  background-color: #000000;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  font-family: "Josefin Sans";
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
}
@media (max-width: 991px) {
  .cid-u2uolM7li6 .text-wrapper {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .cid-u2uolM7li6 .card {
    height: 300px;
  }
}
.cid-u2uolM7li6 .mbr-section-title,
.cid-u2uolM7li6 .mbr-section-btn {
  color: #232323;
}
.cid-u2uolM7li6 .mbr-label {
  color: #e4d295;
}
.cid-u7VKJu40UH {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #daf59a, #232323);
}
.cid-u7VKJu40UH .image-block {
  margin: auto;
}
.cid-u7VKJu40UH figcaption {
  position: relative;
}
.cid-u7VKJu40UH figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u7VKJu40UH .image-block {
    width: 100% !important;
  }
}
.cid-u7VKJu40UH DIV {
  text-align: right;
  color: #ffffff;
}
.cid-u0Z27oK9O2 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u0Z27oK9O2 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u0Z27oK9O2 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0Z27oK9O2 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u0Z27oK9O2 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u0Z27oK9O2 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u0Z27oK9O2 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u0Z27oK9O2 .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u0Z27oK9O2 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u0Z27oK9O2 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u0Z27oK9O2 .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u0Z27p1xl2 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u0Z27p1xl2 .mbr-text,
.cid-u0Z27p1xl2 blockquote {
  color: #767676;
}
.cid-u0Z27p1xl2 .mbr-text {
  color: #e4d295;
}
.cid-u2u6JH5Qhw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-u2u6JH5Qhw .row {
  display: flex;
  flex-direction: row-reverse;
  border: 1px solid #ffffff;
  margin-top: -1px;
}
.cid-u2u6JH5Qhw .title-wrapper {
  padding: 0 12px;
}
.cid-u2u6JH5Qhw .text-block {
  padding: 48px 24px;
}
.cid-u2u6JH5Qhw .video-wrapper iframe {
  width: 100%;
}
.cid-u2u6JH5Qhw .video-block {
  border-left: 1px solid #ffffff;
  padding: 0;
}
.cid-u2u6JH5Qhw .mbr-section-title {
  text-align: center;
  color: #FFFFFF;
}
.cid-u2u6JH5Qhw .mbr-description {
  text-align: center;
  color: #FFFFFF;
  padding: 16px;
}
@media (min-width: 992px) {
  .cid-u2u6JH5Qhw .mbr-description {
    padding: 16px 60px 16px;
  }
}
.cid-u2u6JH5Qhw .mbr-text,
.cid-u2u6JH5Qhw .mbr-section-subtitle {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-u2u6JH5Qhw .video-block {
    border-left: none;
  }
  .cid-u2u6JH5Qhw .text-block {
    border-top: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-u2u6JH5Qhw .title-wrapper {
    padding: 0 48px;
  }
  .cid-u2u6JH5Qhw .text-block {
    padding: 60px;
    border-right: 1px solid #ffffff;
    margin-right: -1px;
    margin-bottom: auto;
  }
}
.cid-u2u6JH5Qhw .mbr-text {
  color: #e4d295;
}
.cid-u2u6JH5Qhw .mbr-section-subtitle {
  color: #e4d295;
}
.cid-u2umCUwXKX {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2umCUwXKX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2umCUwXKX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2umCUwXKX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2umCUwXKX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2umCUwXKX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2umCUwXKX .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2umCUwXKX .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u2umCUwXKX .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2umCUwXKX .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2umCUwXKX .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u2us5TNKcC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u2us5TNKcC .mbr-text,
.cid-u2us5TNKcC blockquote {
  color: #767676;
}
.cid-u2us5TNKcC .mbr-text {
  color: #e4d295;
}
.cid-u2ussQDs9V {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2ussQDs9V .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2ussQDs9V .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2ussQDs9V .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2ussQDs9V .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2ussQDs9V .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2ussQDs9V .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2ussQDs9V .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u2ussQDs9V .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2ussQDs9V .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2ussQDs9V .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u0Z27pzsuV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u0Z27pzsuV .mbr-text,
.cid-u0Z27pzsuV blockquote {
  color: #767676;
}
.cid-u0Z27pzsuV .mbr-text {
  color: #e4d295;
}
.cid-u2uqb9mJjL {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2uqb9mJjL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2uqb9mJjL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2uqb9mJjL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2uqb9mJjL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2uqb9mJjL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2uqb9mJjL .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2uqb9mJjL .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u2uqb9mJjL .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2uqb9mJjL .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2uqb9mJjL .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u2uqHwm0He {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u2uqHwm0He .mbr-text,
.cid-u2uqHwm0He blockquote {
  color: #767676;
}
.cid-u2uqHwm0He .mbr-text {
  color: #e4d295;
}
.cid-u2uryS1LLk {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2uryS1LLk .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2uryS1LLk .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2uryS1LLk .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2uryS1LLk .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2uryS1LLk .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2uryS1LLk .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2uryS1LLk .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u2uryS1LLk .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2uryS1LLk .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2uryS1LLk .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u2usZDM73C {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u2usZDM73C .mbr-text,
.cid-u2usZDM73C blockquote {
  color: #767676;
}
.cid-u2usZDM73C .mbr-text {
  color: #e4d295;
}
.cid-u2utw1wMGd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2utw1wMGd .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2utw1wMGd .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2utw1wMGd .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2utw1wMGd .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2utw1wMGd .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2utw1wMGd .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2utw1wMGd .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u2utw1wMGd .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2utw1wMGd .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2utw1wMGd .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u0Z27pVQfy {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u0Z27pVQfy .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u0Z27pVQfy .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u0Z27pVQfy .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u0Z27pVQfy .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u0Z27pVQfy .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u0Z27pVQfy .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u0Z27pVQfy .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u0Z27pVQfy .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u0Z27pVQfy .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u0Z27pVQfy .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u0Z27pVQfy .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u0Z27pVQfy .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u0Z27pVQfy .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u0Z27pVQfy .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u0Z27pVQfy foot-menu-item {
  color: #cebfaf;
}
.cid-u0Z27pVQfy .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u0Z2fQeIFT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u0Z2fQeIFT .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u0Z2fQeIFT .container {
    padding: 0 ;
  }
}
.cid-u0Z2fQeIFT .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u0Z2fQeIFT .navbar.opened {
  transition: all 0.3s;
}
.cid-u0Z2fQeIFT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0Z2fQeIFT .navbar .navbar-logo img {
  width: auto;
}
.cid-u0Z2fQeIFT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0Z2fQeIFT .navbar.collapsed {
  justify-content: center;
}
.cid-u0Z2fQeIFT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0Z2fQeIFT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0Z2fQeIFT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u0Z2fQeIFT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0Z2fQeIFT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0Z2fQeIFT .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-u0Z2fQeIFT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0Z2fQeIFT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0Z2fQeIFT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0Z2fQeIFT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0Z2fQeIFT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0Z2fQeIFT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0Z2fQeIFT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0Z2fQeIFT .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-u0Z2fQeIFT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0Z2fQeIFT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u0Z2fQeIFT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0Z2fQeIFT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0Z2fQeIFT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0Z2fQeIFT .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u0Z2fQeIFT .navbar.navbar-short {
  min-height: 110px;
}
.cid-u0Z2fQeIFT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u0Z2fQeIFT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u0Z2fQeIFT .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u0Z2fQeIFT nav.navbar {
  position: fixed;
}
.cid-u0Z2fQeIFT .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-u0Z2fQeIFT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u0Z2fQeIFT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u0Z2fQeIFT .dropdown-item:hover,
.cid-u0Z2fQeIFT .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u0Z2fQeIFT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u0Z2fQeIFT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u0Z2fQeIFT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u0Z2fQeIFT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0Z2fQeIFT .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0Z2fQeIFT .dropdown-menu,
.cid-u0Z2fQeIFT .navbar.opened {
  background: #474141 !important;
}
.cid-u0Z2fQeIFT .nav-item:focus,
.cid-u0Z2fQeIFT .nav-link:focus {
  outline: none;
}
.cid-u0Z2fQeIFT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0Z2fQeIFT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0Z2fQeIFT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0Z2fQeIFT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0Z2fQeIFT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0Z2fQeIFT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0Z2fQeIFT .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-u0Z2fQeIFT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0Z2fQeIFT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0Z2fQeIFT .dropdown-item.active,
.cid-u0Z2fQeIFT .dropdown-item:active {
  background-color: transparent;
}
.cid-u0Z2fQeIFT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0Z2fQeIFT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0Z2fQeIFT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0Z2fQeIFT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u0Z2fQeIFT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0Z2fQeIFT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0Z2fQeIFT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u0Z2fQeIFT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0Z2fQeIFT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u0Z2fQeIFT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u0Z2fQeIFT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0Z2fQeIFT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0Z2fQeIFT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0Z2fQeIFT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0Z2fQeIFT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0Z2fQeIFT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0Z2fQeIFT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0Z2fQeIFT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0Z2fQeIFT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u0Z2fQeIFT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0Z2fQeIFT .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-u0Z2fQeIFT .navbar {
    height: 70px;
  }
  .cid-u0Z2fQeIFT .navbar.opened {
    height: auto;
  }
  .cid-u0Z2fQeIFT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0Z2fQeIFT .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u0Z2fQeIFT .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u0Z2fQAtiy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #474141;
}
.cid-u0Z2fQAtiy .mbr-text,
.cid-u0Z2fQAtiy blockquote {
  color: #767676;
}
.cid-u0Z2fQIBaW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #474141;
}
.cid-u0Z2fQIBaW .mbr-text,
.cid-u0Z2fQIBaW blockquote {
  color: #767676;
}
.cid-u0Z2fQQhzt {
  background: #f9e2c5;
  background: linear-gradient(0deg, #fbaa8f, #f9e2c5);
}
.cid-u0Z2fQQhzt .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u0Z2fQQhzt figcaption {
  position: relative;
}
.cid-u0Z2fQQhzt figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u0Z2fQQhzt .image-block {
    width: 100% !important;
  }
}
.cid-u0Z2fQQhzt DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u20z4gZUHu {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u20z4gZUHu .mbr-text,
.cid-u20z4gZUHu blockquote {
  color: #767676;
}
.cid-u20z4gZUHu .mbr-text {
  color: #e4d295;
}
.cid-u0Z2fR1fzt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u0Z2fR1fzt .mbr-text,
.cid-u0Z2fR1fzt blockquote {
  color: #767676;
}
.cid-u0Z2fR1fzt .mbr-text {
  color: #e4d295;
}
.cid-u20B8PRpjW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u20B8PRpjW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u20B8PRpjW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u20B8PRpjW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u20B8PRpjW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u20B8PRpjW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u20B8PRpjW .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u20B8PRpjW .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u20B8PRpjW .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u20B8PRpjW .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u20B8PRpjW .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u0Z2fSr6kd {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u0Z2fSr6kd .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u0Z2fSr6kd .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u0Z2fSr6kd .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u0Z2fSr6kd .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u0Z2fSr6kd .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u0Z2fSr6kd .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u0Z2fSr6kd .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u0Z2fSr6kd .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u0Z2fSr6kd .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u0Z2fSr6kd .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u0Z2fSr6kd .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u0Z2fSr6kd .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u0Z2fSr6kd .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u0Z2fSr6kd .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u0Z2fSr6kd foot-menu-item {
  color: #cebfaf;
}
.cid-u0Z2fSr6kd .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u0Z2l0PR9I {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u0Z2l0PR9I .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u0Z2l0PR9I .container {
    padding: 0 ;
  }
}
.cid-u0Z2l0PR9I .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u0Z2l0PR9I .navbar.opened {
  transition: all 0.3s;
}
.cid-u0Z2l0PR9I .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0Z2l0PR9I .navbar .navbar-logo img {
  width: auto;
}
.cid-u0Z2l0PR9I .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0Z2l0PR9I .navbar.collapsed {
  justify-content: center;
}
.cid-u0Z2l0PR9I .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0Z2l0PR9I .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0Z2l0PR9I .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u0Z2l0PR9I .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0Z2l0PR9I .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0Z2l0PR9I .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-u0Z2l0PR9I .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0Z2l0PR9I .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0Z2l0PR9I .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0Z2l0PR9I .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0Z2l0PR9I .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0Z2l0PR9I .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0Z2l0PR9I .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0Z2l0PR9I .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-u0Z2l0PR9I .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0Z2l0PR9I .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u0Z2l0PR9I .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0Z2l0PR9I .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0Z2l0PR9I .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0Z2l0PR9I .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u0Z2l0PR9I .navbar.navbar-short {
  min-height: 110px;
}
.cid-u0Z2l0PR9I .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u0Z2l0PR9I .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u0Z2l0PR9I .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u0Z2l0PR9I nav.navbar {
  position: fixed;
}
.cid-u0Z2l0PR9I .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-u0Z2l0PR9I .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u0Z2l0PR9I .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u0Z2l0PR9I .dropdown-item:hover,
.cid-u0Z2l0PR9I .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u0Z2l0PR9I .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u0Z2l0PR9I .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u0Z2l0PR9I .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u0Z2l0PR9I .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0Z2l0PR9I .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0Z2l0PR9I .dropdown-menu,
.cid-u0Z2l0PR9I .navbar.opened {
  background: #474141 !important;
}
.cid-u0Z2l0PR9I .nav-item:focus,
.cid-u0Z2l0PR9I .nav-link:focus {
  outline: none;
}
.cid-u0Z2l0PR9I .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0Z2l0PR9I .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0Z2l0PR9I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0Z2l0PR9I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0Z2l0PR9I .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0Z2l0PR9I .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0Z2l0PR9I .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-u0Z2l0PR9I .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0Z2l0PR9I .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0Z2l0PR9I .dropdown-item.active,
.cid-u0Z2l0PR9I .dropdown-item:active {
  background-color: transparent;
}
.cid-u0Z2l0PR9I .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0Z2l0PR9I .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0Z2l0PR9I .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0Z2l0PR9I .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u0Z2l0PR9I .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0Z2l0PR9I .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0Z2l0PR9I ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u0Z2l0PR9I .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0Z2l0PR9I button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u0Z2l0PR9I button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u0Z2l0PR9I button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0Z2l0PR9I button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0Z2l0PR9I button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0Z2l0PR9I button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0Z2l0PR9I nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0Z2l0PR9I nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0Z2l0PR9I nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0Z2l0PR9I nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0Z2l0PR9I .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u0Z2l0PR9I a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0Z2l0PR9I .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-u0Z2l0PR9I .navbar {
    height: 70px;
  }
  .cid-u0Z2l0PR9I .navbar.opened {
    height: auto;
  }
  .cid-u0Z2l0PR9I .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0Z2l0PR9I .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u0Z2l0PR9I .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u0Z2l18GWG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #474141;
}
.cid-u0Z2l18GWG .mbr-text,
.cid-u0Z2l18GWG blockquote {
  color: #767676;
}
.cid-u0Z2l1i8TK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #474141;
}
.cid-u0Z2l1i8TK .mbr-text,
.cid-u0Z2l1i8TK blockquote {
  color: #767676;
}
.cid-u0Z2l1p8hQ {
  background: #f9e2c5;
  background: linear-gradient(0deg, #fbaa8f, #f9e2c5);
}
.cid-u0Z2l1p8hQ .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u0Z2l1p8hQ figcaption {
  position: relative;
}
.cid-u0Z2l1p8hQ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u0Z2l1p8hQ .image-block {
    width: 100% !important;
  }
}
.cid-u0Z2l1p8hQ DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u20P9O6oL3 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u20P9O6oL3 .mbr-text,
.cid-u20P9O6oL3 blockquote {
  color: #767676;
}
.cid-u20P9O6oL3 .mbr-text {
  color: #e4d295;
}
.cid-u0Z2l1y0xZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u0Z2l1y0xZ .mbr-text,
.cid-u0Z2l1y0xZ blockquote {
  color: #767676;
}
.cid-u0Z2l1y0xZ .mbr-text {
  color: #e4d295;
}
.cid-u0Z2l1H38n {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u0Z2l1H38n .mbr-text,
.cid-u0Z2l1H38n blockquote {
  color: #767676;
}
.cid-u0Z2l1H38n .mbr-text {
  color: #e4d295;
}
.cid-u0Z2l1OKFR {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u0Z2l1OKFR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u0Z2l1OKFR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0Z2l1OKFR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u0Z2l1OKFR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u0Z2l1OKFR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u0Z2l1OKFR .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u0Z2l1OKFR .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u0Z2l1OKFR .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u0Z2l1OKFR .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u0Z2l1OKFR .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-upAKIUx7TJ {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #9ff470, #232323);
}
.cid-upAKIUx7TJ .image-block {
  margin: auto;
}
.cid-upAKIUx7TJ figcaption {
  position: relative;
}
.cid-upAKIUx7TJ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-upAKIUx7TJ .image-block {
    width: 100% !important;
  }
}
.cid-upAKIUx7TJ DIV {
  text-align: left;
  color: #232323;
}
.cid-u21i3Vwf8g {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u21i3Vwf8g .row {
  display: flex;
  flex-direction: row-reverse;
  border: 1px solid #ffffff;
  margin-top: -1px;
}
.cid-u21i3Vwf8g .title-wrapper {
  padding: 0 12px;
}
.cid-u21i3Vwf8g .text-block {
  padding: 48px 24px;
}
.cid-u21i3Vwf8g .video-wrapper iframe {
  width: 100%;
}
.cid-u21i3Vwf8g .video-block {
  border-left: 1px solid #ffffff;
  padding: 0;
}
.cid-u21i3Vwf8g .mbr-section-title {
  text-align: center;
  color: #FFFFFF;
}
.cid-u21i3Vwf8g .mbr-description {
  text-align: center;
  color: #FFFFFF;
  padding: 16px;
}
@media (min-width: 992px) {
  .cid-u21i3Vwf8g .mbr-description {
    padding: 16px 60px 16px;
  }
}
.cid-u21i3Vwf8g .mbr-text,
.cid-u21i3Vwf8g .mbr-section-subtitle {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-u21i3Vwf8g .video-block {
    border-left: none;
  }
  .cid-u21i3Vwf8g .text-block {
    border-top: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-u21i3Vwf8g .title-wrapper {
    padding: 0 48px;
  }
  .cid-u21i3Vwf8g .text-block {
    padding: 60px;
    border-right: 1px solid #ffffff;
    margin-right: -1px;
    margin-bottom: auto;
  }
}
.cid-u21i3Vwf8g .mbr-text {
  color: #e4d295;
}
.cid-u21i3Vwf8g .mbr-section-subtitle {
  color: #e4d295;
}
.cid-u0Z2l255wR {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u0Z2l255wR .mbr-text,
.cid-u0Z2l255wR blockquote {
  color: #767676;
}
.cid-u0Z2l255wR .mbr-text {
  color: #e4d295;
}
.cid-u0Z2l2e9kz {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u0Z2l2e9kz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u0Z2l2e9kz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0Z2l2e9kz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u0Z2l2e9kz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u0Z2l2e9kz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u0Z2l2e9kz .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u0Z2l2e9kz .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u0Z2l2e9kz .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u0Z2l2e9kz .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u0Z2l2e9kz .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u0Z2l2CW1s {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u0Z2l2CW1s .mbr-text,
.cid-u0Z2l2CW1s blockquote {
  color: #767676;
}
.cid-u0Z2l2CW1s .mbr-text {
  color: #e4d295;
}
.cid-u0Z2l2LFaG {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u0Z2l2LFaG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u0Z2l2LFaG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0Z2l2LFaG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u0Z2l2LFaG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u0Z2l2LFaG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u0Z2l2LFaG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u0Z2l2LFaG .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u0Z2l2LFaG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u0Z2l2LFaG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u0Z2l2LFaG .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u0Z2l2W1j4 {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u0Z2l2W1j4 .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u0Z2l2W1j4 .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u0Z2l2W1j4 .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u0Z2l2W1j4 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u0Z2l2W1j4 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u0Z2l2W1j4 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u0Z2l2W1j4 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u0Z2l2W1j4 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u0Z2l2W1j4 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u0Z2l2W1j4 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u0Z2l2W1j4 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u0Z2l2W1j4 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u0Z2l2W1j4 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u0Z2l2W1j4 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u0Z2l2W1j4 foot-menu-item {
  color: #cebfaf;
}
.cid-u0Z2l2W1j4 .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u0Z2v4uoTO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u0Z2v4uoTO .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u0Z2v4uoTO .container {
    padding: 0 ;
  }
}
.cid-u0Z2v4uoTO .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u0Z2v4uoTO .navbar.opened {
  transition: all 0.3s;
}
.cid-u0Z2v4uoTO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0Z2v4uoTO .navbar .navbar-logo img {
  width: auto;
}
.cid-u0Z2v4uoTO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0Z2v4uoTO .navbar.collapsed {
  justify-content: center;
}
.cid-u0Z2v4uoTO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0Z2v4uoTO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0Z2v4uoTO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u0Z2v4uoTO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0Z2v4uoTO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0Z2v4uoTO .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-u0Z2v4uoTO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0Z2v4uoTO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0Z2v4uoTO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0Z2v4uoTO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0Z2v4uoTO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0Z2v4uoTO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0Z2v4uoTO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0Z2v4uoTO .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-u0Z2v4uoTO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0Z2v4uoTO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u0Z2v4uoTO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0Z2v4uoTO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0Z2v4uoTO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0Z2v4uoTO .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u0Z2v4uoTO .navbar.navbar-short {
  min-height: 110px;
}
.cid-u0Z2v4uoTO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u0Z2v4uoTO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u0Z2v4uoTO .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u0Z2v4uoTO nav.navbar {
  position: fixed;
}
.cid-u0Z2v4uoTO .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-u0Z2v4uoTO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u0Z2v4uoTO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u0Z2v4uoTO .dropdown-item:hover,
.cid-u0Z2v4uoTO .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u0Z2v4uoTO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u0Z2v4uoTO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u0Z2v4uoTO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u0Z2v4uoTO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0Z2v4uoTO .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0Z2v4uoTO .dropdown-menu,
.cid-u0Z2v4uoTO .navbar.opened {
  background: #474141 !important;
}
.cid-u0Z2v4uoTO .nav-item:focus,
.cid-u0Z2v4uoTO .nav-link:focus {
  outline: none;
}
.cid-u0Z2v4uoTO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0Z2v4uoTO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0Z2v4uoTO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0Z2v4uoTO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0Z2v4uoTO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0Z2v4uoTO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0Z2v4uoTO .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-u0Z2v4uoTO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0Z2v4uoTO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0Z2v4uoTO .dropdown-item.active,
.cid-u0Z2v4uoTO .dropdown-item:active {
  background-color: transparent;
}
.cid-u0Z2v4uoTO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0Z2v4uoTO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0Z2v4uoTO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0Z2v4uoTO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u0Z2v4uoTO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0Z2v4uoTO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0Z2v4uoTO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u0Z2v4uoTO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0Z2v4uoTO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u0Z2v4uoTO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u0Z2v4uoTO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0Z2v4uoTO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0Z2v4uoTO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0Z2v4uoTO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0Z2v4uoTO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0Z2v4uoTO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0Z2v4uoTO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0Z2v4uoTO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0Z2v4uoTO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u0Z2v4uoTO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0Z2v4uoTO .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-u0Z2v4uoTO .navbar {
    height: 70px;
  }
  .cid-u0Z2v4uoTO .navbar.opened {
    height: auto;
  }
  .cid-u0Z2v4uoTO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0Z2v4uoTO .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u0Z2v4uoTO .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u0Z2v4PZOf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #474141;
}
.cid-u0Z2v4PZOf .mbr-text,
.cid-u0Z2v4PZOf blockquote {
  color: #767676;
}
.cid-u0Z2v4XtYT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #474141;
}
.cid-u0Z2v4XtYT .mbr-text,
.cid-u0Z2v4XtYT blockquote {
  color: #767676;
}
.cid-u21nc4irMw {
  background: #f9e2c5;
  background: linear-gradient(0deg, #fbaa8f, #f9e2c5);
}
.cid-u21nc4irMw .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u21nc4irMw figcaption {
  position: relative;
}
.cid-u21nc4irMw figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u21nc4irMw .image-block {
    width: 100% !important;
  }
}
.cid-u21nc4irMw DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u218eARMlt {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-u218eARMlt .mbr-section-title {
  text-align: center;
}
.cid-u218eARMlt .mbr-text {
  color: #d0eabc;
  text-align: center;
}
.cid-u213lcCK6m {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u213lcCK6m .mbr-text,
.cid-u213lcCK6m blockquote {
  color: #767676;
}
.cid-u213lcCK6m .mbr-text {
  color: #e4d295;
}
.cid-u0Z2v5fKtd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u0Z2v5fKtd .mbr-text,
.cid-u0Z2v5fKtd blockquote {
  color: #767676;
}
.cid-u0Z2v5fKtd .mbr-text {
  color: #e4d295;
}
.cid-u0Z2v5oBiw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u0Z2v5oBiw .mbr-text,
.cid-u0Z2v5oBiw blockquote {
  color: #767676;
}
.cid-u0Z2v5oBiw .mbr-text {
  color: #e4d295;
}
.cid-upALvKzr3Q {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #9ff470, #232323);
}
.cid-upALvKzr3Q .image-block {
  margin: auto;
}
.cid-upALvKzr3Q figcaption {
  position: relative;
}
.cid-upALvKzr3Q figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-upALvKzr3Q .image-block {
    width: 100% !important;
  }
}
.cid-upALvKzr3Q DIV {
  text-align: left;
  color: #232323;
}
.cid-u0Z2v5vUlh {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u0Z2v5vUlh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u0Z2v5vUlh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0Z2v5vUlh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u0Z2v5vUlh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u0Z2v5vUlh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u0Z2v5vUlh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u0Z2v5vUlh .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u0Z2v5vUlh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u0Z2v5vUlh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u0Z2v5vUlh .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u21kEEOGHJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-u21kEEOGHJ .row {
  display: flex;
  flex-direction: row-reverse;
  border: 1px solid #ffffff;
  margin-top: -1px;
}
.cid-u21kEEOGHJ .title-wrapper {
  padding: 0 12px;
}
.cid-u21kEEOGHJ .text-block {
  padding: 48px 24px;
}
.cid-u21kEEOGHJ .video-wrapper iframe {
  width: 100%;
}
.cid-u21kEEOGHJ .video-block {
  border-left: 1px solid #ffffff;
  padding: 0;
}
.cid-u21kEEOGHJ .mbr-section-title {
  text-align: center;
  color: #FFFFFF;
}
.cid-u21kEEOGHJ .mbr-description {
  text-align: center;
  color: #FFFFFF;
  padding: 16px;
}
@media (min-width: 992px) {
  .cid-u21kEEOGHJ .mbr-description {
    padding: 16px 60px 16px;
  }
}
.cid-u21kEEOGHJ .mbr-text,
.cid-u21kEEOGHJ .mbr-section-subtitle {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-u21kEEOGHJ .video-block {
    border-left: none;
  }
  .cid-u21kEEOGHJ .text-block {
    border-top: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-u21kEEOGHJ .title-wrapper {
    padding: 0 48px;
  }
  .cid-u21kEEOGHJ .text-block {
    padding: 60px;
    border-right: 1px solid #ffffff;
    margin-right: -1px;
    margin-bottom: auto;
  }
}
.cid-u21kEEOGHJ .mbr-text {
  color: #e4d295;
}
.cid-u21kEEOGHJ .mbr-section-subtitle {
  color: #e4d295;
}
.cid-u0Z2v6kOsl {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u0Z2v6kOsl .mbr-text,
.cid-u0Z2v6kOsl blockquote {
  color: #767676;
}
.cid-u0Z2v6kOsl .mbr-text {
  color: #e4d295;
}
.cid-u21aAb7VW3 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u21aAb7VW3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u21aAb7VW3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u21aAb7VW3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u21aAb7VW3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u21aAb7VW3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u21aAb7VW3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u21aAb7VW3 .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u21aAb7VW3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u21aAb7VW3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u21aAb7VW3 .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u21eJbYfHm {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u21eJbYfHm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u21eJbYfHm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u21eJbYfHm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u21eJbYfHm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u21eJbYfHm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u21eJbYfHm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u21eJbYfHm .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u21eJbYfHm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u21eJbYfHm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u21eJbYfHm .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-upAMY1ahIi {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #9ff470, #232323);
}
.cid-upAMY1ahIi .image-block {
  margin: auto;
}
.cid-upAMY1ahIi figcaption {
  position: relative;
}
.cid-upAMY1ahIi figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-upAMY1ahIi .image-block {
    width: 100% !important;
  }
}
.cid-upAMY1ahIi DIV {
  text-align: left;
  color: #232323;
}
.cid-u21fPCo0s4 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u21fPCo0s4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u21fPCo0s4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u21fPCo0s4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u21fPCo0s4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u21fPCo0s4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u21fPCo0s4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u21fPCo0s4 .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u21fPCo0s4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u21fPCo0s4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u21fPCo0s4 .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u0Z2v6GIcY {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u0Z2v6GIcY .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u0Z2v6GIcY .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u0Z2v6GIcY .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u0Z2v6GIcY .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u0Z2v6GIcY .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u0Z2v6GIcY .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u0Z2v6GIcY .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u0Z2v6GIcY .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u0Z2v6GIcY .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u0Z2v6GIcY .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u0Z2v6GIcY .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u0Z2v6GIcY .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u0Z2v6GIcY .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u0Z2v6GIcY .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u0Z2v6GIcY foot-menu-item {
  color: #cebfaf;
}
.cid-u0Z2v6GIcY .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u13kBLYULq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u13kBLYULq .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u13kBLYULq .container {
    padding: 0 ;
  }
}
.cid-u13kBLYULq .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u13kBLYULq .navbar.opened {
  transition: all 0.3s;
}
.cid-u13kBLYULq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u13kBLYULq .navbar .navbar-logo img {
  width: auto;
}
.cid-u13kBLYULq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u13kBLYULq .navbar.collapsed {
  justify-content: center;
}
.cid-u13kBLYULq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u13kBLYULq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u13kBLYULq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u13kBLYULq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u13kBLYULq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u13kBLYULq .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-u13kBLYULq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u13kBLYULq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u13kBLYULq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u13kBLYULq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u13kBLYULq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u13kBLYULq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u13kBLYULq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u13kBLYULq .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-u13kBLYULq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u13kBLYULq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u13kBLYULq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u13kBLYULq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u13kBLYULq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u13kBLYULq .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u13kBLYULq .navbar.navbar-short {
  min-height: 110px;
}
.cid-u13kBLYULq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u13kBLYULq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u13kBLYULq .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u13kBLYULq nav.navbar {
  position: fixed;
}
.cid-u13kBLYULq .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-u13kBLYULq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u13kBLYULq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u13kBLYULq .dropdown-item:hover,
.cid-u13kBLYULq .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u13kBLYULq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u13kBLYULq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u13kBLYULq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u13kBLYULq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u13kBLYULq .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u13kBLYULq .dropdown-menu,
.cid-u13kBLYULq .navbar.opened {
  background: #474141 !important;
}
.cid-u13kBLYULq .nav-item:focus,
.cid-u13kBLYULq .nav-link:focus {
  outline: none;
}
.cid-u13kBLYULq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u13kBLYULq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u13kBLYULq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u13kBLYULq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u13kBLYULq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u13kBLYULq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u13kBLYULq .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-u13kBLYULq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u13kBLYULq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u13kBLYULq .dropdown-item.active,
.cid-u13kBLYULq .dropdown-item:active {
  background-color: transparent;
}
.cid-u13kBLYULq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u13kBLYULq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u13kBLYULq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u13kBLYULq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u13kBLYULq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u13kBLYULq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u13kBLYULq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u13kBLYULq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u13kBLYULq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u13kBLYULq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u13kBLYULq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u13kBLYULq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u13kBLYULq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u13kBLYULq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u13kBLYULq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u13kBLYULq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u13kBLYULq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u13kBLYULq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u13kBLYULq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u13kBLYULq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u13kBLYULq .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-u13kBLYULq .navbar {
    height: 70px;
  }
  .cid-u13kBLYULq .navbar.opened {
    height: auto;
  }
  .cid-u13kBLYULq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u13kBLYULq .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u13kBLYULq .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u13kBMh6yn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u13kBMh6yn .mbr-text,
.cid-u13kBMh6yn blockquote {
  color: #767676;
}
.cid-u2RQj1oIAc {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u2RQj1oIAc .mbr-text,
.cid-u2RQj1oIAc blockquote {
  color: #767676;
}
.cid-u13kBMoTmG {
  background: #232323;
}
.cid-u13kBMoTmG .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u13kBMoTmG figcaption {
  position: relative;
}
.cid-u13kBMoTmG figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u13kBMoTmG .image-block {
    width: 100% !important;
  }
}
.cid-u13kBMoTmG DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u2RQs7eCBA {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u2RQs7eCBA .mbr-text,
.cid-u2RQs7eCBA blockquote {
  color: #767676;
}
.cid-u2RQs7eCBA .mbr-text {
  color: #e4d295;
}
.cid-u13loF5Aza {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u13loF5Aza .mbr-text,
.cid-u13loF5Aza blockquote {
  color: #767676;
}
.cid-u13loF5Aza .mbr-text {
  color: #b1a374;
}
.cid-u13loF5Aza .mbr-text P {
  text-align: left;
}
.cid-u2RSGRtwop {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-u2RSGRtwop .card-box {
  padding: 0 2rem;
}
.cid-u2RSGRtwop .mbr-section-btn {
  padding-top: 1rem;
}
.cid-u2RSGRtwop .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-u2RSGRtwop h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-u2RSGRtwop p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-u2RSGRtwop .mbr-text {
  color: #767676;
}
.cid-u2RSGRtwop .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #f9e2c5;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-u2RSGRtwop .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u2RSGRtwop .card-title {
  text-align: center;
}
.cid-u13s3nSn0K {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-u13s3nSn0K .card-box {
  padding: 0 2rem;
}
.cid-u13s3nSn0K .mbr-section-btn {
  padding-top: 1rem;
}
.cid-u13s3nSn0K .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-u13s3nSn0K h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-u13s3nSn0K p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-u13s3nSn0K .mbr-text {
  color: #767676;
}
.cid-u13s3nSn0K .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #f9e2c5;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-u13s3nSn0K .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u13s3nSn0K .card-title {
  text-align: center;
}
.cid-u13kBN0eKv {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u13kBN0eKv .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u13kBN0eKv .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u13kBN0eKv .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u13kBN0eKv .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u13kBN0eKv .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u13kBN0eKv .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u13kBN0eKv .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u13kBN0eKv .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u13kBN0eKv .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u13kBN0eKv .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u13kBN0eKv .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u13kBN0eKv .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u13kBN0eKv .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u13kBN0eKv .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u13kBN0eKv foot-menu-item {
  color: #cebfaf;
}
.cid-u13kBN0eKv .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u1Js1Jav3i {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u1Js1Jav3i .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u1Js1Jav3i .container {
    padding: 0 ;
  }
}
.cid-u1Js1Jav3i .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u1Js1Jav3i .navbar.opened {
  transition: all 0.3s;
}
.cid-u1Js1Jav3i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u1Js1Jav3i .navbar .navbar-logo img {
  width: auto;
}
.cid-u1Js1Jav3i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u1Js1Jav3i .navbar.collapsed {
  justify-content: center;
}
.cid-u1Js1Jav3i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u1Js1Jav3i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u1Js1Jav3i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u1Js1Jav3i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u1Js1Jav3i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u1Js1Jav3i .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-u1Js1Jav3i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u1Js1Jav3i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u1Js1Jav3i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u1Js1Jav3i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u1Js1Jav3i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u1Js1Jav3i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u1Js1Jav3i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u1Js1Jav3i .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-u1Js1Jav3i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u1Js1Jav3i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u1Js1Jav3i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u1Js1Jav3i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u1Js1Jav3i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u1Js1Jav3i .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u1Js1Jav3i .navbar.navbar-short {
  min-height: 110px;
}
.cid-u1Js1Jav3i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u1Js1Jav3i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u1Js1Jav3i .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u1Js1Jav3i nav.navbar {
  position: fixed;
}
.cid-u1Js1Jav3i .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-u1Js1Jav3i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u1Js1Jav3i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u1Js1Jav3i .dropdown-item:hover,
.cid-u1Js1Jav3i .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u1Js1Jav3i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u1Js1Jav3i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u1Js1Jav3i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u1Js1Jav3i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u1Js1Jav3i .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u1Js1Jav3i .dropdown-menu,
.cid-u1Js1Jav3i .navbar.opened {
  background: #474141 !important;
}
.cid-u1Js1Jav3i .nav-item:focus,
.cid-u1Js1Jav3i .nav-link:focus {
  outline: none;
}
.cid-u1Js1Jav3i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u1Js1Jav3i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u1Js1Jav3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u1Js1Jav3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u1Js1Jav3i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u1Js1Jav3i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u1Js1Jav3i .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-u1Js1Jav3i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u1Js1Jav3i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u1Js1Jav3i .dropdown-item.active,
.cid-u1Js1Jav3i .dropdown-item:active {
  background-color: transparent;
}
.cid-u1Js1Jav3i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u1Js1Jav3i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u1Js1Jav3i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u1Js1Jav3i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u1Js1Jav3i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u1Js1Jav3i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u1Js1Jav3i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u1Js1Jav3i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u1Js1Jav3i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u1Js1Jav3i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u1Js1Jav3i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u1Js1Jav3i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1Js1Jav3i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1Js1Jav3i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u1Js1Jav3i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1Js1Jav3i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u1Js1Jav3i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u1Js1Jav3i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1Js1Jav3i .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u1Js1Jav3i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u1Js1Jav3i .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-u1Js1Jav3i .navbar {
    height: 70px;
  }
  .cid-u1Js1Jav3i .navbar.opened {
    height: auto;
  }
  .cid-u1Js1Jav3i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1Js1Jav3i .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u1Js1Jav3i .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u1Js1JwgfL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #474141;
}
.cid-u1Js1JwgfL .mbr-text,
.cid-u1Js1JwgfL blockquote {
  color: #767676;
}
.cid-u1Js1JC2oz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #474141;
}
.cid-u1Js1JC2oz .mbr-text,
.cid-u1Js1JC2oz blockquote {
  color: #767676;
}
.cid-u1Jwxuy7qc {
  background: #f9e2c5;
  background: linear-gradient(0deg, #fbaa8f, #f9e2c5);
}
.cid-u1Jwxuy7qc .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u1Jwxuy7qc figcaption {
  position: relative;
}
.cid-u1Jwxuy7qc figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u1Jwxuy7qc .image-block {
    width: 100% !important;
  }
}
.cid-u1Jwxuy7qc DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u2DW3tPIFY {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u2DW3tPIFY .mbr-text,
.cid-u2DW3tPIFY blockquote {
  color: #767676;
}
.cid-u2DW3tPIFY .mbr-text {
  color: #e4d295;
}
.cid-u1Js1JOJs0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u1Js1JOJs0 .mbr-text,
.cid-u1Js1JOJs0 blockquote {
  color: #767676;
}
.cid-u1Js1JOJs0 .mbr-text {
  color: #e4d295;
}
.cid-u1JAC4sztK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u1JAC4sztK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u1JAC4sztK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u1JAC4sztK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u1JAC4sztK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u1JAC4sztK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u1JAC4sztK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u1JAC4sztK .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u1JAC4sztK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u1JAC4sztK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u1JAC4sztK .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u1JAECHIeS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-u1JAECHIeS .mbr-section-title {
  text-align: center;
}
.cid-u1JAECHIeS .mbr-text {
  color: #e4d295;
  text-align: left;
}
.cid-u1JAXDgE9a {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u1JAXDgE9a .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u1JAXDgE9a .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u1JAXDgE9a .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u1JAXDgE9a .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u1JAXDgE9a .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u1JAXDgE9a .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u1JAXDgE9a .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u1JAXDgE9a .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u1JAXDgE9a .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u1JAXDgE9a .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u1JBpckGZM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-u1JBpckGZM .mbr-section-title {
  text-align: center;
}
.cid-u1JBpckGZM .mbr-text {
  color: #e4d295;
  text-align: left;
}
.cid-u1Js1L3ILu {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u1Js1L3ILu .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u1Js1L3ILu .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u1Js1L3ILu .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u1Js1L3ILu .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u1Js1L3ILu .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u1Js1L3ILu .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u1Js1L3ILu .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u1Js1L3ILu .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u1Js1L3ILu .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u1Js1L3ILu .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u1Js1L3ILu .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u1Js1L3ILu .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u1Js1L3ILu .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u1Js1L3ILu .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u1Js1L3ILu foot-menu-item {
  color: #cebfaf;
}
.cid-u1Js1L3ILu .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u2FvKovNgc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2FvKovNgc .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u2FvKovNgc .container {
    padding: 0 ;
  }
}
.cid-u2FvKovNgc .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u2FvKovNgc .navbar.opened {
  transition: all 0.3s;
}
.cid-u2FvKovNgc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2FvKovNgc .navbar .navbar-logo img {
  width: auto;
}
.cid-u2FvKovNgc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2FvKovNgc .navbar.collapsed {
  justify-content: center;
}
.cid-u2FvKovNgc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2FvKovNgc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2FvKovNgc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u2FvKovNgc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2FvKovNgc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2FvKovNgc .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-u2FvKovNgc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2FvKovNgc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2FvKovNgc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2FvKovNgc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2FvKovNgc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2FvKovNgc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2FvKovNgc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2FvKovNgc .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-u2FvKovNgc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2FvKovNgc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2FvKovNgc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2FvKovNgc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2FvKovNgc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2FvKovNgc .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u2FvKovNgc .navbar.navbar-short {
  min-height: 110px;
}
.cid-u2FvKovNgc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2FvKovNgc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2FvKovNgc .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u2FvKovNgc nav.navbar {
  position: fixed;
}
.cid-u2FvKovNgc .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-u2FvKovNgc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u2FvKovNgc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2FvKovNgc .dropdown-item:hover,
.cid-u2FvKovNgc .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u2FvKovNgc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2FvKovNgc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2FvKovNgc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2FvKovNgc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2FvKovNgc .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2FvKovNgc .dropdown-menu,
.cid-u2FvKovNgc .navbar.opened {
  background: #474141 !important;
}
.cid-u2FvKovNgc .nav-item:focus,
.cid-u2FvKovNgc .nav-link:focus {
  outline: none;
}
.cid-u2FvKovNgc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2FvKovNgc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2FvKovNgc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2FvKovNgc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2FvKovNgc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2FvKovNgc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2FvKovNgc .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-u2FvKovNgc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2FvKovNgc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2FvKovNgc .dropdown-item.active,
.cid-u2FvKovNgc .dropdown-item:active {
  background-color: transparent;
}
.cid-u2FvKovNgc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2FvKovNgc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2FvKovNgc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2FvKovNgc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u2FvKovNgc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2FvKovNgc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2FvKovNgc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2FvKovNgc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2FvKovNgc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2FvKovNgc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u2FvKovNgc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2FvKovNgc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2FvKovNgc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2FvKovNgc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2FvKovNgc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2FvKovNgc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2FvKovNgc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2FvKovNgc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2FvKovNgc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2FvKovNgc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2FvKovNgc .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-u2FvKovNgc .navbar {
    height: 70px;
  }
  .cid-u2FvKovNgc .navbar.opened {
    height: auto;
  }
  .cid-u2FvKovNgc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2FvKovNgc .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u2FvKovNgc .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u2FvKsGSaz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #474141;
}
.cid-u2FvKsGSaz .mbr-text,
.cid-u2FvKsGSaz blockquote {
  color: #767676;
}
.cid-u2FvKsPCf4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #474141;
}
.cid-u2FvKsPCf4 .mbr-text,
.cid-u2FvKsPCf4 blockquote {
  color: #767676;
}
.cid-u2FvKsXcOk {
  background: #f9e2c5;
  background: linear-gradient(0deg, #fbaa8f, #f9e2c5);
}
.cid-u2FvKsXcOk .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u2FvKsXcOk figcaption {
  position: relative;
}
.cid-u2FvKsXcOk figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u2FvKsXcOk .image-block {
    width: 100% !important;
  }
}
.cid-u2FvKsXcOk DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u2FvKtm4Ao {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u2FvKtm4Ao .mbr-text,
.cid-u2FvKtm4Ao blockquote {
  color: #767676;
}
.cid-u2FvKtm4Ao .mbr-text {
  color: #e4d295;
}
.cid-u2FvKttk11 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2FvKttk11 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2FvKttk11 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2FvKttk11 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2FvKttk11 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2FvKttk11 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2FvKttk11 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2FvKttk11 .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u2FvKttk11 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2FvKttk11 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2FvKttk11 .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u2FvKCL6Kt {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u2FvKCL6Kt .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u2FvKCL6Kt .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u2FvKCL6Kt .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u2FvKCL6Kt .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u2FvKCL6Kt .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u2FvKCL6Kt .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u2FvKCL6Kt .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u2FvKCL6Kt .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u2FvKCL6Kt .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u2FvKCL6Kt .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u2FvKCL6Kt .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2FvKCL6Kt .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2FvKCL6Kt .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u2FvKCL6Kt .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u2FvKCL6Kt foot-menu-item {
  color: #cebfaf;
}
.cid-u2FvKCL6Kt .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u2FDUyGGQc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2FDUyGGQc .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u2FDUyGGQc .container {
    padding: 0 ;
  }
}
.cid-u2FDUyGGQc .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u2FDUyGGQc .navbar.opened {
  transition: all 0.3s;
}
.cid-u2FDUyGGQc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2FDUyGGQc .navbar .navbar-logo img {
  width: auto;
}
.cid-u2FDUyGGQc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2FDUyGGQc .navbar.collapsed {
  justify-content: center;
}
.cid-u2FDUyGGQc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2FDUyGGQc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2FDUyGGQc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u2FDUyGGQc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2FDUyGGQc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2FDUyGGQc .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-u2FDUyGGQc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2FDUyGGQc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2FDUyGGQc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2FDUyGGQc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2FDUyGGQc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2FDUyGGQc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2FDUyGGQc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2FDUyGGQc .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-u2FDUyGGQc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2FDUyGGQc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2FDUyGGQc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2FDUyGGQc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2FDUyGGQc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2FDUyGGQc .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u2FDUyGGQc .navbar.navbar-short {
  min-height: 110px;
}
.cid-u2FDUyGGQc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2FDUyGGQc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2FDUyGGQc .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u2FDUyGGQc nav.navbar {
  position: fixed;
}
.cid-u2FDUyGGQc .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-u2FDUyGGQc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u2FDUyGGQc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2FDUyGGQc .dropdown-item:hover,
.cid-u2FDUyGGQc .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u2FDUyGGQc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2FDUyGGQc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2FDUyGGQc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2FDUyGGQc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2FDUyGGQc .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2FDUyGGQc .dropdown-menu,
.cid-u2FDUyGGQc .navbar.opened {
  background: #474141 !important;
}
.cid-u2FDUyGGQc .nav-item:focus,
.cid-u2FDUyGGQc .nav-link:focus {
  outline: none;
}
.cid-u2FDUyGGQc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2FDUyGGQc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2FDUyGGQc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2FDUyGGQc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2FDUyGGQc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2FDUyGGQc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2FDUyGGQc .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-u2FDUyGGQc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2FDUyGGQc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2FDUyGGQc .dropdown-item.active,
.cid-u2FDUyGGQc .dropdown-item:active {
  background-color: transparent;
}
.cid-u2FDUyGGQc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2FDUyGGQc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2FDUyGGQc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2FDUyGGQc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u2FDUyGGQc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2FDUyGGQc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2FDUyGGQc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2FDUyGGQc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2FDUyGGQc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2FDUyGGQc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u2FDUyGGQc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2FDUyGGQc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2FDUyGGQc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2FDUyGGQc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2FDUyGGQc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2FDUyGGQc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2FDUyGGQc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2FDUyGGQc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2FDUyGGQc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2FDUyGGQc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2FDUyGGQc .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-u2FDUyGGQc .navbar {
    height: 70px;
  }
  .cid-u2FDUyGGQc .navbar.opened {
    height: auto;
  }
  .cid-u2FDUyGGQc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2FDUyGGQc .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u2FDUyGGQc .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u2FDUzcxjV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #474141;
}
.cid-u2FDUzcxjV .mbr-text,
.cid-u2FDUzcxjV blockquote {
  color: #767676;
}
.cid-u2FDUzjol5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #474141;
}
.cid-u2FDUzjol5 .mbr-text,
.cid-u2FDUzjol5 blockquote {
  color: #767676;
}
.cid-u2FDUzrCoE {
  background: #f9e2c5;
  background: linear-gradient(0deg, #fbaa8f, #f9e2c5);
}
.cid-u2FDUzrCoE .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u2FDUzrCoE figcaption {
  position: relative;
}
.cid-u2FDUzrCoE figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u2FDUzrCoE .image-block {
    width: 100% !important;
  }
}
.cid-u2FDUzrCoE DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u2FDUE27tX {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u2FDUE27tX .mbr-text,
.cid-u2FDUE27tX blockquote {
  color: #767676;
}
.cid-u2FDUE27tX .mbr-text {
  color: #e4d295;
}
.cid-u2FDUEfa5I {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-u2FDUEfa5I .mbr-section-title {
  text-align: center;
}
.cid-u2FDUEfa5I .mbr-text {
  color: #e4d295;
  text-align: left;
}
.cid-u2FDUEsE4X {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2FDUEsE4X .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2FDUEsE4X .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2FDUEsE4X .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2FDUEsE4X .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2FDUEsE4X .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2FDUEsE4X .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2FDUEsE4X .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u2FDUEsE4X .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2FDUEsE4X .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2FDUEsE4X .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-upAFa1pQDX {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #9ff470, #232323);
}
.cid-upAFa1pQDX .image-block {
  margin: auto;
}
.cid-upAFa1pQDX figcaption {
  position: relative;
}
.cid-upAFa1pQDX figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-upAFa1pQDX .image-block {
    width: 100% !important;
  }
}
.cid-upAFa1pQDX DIV {
  text-align: left;
  color: #232323;
}
.cid-u2FDUEHvvt {
  background-color: #232323;
  padding-top: 2rem;
  padding-bottom: 0rem;
}
.cid-u2FDUEHvvt .row {
  align-items: center;
}
.cid-u2FDUEHvvt .text-wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #e4d295;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-u2FDUEHvvt .content {
  position: relative;
  border: 3px solid #000000;
  padding: 40px;
}
.cid-u2FDUEHvvt .label {
  position: absolute;
  border-radius: 20px;
  background-color: #000000;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  font-family: "Josefin Sans";
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
}
@media (max-width: 991px) {
  .cid-u2FDUEHvvt .text-wrapper {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .cid-u2FDUEHvvt .card {
    height: 300px;
  }
}
.cid-u2FDUEHvvt .mbr-section-title,
.cid-u2FDUEHvvt .mbr-section-btn {
  color: #232323;
}
.cid-u2FDUEHvvt .mbr-label {
  color: #e4d295;
}
.cid-u8ATuUAnBf {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #9ca018, #232323);
}
.cid-u8ATuUAnBf .image-block {
  margin: auto;
}
.cid-u8ATuUAnBf figcaption {
  position: relative;
}
.cid-u8ATuUAnBf figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u8ATuUAnBf .image-block {
    width: 100% !important;
  }
}
.cid-u8ATuUAnBf DIV {
  text-align: left;
  color: #ffffff;
}
.cid-upAzOtpTc4 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-upAzOtpTc4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-upAzOtpTc4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-upAzOtpTc4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-upAzOtpTc4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-upAzOtpTc4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-upAzOtpTc4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-upAzOtpTc4 .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-upAzOtpTc4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-upAzOtpTc4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-upAzOtpTc4 .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u2FDUFcYUt {
  background-color: #232323;
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.cid-u2FDUFcYUt .row {
  align-items: center;
}
.cid-u2FDUFcYUt .text-wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #e4d295;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-u2FDUFcYUt .content {
  position: relative;
  border: 3px solid #000000;
  padding: 40px;
}
.cid-u2FDUFcYUt .label {
  position: absolute;
  border-radius: 20px;
  background-color: #000000;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  font-family: "Josefin Sans";
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
}
@media (max-width: 991px) {
  .cid-u2FDUFcYUt .text-wrapper {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .cid-u2FDUFcYUt .card {
    height: 300px;
  }
}
.cid-u2FDUFcYUt .mbr-section-title,
.cid-u2FDUFcYUt .mbr-section-btn {
  color: #232323;
}
.cid-u2FDUFcYUt .mbr-label {
  color: #e4d295;
}
.cid-u2FDUFrIze {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2FDUFrIze .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2FDUFrIze .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2FDUFrIze .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2FDUFrIze .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2FDUFrIze .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2FDUFrIze .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2FDUFrIze .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u2FDUFrIze .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2FDUFrIze .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2FDUFrIze .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u2FDUFHaiH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-u2FDUFHaiH .row {
  display: flex;
  flex-direction: row-reverse;
  border: 1px solid #ffffff;
  margin-top: -1px;
}
.cid-u2FDUFHaiH .title-wrapper {
  padding: 0 12px;
}
.cid-u2FDUFHaiH .text-block {
  padding: 48px 24px;
}
.cid-u2FDUFHaiH .video-wrapper iframe {
  width: 100%;
}
.cid-u2FDUFHaiH .video-block {
  border-left: 1px solid #ffffff;
  padding: 0;
}
.cid-u2FDUFHaiH .mbr-section-title {
  text-align: center;
  color: #FFFFFF;
}
.cid-u2FDUFHaiH .mbr-description {
  text-align: center;
  color: #FFFFFF;
  padding: 16px;
}
@media (min-width: 992px) {
  .cid-u2FDUFHaiH .mbr-description {
    padding: 16px 60px 16px;
  }
}
.cid-u2FDUFHaiH .mbr-text,
.cid-u2FDUFHaiH .mbr-section-subtitle {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-u2FDUFHaiH .video-block {
    border-left: none;
  }
  .cid-u2FDUFHaiH .text-block {
    border-top: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-u2FDUFHaiH .title-wrapper {
    padding: 0 48px;
  }
  .cid-u2FDUFHaiH .text-block {
    padding: 60px;
    border-right: 1px solid #ffffff;
    margin-right: -1px;
    margin-bottom: auto;
  }
}
.cid-u2FDUFHaiH .mbr-text {
  color: #e4d295;
}
.cid-u2FDUFHaiH .mbr-section-subtitle {
  color: #e4d295;
}
.cid-u2FDUFXkWo {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2FDUFXkWo .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2FDUFXkWo .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2FDUFXkWo .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2FDUFXkWo .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2FDUFXkWo .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2FDUFXkWo .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2FDUFXkWo .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u2FDUFXkWo .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2FDUFXkWo .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2FDUFXkWo .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u2FDUGdlkb {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2FDUGdlkb .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2FDUGdlkb .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2FDUGdlkb .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2FDUGdlkb .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2FDUGdlkb .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2FDUGdlkb .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2FDUGdlkb .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u2FDUGdlkb .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2FDUGdlkb .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2FDUGdlkb .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u2FDUGycGo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-u2FDUGycGo .mbr-section-title {
  text-align: center;
}
.cid-u2FDUGycGo .mbr-text {
  color: #e4d295;
  text-align: left;
}
.cid-u2FDUGNgGv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2FDUGNgGv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2FDUGNgGv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2FDUGNgGv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2FDUGNgGv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2FDUGNgGv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2FDUGNgGv .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2FDUGNgGv .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u2FDUGNgGv .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2FDUGNgGv .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2FDUGNgGv .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u2FDUH5GG4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2FDUH5GG4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2FDUH5GG4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2FDUH5GG4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2FDUH5GG4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2FDUH5GG4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2FDUH5GG4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2FDUH5GG4 .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u2FDUH5GG4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2FDUH5GG4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2FDUH5GG4 .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u2FDUHmcqD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2FDUHmcqD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2FDUHmcqD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2FDUHmcqD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2FDUHmcqD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2FDUHmcqD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2FDUHmcqD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2FDUHmcqD .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u2FDUHmcqD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2FDUHmcqD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2FDUHmcqD .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u2FDUHKY9P {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2FDUHKY9P .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2FDUHKY9P .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2FDUHKY9P .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2FDUHKY9P .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2FDUHKY9P .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2FDUHKY9P .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2FDUHKY9P .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u2FDUHKY9P .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2FDUHKY9P .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2FDUHKY9P .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u8H59QRI4S {
  background: #9ff470;
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #232323, #9ff470);
}
.cid-u8H59QRI4S .image-block {
  margin: auto;
}
.cid-u8H59QRI4S figcaption {
  position: relative;
}
.cid-u8H59QRI4S figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u8H59QRI4S .image-block {
    width: 100% !important;
  }
}
.cid-u8H59QRI4S DIV {
  text-align: left;
  color: #ffffff;
}
.cid-u2FDUJ1Qnp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2FDUJ1Qnp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2FDUJ1Qnp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2FDUJ1Qnp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2FDUJ1Qnp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2FDUJ1Qnp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-u2FDUJ1Qnp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2FDUJ1Qnp .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u2FDUJ1Qnp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2FDUJ1Qnp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-u2FDUJ1Qnp .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u2FDUI24J8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-u2FDUI24J8 .mbr-section-title {
  text-align: center;
}
.cid-u2FDUI24J8 .mbr-text {
  color: #e4d295;
  text-align: left;
}
.cid-upAEm80pe4 {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #9ff470, #232323);
}
.cid-upAEm80pe4 .image-block {
  margin: auto;
}
.cid-upAEm80pe4 figcaption {
  position: relative;
}
.cid-upAEm80pe4 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-upAEm80pe4 .image-block {
    width: 100% !important;
  }
}
.cid-upAEm80pe4 DIV {
  text-align: left;
  color: #232323;
}
.cid-u2FDUIiLoG {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2FDUIiLoG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2FDUIiLoG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2FDUIiLoG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2FDUIiLoG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2FDUIiLoG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2FDUIiLoG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2FDUIiLoG .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u2FDUIiLoG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2FDUIiLoG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2FDUIiLoG .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u2FDUIFecR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-u2FDUIFecR .row {
  display: flex;
  flex-direction: row-reverse;
  border: 1px solid #ffffff;
  margin-top: -1px;
}
.cid-u2FDUIFecR .title-wrapper {
  padding: 0 12px;
}
.cid-u2FDUIFecR .text-block {
  padding: 48px 24px;
}
.cid-u2FDUIFecR .video-wrapper iframe {
  width: 100%;
}
.cid-u2FDUIFecR .video-block {
  border-left: 1px solid #ffffff;
  padding: 0;
}
.cid-u2FDUIFecR .mbr-section-title {
  text-align: center;
  color: #FFFFFF;
}
.cid-u2FDUIFecR .mbr-description {
  text-align: center;
  color: #FFFFFF;
  padding: 16px;
}
@media (min-width: 992px) {
  .cid-u2FDUIFecR .mbr-description {
    padding: 16px 60px 16px;
  }
}
.cid-u2FDUIFecR .mbr-text,
.cid-u2FDUIFecR .mbr-section-subtitle {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-u2FDUIFecR .video-block {
    border-left: none;
  }
  .cid-u2FDUIFecR .text-block {
    border-top: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-u2FDUIFecR .title-wrapper {
    padding: 0 48px;
  }
  .cid-u2FDUIFecR .text-block {
    padding: 60px;
    border-right: 1px solid #ffffff;
    margin-right: -1px;
    margin-bottom: auto;
  }
}
.cid-u2FDUIFecR .mbr-text {
  color: #e4d295;
}
.cid-u2FDUIFecR .mbr-section-subtitle {
  color: #e4d295;
}
.cid-u2FDUJkCXc {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u2FDUJkCXc .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u2FDUJkCXc .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u2FDUJkCXc .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u2FDUJkCXc .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u2FDUJkCXc .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u2FDUJkCXc .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u2FDUJkCXc .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u2FDUJkCXc .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u2FDUJkCXc .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u2FDUJkCXc .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u2FDUJkCXc .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2FDUJkCXc .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2FDUJkCXc .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u2FDUJkCXc .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u2FDUJkCXc foot-menu-item {
  color: #cebfaf;
}
.cid-u2FDUJkCXc .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u2FEvrlFNX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2FEvrlFNX .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u2FEvrlFNX .container {
    padding: 0 ;
  }
}
.cid-u2FEvrlFNX .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u2FEvrlFNX .navbar.opened {
  transition: all 0.3s;
}
.cid-u2FEvrlFNX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2FEvrlFNX .navbar .navbar-logo img {
  width: auto;
}
.cid-u2FEvrlFNX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2FEvrlFNX .navbar.collapsed {
  justify-content: center;
}
.cid-u2FEvrlFNX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2FEvrlFNX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2FEvrlFNX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u2FEvrlFNX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2FEvrlFNX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2FEvrlFNX .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-u2FEvrlFNX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2FEvrlFNX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2FEvrlFNX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2FEvrlFNX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2FEvrlFNX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2FEvrlFNX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2FEvrlFNX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2FEvrlFNX .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-u2FEvrlFNX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2FEvrlFNX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2FEvrlFNX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2FEvrlFNX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2FEvrlFNX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2FEvrlFNX .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u2FEvrlFNX .navbar.navbar-short {
  min-height: 110px;
}
.cid-u2FEvrlFNX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2FEvrlFNX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2FEvrlFNX .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u2FEvrlFNX nav.navbar {
  position: fixed;
}
.cid-u2FEvrlFNX .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-u2FEvrlFNX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u2FEvrlFNX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2FEvrlFNX .dropdown-item:hover,
.cid-u2FEvrlFNX .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u2FEvrlFNX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2FEvrlFNX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2FEvrlFNX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2FEvrlFNX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2FEvrlFNX .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2FEvrlFNX .dropdown-menu,
.cid-u2FEvrlFNX .navbar.opened {
  background: #474141 !important;
}
.cid-u2FEvrlFNX .nav-item:focus,
.cid-u2FEvrlFNX .nav-link:focus {
  outline: none;
}
.cid-u2FEvrlFNX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2FEvrlFNX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2FEvrlFNX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2FEvrlFNX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2FEvrlFNX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2FEvrlFNX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2FEvrlFNX .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-u2FEvrlFNX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2FEvrlFNX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2FEvrlFNX .dropdown-item.active,
.cid-u2FEvrlFNX .dropdown-item:active {
  background-color: transparent;
}
.cid-u2FEvrlFNX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2FEvrlFNX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2FEvrlFNX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2FEvrlFNX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u2FEvrlFNX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2FEvrlFNX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2FEvrlFNX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2FEvrlFNX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2FEvrlFNX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2FEvrlFNX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u2FEvrlFNX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2FEvrlFNX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2FEvrlFNX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2FEvrlFNX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2FEvrlFNX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2FEvrlFNX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2FEvrlFNX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2FEvrlFNX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2FEvrlFNX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2FEvrlFNX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2FEvrlFNX .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-u2FEvrlFNX .navbar {
    height: 70px;
  }
  .cid-u2FEvrlFNX .navbar.opened {
    height: auto;
  }
  .cid-u2FEvrlFNX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2FEvrlFNX .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u2FEvrlFNX .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u2FEvrPbKX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #474141;
}
.cid-u2FEvrPbKX .mbr-text,
.cid-u2FEvrPbKX blockquote {
  color: #767676;
}
.cid-u2FEvrWXvw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #474141;
}
.cid-u2FEvrWXvw .mbr-text,
.cid-u2FEvrWXvw blockquote {
  color: #767676;
}
.cid-u2FEvs5INm {
  background: #f9e2c5;
  background: linear-gradient(0deg, #fbaa8f, #f9e2c5);
}
.cid-u2FEvs5INm .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u2FEvs5INm figcaption {
  position: relative;
}
.cid-u2FEvs5INm figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u2FEvs5INm .image-block {
    width: 100% !important;
  }
}
.cid-u2FEvs5INm DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u2FEvvwbPn {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u2FEvvwbPn .mbr-text,
.cid-u2FEvvwbPn blockquote {
  color: #767676;
}
.cid-u2FEvvwbPn .mbr-text {
  color: #e4d295;
}
.cid-u2FEvvH3qX {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2FEvvH3qX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2FEvvH3qX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2FEvvH3qX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2FEvvH3qX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2FEvvH3qX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2FEvvH3qX .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2FEvvH3qX .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u2FEvvH3qX .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2FEvvH3qX .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2FEvvH3qX .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u2FEvwa8N8 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u2FEvwa8N8 .mbr-text,
.cid-u2FEvwa8N8 blockquote {
  color: #767676;
}
.cid-u2FEvwa8N8 .mbr-text {
  color: #e4d295;
}
.cid-u2FEvwnFrD {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2FEvwnFrD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2FEvwnFrD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2FEvwnFrD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2FEvwnFrD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2FEvwnFrD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2FEvwnFrD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2FEvwnFrD .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u2FEvwnFrD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2FEvwnFrD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2FEvwnFrD .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u2FEvBYSkT {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u2FEvBYSkT .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u2FEvBYSkT .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u2FEvBYSkT .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u2FEvBYSkT .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u2FEvBYSkT .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u2FEvBYSkT .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u2FEvBYSkT .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u2FEvBYSkT .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u2FEvBYSkT .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u2FEvBYSkT .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u2FEvBYSkT .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2FEvBYSkT .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2FEvBYSkT .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u2FEvBYSkT .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u2FEvBYSkT foot-menu-item {
  color: #cebfaf;
}
.cid-u2FEvBYSkT .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u2RZKD9KIg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2RZKD9KIg .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u2RZKD9KIg .container {
    padding: 0 ;
  }
}
.cid-u2RZKD9KIg .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u2RZKD9KIg .navbar.opened {
  transition: all 0.3s;
}
.cid-u2RZKD9KIg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2RZKD9KIg .navbar .navbar-logo img {
  width: auto;
}
.cid-u2RZKD9KIg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2RZKD9KIg .navbar.collapsed {
  justify-content: center;
}
.cid-u2RZKD9KIg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2RZKD9KIg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2RZKD9KIg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u2RZKD9KIg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2RZKD9KIg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2RZKD9KIg .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-u2RZKD9KIg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2RZKD9KIg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2RZKD9KIg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2RZKD9KIg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2RZKD9KIg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2RZKD9KIg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2RZKD9KIg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2RZKD9KIg .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-u2RZKD9KIg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2RZKD9KIg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2RZKD9KIg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2RZKD9KIg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2RZKD9KIg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2RZKD9KIg .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u2RZKD9KIg .navbar.navbar-short {
  min-height: 110px;
}
.cid-u2RZKD9KIg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2RZKD9KIg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2RZKD9KIg .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u2RZKD9KIg nav.navbar {
  position: fixed;
}
.cid-u2RZKD9KIg .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-u2RZKD9KIg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u2RZKD9KIg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2RZKD9KIg .dropdown-item:hover,
.cid-u2RZKD9KIg .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u2RZKD9KIg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2RZKD9KIg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2RZKD9KIg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2RZKD9KIg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2RZKD9KIg .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2RZKD9KIg .dropdown-menu,
.cid-u2RZKD9KIg .navbar.opened {
  background: #474141 !important;
}
.cid-u2RZKD9KIg .nav-item:focus,
.cid-u2RZKD9KIg .nav-link:focus {
  outline: none;
}
.cid-u2RZKD9KIg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2RZKD9KIg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2RZKD9KIg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2RZKD9KIg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2RZKD9KIg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2RZKD9KIg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2RZKD9KIg .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-u2RZKD9KIg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2RZKD9KIg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2RZKD9KIg .dropdown-item.active,
.cid-u2RZKD9KIg .dropdown-item:active {
  background-color: transparent;
}
.cid-u2RZKD9KIg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2RZKD9KIg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2RZKD9KIg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2RZKD9KIg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u2RZKD9KIg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2RZKD9KIg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2RZKD9KIg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2RZKD9KIg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2RZKD9KIg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2RZKD9KIg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u2RZKD9KIg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2RZKD9KIg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2RZKD9KIg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2RZKD9KIg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2RZKD9KIg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2RZKD9KIg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2RZKD9KIg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2RZKD9KIg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2RZKD9KIg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2RZKD9KIg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2RZKD9KIg .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-u2RZKD9KIg .navbar {
    height: 70px;
  }
  .cid-u2RZKD9KIg .navbar.opened {
    height: auto;
  }
  .cid-u2RZKD9KIg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2RZKD9KIg .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u2RZKD9KIg .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u2RZKDsLNd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u2RZKDsLNd .mbr-text,
.cid-u2RZKDsLNd blockquote {
  color: #767676;
}
.cid-u2RZKDznf6 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u2RZKDznf6 .mbr-text,
.cid-u2RZKDznf6 blockquote {
  color: #767676;
}
.cid-u2RZKDFHHO {
  background: #232323;
}
.cid-u2RZKDFHHO .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u2RZKDFHHO figcaption {
  position: relative;
}
.cid-u2RZKDFHHO figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u2RZKDFHHO .image-block {
    width: 100% !important;
  }
}
.cid-u2RZKDFHHO DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u2RZKDNVEU {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u2RZKDNVEU .mbr-text,
.cid-u2RZKDNVEU blockquote {
  color: #767676;
}
.cid-u2RZKDNVEU .mbr-text {
  color: #e4d295;
}
.cid-u9h5v2mBE5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u9h5v2mBE5 .mbr-text,
.cid-u9h5v2mBE5 blockquote {
  color: #767676;
}
.cid-u9h5v2mBE5 .mbr-text {
  color: #b1a374;
}
.cid-u9h5v2mBE5 .mbr-text P {
  text-align: left;
}
.cid-u2XinBnnr7 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2XinBnnr7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2XinBnnr7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2XinBnnr7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2XinBnnr7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2XinBnnr7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2XinBnnr7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2XinBnnr7 .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u2XinBnnr7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2XinBnnr7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2XinBnnr7 .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u5XJt2I7Mg {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #e48a1a, #232323);
}
.cid-u5XJt2I7Mg .image-block {
  margin: auto;
}
.cid-u5XJt2I7Mg figcaption {
  position: relative;
}
.cid-u5XJt2I7Mg figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u5XJt2I7Mg .image-block {
    width: 100% !important;
  }
}
.cid-u5XJt2I7Mg DIV {
  text-align: right;
  color: #ffffff;
}
.cid-u2XrXy2sl5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-u2XrXy2sl5 .row {
  display: flex;
  flex-direction: row-reverse;
  border: 1px solid #ffffff;
  margin-top: -1px;
}
.cid-u2XrXy2sl5 .title-wrapper {
  padding: 0 12px;
}
.cid-u2XrXy2sl5 .text-block {
  padding: 48px 24px;
}
.cid-u2XrXy2sl5 .video-wrapper iframe {
  width: 100%;
}
.cid-u2XrXy2sl5 .video-block {
  border-left: 1px solid #ffffff;
  padding: 0;
}
.cid-u2XrXy2sl5 .mbr-section-title {
  text-align: center;
  color: #FFFFFF;
}
.cid-u2XrXy2sl5 .mbr-description {
  text-align: center;
  color: #FFFFFF;
  padding: 16px;
}
@media (min-width: 992px) {
  .cid-u2XrXy2sl5 .mbr-description {
    padding: 16px 60px 16px;
  }
}
.cid-u2XrXy2sl5 .mbr-text,
.cid-u2XrXy2sl5 .mbr-section-subtitle {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-u2XrXy2sl5 .video-block {
    border-left: none;
  }
  .cid-u2XrXy2sl5 .text-block {
    border-top: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-u2XrXy2sl5 .title-wrapper {
    padding: 0 48px;
  }
  .cid-u2XrXy2sl5 .text-block {
    padding: 60px;
    border-right: 1px solid #ffffff;
    margin-right: -1px;
    margin-bottom: auto;
  }
}
.cid-u2XrXy2sl5 .mbr-text {
  color: #e4d295;
}
.cid-u2XrXy2sl5 .mbr-section-subtitle {
  color: #e4d295;
}
.cid-u2RZKFjQfH {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u2RZKFjQfH .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u2RZKFjQfH .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u2RZKFjQfH .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u2RZKFjQfH .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u2RZKFjQfH .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u2RZKFjQfH .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u2RZKFjQfH .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u2RZKFjQfH .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u2RZKFjQfH .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u2RZKFjQfH .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u2RZKFjQfH .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2RZKFjQfH .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2RZKFjQfH .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u2RZKFjQfH .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u2RZKFjQfH foot-menu-item {
  color: #cebfaf;
}
.cid-u2RZKFjQfH .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u2S03ghmzo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2S03ghmzo .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u2S03ghmzo .container {
    padding: 0 ;
  }
}
.cid-u2S03ghmzo .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u2S03ghmzo .navbar.opened {
  transition: all 0.3s;
}
.cid-u2S03ghmzo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2S03ghmzo .navbar .navbar-logo img {
  width: auto;
}
.cid-u2S03ghmzo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2S03ghmzo .navbar.collapsed {
  justify-content: center;
}
.cid-u2S03ghmzo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2S03ghmzo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2S03ghmzo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u2S03ghmzo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2S03ghmzo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2S03ghmzo .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-u2S03ghmzo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2S03ghmzo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2S03ghmzo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2S03ghmzo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2S03ghmzo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2S03ghmzo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2S03ghmzo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2S03ghmzo .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-u2S03ghmzo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2S03ghmzo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2S03ghmzo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2S03ghmzo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2S03ghmzo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2S03ghmzo .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u2S03ghmzo .navbar.navbar-short {
  min-height: 110px;
}
.cid-u2S03ghmzo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2S03ghmzo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2S03ghmzo .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u2S03ghmzo nav.navbar {
  position: fixed;
}
.cid-u2S03ghmzo .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-u2S03ghmzo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u2S03ghmzo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2S03ghmzo .dropdown-item:hover,
.cid-u2S03ghmzo .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u2S03ghmzo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2S03ghmzo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2S03ghmzo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2S03ghmzo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2S03ghmzo .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2S03ghmzo .dropdown-menu,
.cid-u2S03ghmzo .navbar.opened {
  background: #474141 !important;
}
.cid-u2S03ghmzo .nav-item:focus,
.cid-u2S03ghmzo .nav-link:focus {
  outline: none;
}
.cid-u2S03ghmzo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2S03ghmzo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2S03ghmzo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2S03ghmzo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2S03ghmzo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2S03ghmzo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2S03ghmzo .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-u2S03ghmzo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2S03ghmzo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2S03ghmzo .dropdown-item.active,
.cid-u2S03ghmzo .dropdown-item:active {
  background-color: transparent;
}
.cid-u2S03ghmzo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2S03ghmzo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2S03ghmzo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2S03ghmzo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u2S03ghmzo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2S03ghmzo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2S03ghmzo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2S03ghmzo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2S03ghmzo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2S03ghmzo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u2S03ghmzo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2S03ghmzo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2S03ghmzo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2S03ghmzo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2S03ghmzo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2S03ghmzo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2S03ghmzo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2S03ghmzo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2S03ghmzo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2S03ghmzo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2S03ghmzo .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-u2S03ghmzo .navbar {
    height: 70px;
  }
  .cid-u2S03ghmzo .navbar.opened {
    height: auto;
  }
  .cid-u2S03ghmzo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2S03ghmzo .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u2S03ghmzo .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u2S03gAHtH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u2S03gAHtH .mbr-text,
.cid-u2S03gAHtH blockquote {
  color: #767676;
}
.cid-uaAhX4Lv8E {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-uaAhX4Lv8E .mbr-text,
.cid-uaAhX4Lv8E blockquote {
  color: #767676;
}
.cid-u2S03gN87x {
  background: #232323;
}
.cid-u2S03gN87x .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u2S03gN87x figcaption {
  position: relative;
}
.cid-u2S03gN87x figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u2S03gN87x .image-block {
    width: 100% !important;
  }
}
.cid-u2S03gN87x DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u2S03gUq72 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u2S03gUq72 .mbr-text,
.cid-u2S03gUq72 blockquote {
  color: #767676;
}
.cid-u2S03gUq72 .mbr-text {
  color: #e4d295;
}
.cid-u2S03h1BMP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u2S03h1BMP .mbr-text,
.cid-u2S03h1BMP blockquote {
  color: #767676;
}
.cid-u2S03h1BMP .mbr-text {
  color: #b1a374;
}
.cid-u2S03h1BMP .mbr-text P {
  text-align: left;
}
.cid-u2XsV6cynz {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2XsV6cynz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2XsV6cynz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2XsV6cynz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2XsV6cynz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2XsV6cynz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2XsV6cynz .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2XsV6cynz .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-u2XsV6cynz .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2XsV6cynz .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2XsV6cynz .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u2XwVQyD6Z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-u2XwVQyD6Z .row {
  display: flex;
  flex-direction: row-reverse;
  border: 1px solid #ffffff;
  margin-top: -1px;
}
.cid-u2XwVQyD6Z .title-wrapper {
  padding: 0 12px;
}
.cid-u2XwVQyD6Z .text-block {
  padding: 48px 24px;
}
.cid-u2XwVQyD6Z .video-wrapper iframe {
  width: 100%;
}
.cid-u2XwVQyD6Z .video-block {
  border-left: 1px solid #ffffff;
  padding: 0;
}
.cid-u2XwVQyD6Z .mbr-section-title {
  text-align: center;
  color: #FFFFFF;
}
.cid-u2XwVQyD6Z .mbr-description {
  text-align: center;
  color: #FFFFFF;
  padding: 16px;
}
@media (min-width: 992px) {
  .cid-u2XwVQyD6Z .mbr-description {
    padding: 16px 60px 16px;
  }
}
.cid-u2XwVQyD6Z .mbr-text,
.cid-u2XwVQyD6Z .mbr-section-subtitle {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-u2XwVQyD6Z .video-block {
    border-left: none;
  }
  .cid-u2XwVQyD6Z .text-block {
    border-top: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-u2XwVQyD6Z .title-wrapper {
    padding: 0 48px;
  }
  .cid-u2XwVQyD6Z .text-block {
    padding: 60px;
    border-right: 1px solid #ffffff;
    margin-right: -1px;
    margin-bottom: auto;
  }
}
.cid-u2XwVQyD6Z .mbr-text {
  color: #e4d295;
}
.cid-u2XwVQyD6Z .mbr-section-subtitle {
  color: #e4d295;
}
.cid-u2S03hRYw3 {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u2S03hRYw3 .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u2S03hRYw3 .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u2S03hRYw3 .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u2S03hRYw3 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u2S03hRYw3 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u2S03hRYw3 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u2S03hRYw3 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u2S03hRYw3 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u2S03hRYw3 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u2S03hRYw3 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u2S03hRYw3 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2S03hRYw3 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2S03hRYw3 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u2S03hRYw3 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u2S03hRYw3 foot-menu-item {
  color: #cebfaf;
}
.cid-u2S03hRYw3 .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u2S06WRX7q {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2S06WRX7q .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u2S06WRX7q .container {
    padding: 0 ;
  }
}
.cid-u2S06WRX7q .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u2S06WRX7q .navbar.opened {
  transition: all 0.3s;
}
.cid-u2S06WRX7q .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2S06WRX7q .navbar .navbar-logo img {
  width: auto;
}
.cid-u2S06WRX7q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2S06WRX7q .navbar.collapsed {
  justify-content: center;
}
.cid-u2S06WRX7q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2S06WRX7q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2S06WRX7q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u2S06WRX7q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2S06WRX7q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2S06WRX7q .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-u2S06WRX7q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2S06WRX7q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2S06WRX7q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2S06WRX7q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2S06WRX7q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2S06WRX7q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2S06WRX7q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2S06WRX7q .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-u2S06WRX7q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2S06WRX7q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2S06WRX7q .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2S06WRX7q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2S06WRX7q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2S06WRX7q .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u2S06WRX7q .navbar.navbar-short {
  min-height: 110px;
}
.cid-u2S06WRX7q .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2S06WRX7q .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2S06WRX7q .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u2S06WRX7q nav.navbar {
  position: fixed;
}
.cid-u2S06WRX7q .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-u2S06WRX7q .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u2S06WRX7q .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2S06WRX7q .dropdown-item:hover,
.cid-u2S06WRX7q .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u2S06WRX7q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2S06WRX7q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2S06WRX7q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2S06WRX7q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2S06WRX7q .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2S06WRX7q .dropdown-menu,
.cid-u2S06WRX7q .navbar.opened {
  background: #474141 !important;
}
.cid-u2S06WRX7q .nav-item:focus,
.cid-u2S06WRX7q .nav-link:focus {
  outline: none;
}
.cid-u2S06WRX7q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2S06WRX7q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2S06WRX7q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2S06WRX7q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2S06WRX7q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2S06WRX7q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2S06WRX7q .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-u2S06WRX7q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2S06WRX7q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2S06WRX7q .dropdown-item.active,
.cid-u2S06WRX7q .dropdown-item:active {
  background-color: transparent;
}
.cid-u2S06WRX7q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2S06WRX7q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2S06WRX7q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2S06WRX7q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u2S06WRX7q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2S06WRX7q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2S06WRX7q ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2S06WRX7q .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2S06WRX7q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2S06WRX7q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u2S06WRX7q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2S06WRX7q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2S06WRX7q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2S06WRX7q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2S06WRX7q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2S06WRX7q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2S06WRX7q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2S06WRX7q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2S06WRX7q .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2S06WRX7q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2S06WRX7q .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-u2S06WRX7q .navbar {
    height: 70px;
  }
  .cid-u2S06WRX7q .navbar.opened {
    height: auto;
  }
  .cid-u2S06WRX7q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2S06WRX7q .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u2S06WRX7q .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u2S06X9Lj3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u2S06X9Lj3 .mbr-text,
.cid-u2S06X9Lj3 blockquote {
  color: #767676;
}
.cid-u2S06XfkZT {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u2S06XfkZT .mbr-text,
.cid-u2S06XfkZT blockquote {
  color: #767676;
}
.cid-u2S06XnREO {
  background: #232323;
}
.cid-u2S06XnREO .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u2S06XnREO figcaption {
  position: relative;
}
.cid-u2S06XnREO figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u2S06XnREO .image-block {
    width: 100% !important;
  }
}
.cid-u2S06XnREO DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u2S06Xud6X {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u2S06Xud6X .mbr-text,
.cid-u2S06Xud6X blockquote {
  color: #767676;
}
.cid-u2S06Xud6X .mbr-text {
  color: #e4d295;
}
.cid-u9h5Y6S2Kt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u9h5Y6S2Kt .mbr-text,
.cid-u9h5Y6S2Kt blockquote {
  color: #767676;
}
.cid-u9h5Y6S2Kt .mbr-text {
  color: #b1a374;
}
.cid-u9h5Y6S2Kt .mbr-text P {
  text-align: left;
}
.cid-u2XJxdruA8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u2XJxdruA8 .mbr-text,
.cid-u2XJxdruA8 blockquote {
  color: #767676;
}
.cid-u2XJxdruA8 .mbr-text {
  color: #e4d295;
}
.cid-u2XzMr3K6d {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2XzMr3K6d .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2XzMr3K6d .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2XzMr3K6d .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2XzMr3K6d .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2XzMr3K6d .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2XzMr3K6d .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2XzMr3K6d .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-u2XzMr3K6d .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2XzMr3K6d .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2XzMr3K6d .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u2XJD0D3gq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u2XJD0D3gq .mbr-text,
.cid-u2XJD0D3gq blockquote {
  color: #767676;
}
.cid-u2XJD0D3gq .mbr-text {
  color: #e4d295;
}
.cid-u2XJEQ3714 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2XJEQ3714 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2XJEQ3714 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2XJEQ3714 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2XJEQ3714 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2XJEQ3714 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2XJEQ3714 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2XJEQ3714 .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u2XJEQ3714 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2XJEQ3714 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2XJEQ3714 .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-upAOyfDJLU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-upAOyfDJLU .mbr-text,
.cid-upAOyfDJLU blockquote {
  color: #767676;
}
.cid-upAOyfDJLU .mbr-text {
  color: #e4d295;
}
.cid-upAOCprzMI {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-upAOCprzMI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-upAOCprzMI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-upAOCprzMI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-upAOCprzMI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-upAOCprzMI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-upAOCprzMI .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-upAOCprzMI .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-upAOCprzMI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-upAOCprzMI .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-upAOCprzMI .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u2S06Yup2J {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u2S06Yup2J .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u2S06Yup2J .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u2S06Yup2J .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u2S06Yup2J .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u2S06Yup2J .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u2S06Yup2J .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u2S06Yup2J .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u2S06Yup2J .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u2S06Yup2J .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u2S06Yup2J .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u2S06Yup2J .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2S06Yup2J .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2S06Yup2J .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u2S06Yup2J .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u2S06Yup2J foot-menu-item {
  color: #cebfaf;
}
.cid-u2S06Yup2J .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u2S0azIrIq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2S0azIrIq .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u2S0azIrIq .container {
    padding: 0 ;
  }
}
.cid-u2S0azIrIq .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u2S0azIrIq .navbar.opened {
  transition: all 0.3s;
}
.cid-u2S0azIrIq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2S0azIrIq .navbar .navbar-logo img {
  width: auto;
}
.cid-u2S0azIrIq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2S0azIrIq .navbar.collapsed {
  justify-content: center;
}
.cid-u2S0azIrIq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2S0azIrIq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2S0azIrIq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u2S0azIrIq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2S0azIrIq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2S0azIrIq .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-u2S0azIrIq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2S0azIrIq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2S0azIrIq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2S0azIrIq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2S0azIrIq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2S0azIrIq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2S0azIrIq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2S0azIrIq .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-u2S0azIrIq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2S0azIrIq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2S0azIrIq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2S0azIrIq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2S0azIrIq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2S0azIrIq .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u2S0azIrIq .navbar.navbar-short {
  min-height: 110px;
}
.cid-u2S0azIrIq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2S0azIrIq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2S0azIrIq .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u2S0azIrIq nav.navbar {
  position: fixed;
}
.cid-u2S0azIrIq .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-u2S0azIrIq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u2S0azIrIq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2S0azIrIq .dropdown-item:hover,
.cid-u2S0azIrIq .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u2S0azIrIq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2S0azIrIq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2S0azIrIq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2S0azIrIq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2S0azIrIq .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2S0azIrIq .dropdown-menu,
.cid-u2S0azIrIq .navbar.opened {
  background: #474141 !important;
}
.cid-u2S0azIrIq .nav-item:focus,
.cid-u2S0azIrIq .nav-link:focus {
  outline: none;
}
.cid-u2S0azIrIq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2S0azIrIq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2S0azIrIq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2S0azIrIq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2S0azIrIq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2S0azIrIq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2S0azIrIq .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-u2S0azIrIq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2S0azIrIq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2S0azIrIq .dropdown-item.active,
.cid-u2S0azIrIq .dropdown-item:active {
  background-color: transparent;
}
.cid-u2S0azIrIq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2S0azIrIq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2S0azIrIq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2S0azIrIq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u2S0azIrIq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2S0azIrIq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2S0azIrIq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2S0azIrIq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2S0azIrIq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2S0azIrIq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u2S0azIrIq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2S0azIrIq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2S0azIrIq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2S0azIrIq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2S0azIrIq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2S0azIrIq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2S0azIrIq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2S0azIrIq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2S0azIrIq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2S0azIrIq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2S0azIrIq .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-u2S0azIrIq .navbar {
    height: 70px;
  }
  .cid-u2S0azIrIq .navbar.opened {
    height: auto;
  }
  .cid-u2S0azIrIq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2S0azIrIq .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u2S0azIrIq .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u2S0aA0SJo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u2S0aA0SJo .mbr-text,
.cid-u2S0aA0SJo blockquote {
  color: #767676;
}
.cid-u2S0aA6Qm4 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u2S0aA6Qm4 .mbr-text,
.cid-u2S0aA6Qm4 blockquote {
  color: #767676;
}
.cid-u2S0aAcZK3 {
  background: #232323;
}
.cid-u2S0aAcZK3 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u2S0aAcZK3 figcaption {
  position: relative;
}
.cid-u2S0aAcZK3 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u2S0aAcZK3 .image-block {
    width: 100% !important;
  }
}
.cid-u2S0aAcZK3 DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u2S0aAkMS0 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u2S0aAkMS0 .mbr-text,
.cid-u2S0aAkMS0 blockquote {
  color: #767676;
}
.cid-u2S0aAkMS0 .mbr-text {
  color: #e4d295;
}
.cid-u9haWkL2ai {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u9haWkL2ai .mbr-text,
.cid-u9haWkL2ai blockquote {
  color: #767676;
}
.cid-u9haWkL2ai .mbr-text {
  color: #b1a374;
}
.cid-u9haWkL2ai .mbr-text P {
  text-align: left;
}
.cid-u2S0aAzhT2 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2S0aAzhT2 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2S0aAzhT2 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2S0aAzhT2 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2S0aAzhT2 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2S0aAzhT2 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2S0aAzhT2 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2S0aAzhT2 .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-u2S0aAzhT2 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2S0aAzhT2 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2S0aAzhT2 .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u39qeVQJp8 {
  background-color: #232323;
  padding-top: 0rem;
  padding-bottom: 1rem;
}
.cid-u39qeVQJp8 .row {
  align-items: center;
}
.cid-u39qeVQJp8 .text-wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #e4d295;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-u39qeVQJp8 .content {
  position: relative;
  border: 3px solid #000000;
  padding: 40px;
}
.cid-u39qeVQJp8 .label {
  position: absolute;
  border-radius: 20px;
  background-color: #000000;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  font-family: "Josefin Sans";
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
}
@media (max-width: 991px) {
  .cid-u39qeVQJp8 .text-wrapper {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .cid-u39qeVQJp8 .card {
    height: 300px;
  }
}
.cid-u39qeVQJp8 .mbr-section-title,
.cid-u39qeVQJp8 .mbr-section-btn {
  color: #232323;
}
.cid-u39qeVQJp8 .mbr-label {
  color: #e4d295;
}
.cid-u9hbepxjJq {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #9ff470, #232323);
}
.cid-u9hbepxjJq .image-block {
  margin: auto;
}
.cid-u9hbepxjJq figcaption {
  position: relative;
}
.cid-u9hbepxjJq figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u9hbepxjJq .image-block {
    width: 100% !important;
  }
}
.cid-u9hbepxjJq DIV {
  text-align: left;
  color: #ffffff;
}
.cid-u39rk8edUw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u39rk8edUw .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u39rk8edUw .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u39rk8edUw .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u39rk8edUw .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u39rk8edUw .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u39rk8edUw .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u39rk8edUw .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-u39rk8edUw .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u39rk8edUw .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u39rk8edUw .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-udZdDbVKWE {
  background: #a2f375;
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #232323, #a2f375);
}
.cid-udZdDbVKWE .image-block {
  margin: auto;
}
.cid-udZdDbVKWE figcaption {
  position: relative;
}
.cid-udZdDbVKWE figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-udZdDbVKWE .image-block {
    width: 100% !important;
  }
}
.cid-udZdDbVKWE DIV {
  text-align: left;
  color: #efefef;
}
.cid-u2S0aBjtdd {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u2S0aBjtdd .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u2S0aBjtdd .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u2S0aBjtdd .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u2S0aBjtdd .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u2S0aBjtdd .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u2S0aBjtdd .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u2S0aBjtdd .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u2S0aBjtdd .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u2S0aBjtdd .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u2S0aBjtdd .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u2S0aBjtdd .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2S0aBjtdd .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2S0aBjtdd .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u2S0aBjtdd .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u2S0aBjtdd foot-menu-item {
  color: #cebfaf;
}
.cid-u2S0aBjtdd .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u2S0hiGLAb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2S0hiGLAb .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u2S0hiGLAb .container {
    padding: 0 ;
  }
}
.cid-u2S0hiGLAb .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u2S0hiGLAb .navbar.opened {
  transition: all 0.3s;
}
.cid-u2S0hiGLAb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2S0hiGLAb .navbar .navbar-logo img {
  width: auto;
}
.cid-u2S0hiGLAb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2S0hiGLAb .navbar.collapsed {
  justify-content: center;
}
.cid-u2S0hiGLAb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2S0hiGLAb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2S0hiGLAb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u2S0hiGLAb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2S0hiGLAb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2S0hiGLAb .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-u2S0hiGLAb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2S0hiGLAb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2S0hiGLAb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2S0hiGLAb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2S0hiGLAb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2S0hiGLAb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2S0hiGLAb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2S0hiGLAb .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-u2S0hiGLAb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2S0hiGLAb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2S0hiGLAb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2S0hiGLAb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2S0hiGLAb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2S0hiGLAb .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u2S0hiGLAb .navbar.navbar-short {
  min-height: 110px;
}
.cid-u2S0hiGLAb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2S0hiGLAb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2S0hiGLAb .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u2S0hiGLAb nav.navbar {
  position: fixed;
}
.cid-u2S0hiGLAb .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-u2S0hiGLAb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u2S0hiGLAb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2S0hiGLAb .dropdown-item:hover,
.cid-u2S0hiGLAb .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u2S0hiGLAb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2S0hiGLAb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2S0hiGLAb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2S0hiGLAb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2S0hiGLAb .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2S0hiGLAb .dropdown-menu,
.cid-u2S0hiGLAb .navbar.opened {
  background: #474141 !important;
}
.cid-u2S0hiGLAb .nav-item:focus,
.cid-u2S0hiGLAb .nav-link:focus {
  outline: none;
}
.cid-u2S0hiGLAb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2S0hiGLAb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2S0hiGLAb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2S0hiGLAb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2S0hiGLAb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2S0hiGLAb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2S0hiGLAb .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-u2S0hiGLAb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2S0hiGLAb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2S0hiGLAb .dropdown-item.active,
.cid-u2S0hiGLAb .dropdown-item:active {
  background-color: transparent;
}
.cid-u2S0hiGLAb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2S0hiGLAb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2S0hiGLAb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2S0hiGLAb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u2S0hiGLAb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2S0hiGLAb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2S0hiGLAb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2S0hiGLAb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2S0hiGLAb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2S0hiGLAb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u2S0hiGLAb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2S0hiGLAb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2S0hiGLAb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2S0hiGLAb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2S0hiGLAb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2S0hiGLAb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2S0hiGLAb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2S0hiGLAb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2S0hiGLAb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2S0hiGLAb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2S0hiGLAb .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-u2S0hiGLAb .navbar {
    height: 70px;
  }
  .cid-u2S0hiGLAb .navbar.opened {
    height: auto;
  }
  .cid-u2S0hiGLAb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2S0hiGLAb .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u2S0hiGLAb .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u2S0hiY25q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u2S0hiY25q .mbr-text,
.cid-u2S0hiY25q blockquote {
  color: #767676;
}
.cid-u2S0hj4dM7 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u2S0hj4dM7 .mbr-text,
.cid-u2S0hj4dM7 blockquote {
  color: #767676;
}
.cid-u2S0hjaRBq {
  background: #232323;
}
.cid-u2S0hjaRBq .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u2S0hjaRBq figcaption {
  position: relative;
}
.cid-u2S0hjaRBq figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u2S0hjaRBq .image-block {
    width: 100% !important;
  }
}
.cid-u2S0hjaRBq DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u2S0hjioFl {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u2S0hjioFl .mbr-text,
.cid-u2S0hjioFl blockquote {
  color: #767676;
}
.cid-u2S0hjioFl .mbr-text {
  color: #e4d295;
}
.cid-u9hc65CxWS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u9hc65CxWS .mbr-text,
.cid-u9hc65CxWS blockquote {
  color: #767676;
}
.cid-u9hc65CxWS .mbr-text {
  color: #b1a374;
}
.cid-u9hc65CxWS .mbr-text P {
  text-align: left;
}
.cid-upAOUxohSC {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #9ff470, #232323);
}
.cid-upAOUxohSC .image-block {
  margin: auto;
}
.cid-upAOUxohSC figcaption {
  position: relative;
}
.cid-upAOUxohSC figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-upAOUxohSC .image-block {
    width: 100% !important;
  }
}
.cid-upAOUxohSC DIV {
  text-align: left;
  color: #232323;
}
.cid-uaAukQUkdM {
  background: #a2f375;
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #232323, #a2f375);
}
.cid-uaAukQUkdM .image-block {
  margin: auto;
}
.cid-uaAukQUkdM figcaption {
  position: relative;
}
.cid-uaAukQUkdM figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uaAukQUkdM .image-block {
    width: 100% !important;
  }
}
.cid-uaAukQUkdM DIV {
  text-align: left;
  color: #465052;
}
.cid-u2S0hjvYM5 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2S0hjvYM5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2S0hjvYM5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2S0hjvYM5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2S0hjvYM5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2S0hjvYM5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2S0hjvYM5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2S0hjvYM5 .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-u2S0hjvYM5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2S0hjvYM5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2S0hjvYM5 .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u3Uh2W3h04 {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #9ff470, #232323);
}
.cid-u3Uh2W3h04 .image-block {
  margin: auto;
}
.cid-u3Uh2W3h04 figcaption {
  position: relative;
}
.cid-u3Uh2W3h04 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u3Uh2W3h04 .image-block {
    width: 100% !important;
  }
}
.cid-u3Uh2W3h04 DIV {
  text-align: left;
  color: #ffffff;
}
.cid-u2S0hkh0jC {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u2S0hkh0jC .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u2S0hkh0jC .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u2S0hkh0jC .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u2S0hkh0jC .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u2S0hkh0jC .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u2S0hkh0jC .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u2S0hkh0jC .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u2S0hkh0jC .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u2S0hkh0jC .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u2S0hkh0jC .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u2S0hkh0jC .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2S0hkh0jC .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2S0hkh0jC .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u2S0hkh0jC .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u2S0hkh0jC foot-menu-item {
  color: #cebfaf;
}
.cid-u2S0hkh0jC .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u2S0kIWQQM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2S0kIWQQM .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u2S0kIWQQM .container {
    padding: 0 ;
  }
}
.cid-u2S0kIWQQM .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u2S0kIWQQM .navbar.opened {
  transition: all 0.3s;
}
.cid-u2S0kIWQQM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2S0kIWQQM .navbar .navbar-logo img {
  width: auto;
}
.cid-u2S0kIWQQM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2S0kIWQQM .navbar.collapsed {
  justify-content: center;
}
.cid-u2S0kIWQQM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2S0kIWQQM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2S0kIWQQM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u2S0kIWQQM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2S0kIWQQM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2S0kIWQQM .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-u2S0kIWQQM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2S0kIWQQM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2S0kIWQQM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2S0kIWQQM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2S0kIWQQM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2S0kIWQQM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2S0kIWQQM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2S0kIWQQM .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-u2S0kIWQQM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2S0kIWQQM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2S0kIWQQM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2S0kIWQQM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2S0kIWQQM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2S0kIWQQM .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u2S0kIWQQM .navbar.navbar-short {
  min-height: 110px;
}
.cid-u2S0kIWQQM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2S0kIWQQM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2S0kIWQQM .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u2S0kIWQQM nav.navbar {
  position: fixed;
}
.cid-u2S0kIWQQM .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-u2S0kIWQQM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u2S0kIWQQM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2S0kIWQQM .dropdown-item:hover,
.cid-u2S0kIWQQM .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u2S0kIWQQM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2S0kIWQQM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2S0kIWQQM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2S0kIWQQM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2S0kIWQQM .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2S0kIWQQM .dropdown-menu,
.cid-u2S0kIWQQM .navbar.opened {
  background: #474141 !important;
}
.cid-u2S0kIWQQM .nav-item:focus,
.cid-u2S0kIWQQM .nav-link:focus {
  outline: none;
}
.cid-u2S0kIWQQM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2S0kIWQQM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2S0kIWQQM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2S0kIWQQM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2S0kIWQQM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2S0kIWQQM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2S0kIWQQM .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-u2S0kIWQQM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2S0kIWQQM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2S0kIWQQM .dropdown-item.active,
.cid-u2S0kIWQQM .dropdown-item:active {
  background-color: transparent;
}
.cid-u2S0kIWQQM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2S0kIWQQM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2S0kIWQQM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2S0kIWQQM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u2S0kIWQQM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2S0kIWQQM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2S0kIWQQM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2S0kIWQQM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2S0kIWQQM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2S0kIWQQM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u2S0kIWQQM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2S0kIWQQM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2S0kIWQQM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2S0kIWQQM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2S0kIWQQM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2S0kIWQQM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2S0kIWQQM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2S0kIWQQM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2S0kIWQQM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2S0kIWQQM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2S0kIWQQM .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-u2S0kIWQQM .navbar {
    height: 70px;
  }
  .cid-u2S0kIWQQM .navbar.opened {
    height: auto;
  }
  .cid-u2S0kIWQQM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2S0kIWQQM .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u2S0kIWQQM .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u2S0kJdQMj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u2S0kJdQMj .mbr-text,
.cid-u2S0kJdQMj blockquote {
  color: #767676;
}
.cid-u2S0kJjbHx {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u2S0kJjbHx .mbr-text,
.cid-u2S0kJjbHx blockquote {
  color: #767676;
}
.cid-u2S0kJpR5D {
  background: #232323;
}
.cid-u2S0kJpR5D .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u2S0kJpR5D figcaption {
  position: relative;
}
.cid-u2S0kJpR5D figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u2S0kJpR5D .image-block {
    width: 100% !important;
  }
}
.cid-u2S0kJpR5D DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u39E3FNBOK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-u39E3FNBOK .mbr-section-title {
  text-align: center;
}
.cid-u39E3FNBOK .mbr-text {
  color: #d0eabc;
  text-align: center;
}
.cid-u2S0kJv6jC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u2S0kJv6jC .mbr-text,
.cid-u2S0kJv6jC blockquote {
  color: #767676;
}
.cid-u2S0kJv6jC .mbr-text {
  color: #e4d295;
}
.cid-u2S0kJBXPr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u2S0kJBXPr .mbr-text,
.cid-u2S0kJBXPr blockquote {
  color: #767676;
}
.cid-u2S0kJBXPr .mbr-text {
  color: #b1a374;
}
.cid-u2S0kJBXPr .mbr-text P {
  text-align: left;
}
.cid-u39EHlivzQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u39EHlivzQ .mbr-text,
.cid-u39EHlivzQ blockquote {
  color: #767676;
}
.cid-u39EHlivzQ .mbr-text {
  color: #e4d295;
}
.cid-u2S0kJI96G {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2S0kJI96G .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2S0kJI96G .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2S0kJI96G .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2S0kJI96G .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u2S0kJI96G .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u2S0kJI96G .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u2S0kJI96G .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-u2S0kJI96G .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u2S0kJI96G .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u2S0kJI96G .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u39PnVuHVU {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u39PnVuHVU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u39PnVuHVU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u39PnVuHVU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u39PnVuHVU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u39PnVuHVU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u39PnVuHVU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u39PnVuHVU .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-u39PnVuHVU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u39PnVuHVU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u39PnVuHVU .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u39EIbAlXS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u39EIbAlXS .mbr-text,
.cid-u39EIbAlXS blockquote {
  color: #767676;
}
.cid-u39EIbAlXS .mbr-text {
  color: #e4d295;
}
.cid-u39OkMetQv {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u39OkMetQv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u39OkMetQv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u39OkMetQv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u39OkMetQv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u39OkMetQv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u39OkMetQv .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u39OkMetQv .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-u39OkMetQv .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u39OkMetQv .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u39OkMetQv .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u2S0kKrXIc {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u2S0kKrXIc .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u2S0kKrXIc .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u2S0kKrXIc .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u2S0kKrXIc .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u2S0kKrXIc .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u2S0kKrXIc .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u2S0kKrXIc .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u2S0kKrXIc .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u2S0kKrXIc .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u2S0kKrXIc .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u2S0kKrXIc .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2S0kKrXIc .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2S0kKrXIc .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u2S0kKrXIc .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u2S0kKrXIc foot-menu-item {
  color: #cebfaf;
}
.cid-u2S0kKrXIc .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u3HZZCHukz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u3HZZCHukz .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u3HZZCHukz .container {
    padding: 0 ;
  }
}
.cid-u3HZZCHukz .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u3HZZCHukz .navbar.opened {
  transition: all 0.3s;
}
.cid-u3HZZCHukz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3HZZCHukz .navbar .navbar-logo img {
  width: auto;
}
.cid-u3HZZCHukz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3HZZCHukz .navbar.collapsed {
  justify-content: center;
}
.cid-u3HZZCHukz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3HZZCHukz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3HZZCHukz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u3HZZCHukz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3HZZCHukz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3HZZCHukz .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-u3HZZCHukz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3HZZCHukz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3HZZCHukz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3HZZCHukz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3HZZCHukz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3HZZCHukz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3HZZCHukz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3HZZCHukz .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-u3HZZCHukz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3HZZCHukz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3HZZCHukz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3HZZCHukz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3HZZCHukz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3HZZCHukz .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u3HZZCHukz .navbar.navbar-short {
  min-height: 110px;
}
.cid-u3HZZCHukz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3HZZCHukz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u3HZZCHukz .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u3HZZCHukz nav.navbar {
  position: fixed;
}
.cid-u3HZZCHukz .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-u3HZZCHukz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u3HZZCHukz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3HZZCHukz .dropdown-item:hover,
.cid-u3HZZCHukz .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u3HZZCHukz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3HZZCHukz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3HZZCHukz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3HZZCHukz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3HZZCHukz .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3HZZCHukz .dropdown-menu,
.cid-u3HZZCHukz .navbar.opened {
  background: #474141 !important;
}
.cid-u3HZZCHukz .nav-item:focus,
.cid-u3HZZCHukz .nav-link:focus {
  outline: none;
}
.cid-u3HZZCHukz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3HZZCHukz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3HZZCHukz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3HZZCHukz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3HZZCHukz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3HZZCHukz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3HZZCHukz .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-u3HZZCHukz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3HZZCHukz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3HZZCHukz .dropdown-item.active,
.cid-u3HZZCHukz .dropdown-item:active {
  background-color: transparent;
}
.cid-u3HZZCHukz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3HZZCHukz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3HZZCHukz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3HZZCHukz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u3HZZCHukz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3HZZCHukz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3HZZCHukz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u3HZZCHukz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u3HZZCHukz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u3HZZCHukz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u3HZZCHukz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3HZZCHukz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3HZZCHukz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3HZZCHukz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3HZZCHukz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3HZZCHukz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u3HZZCHukz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u3HZZCHukz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3HZZCHukz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3HZZCHukz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3HZZCHukz .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-u3HZZCHukz .navbar {
    height: 70px;
  }
  .cid-u3HZZCHukz .navbar.opened {
    height: auto;
  }
  .cid-u3HZZCHukz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3HZZCHukz .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u3HZZCHukz .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u3HZZD1Vfa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u3HZZD1Vfa .mbr-text,
.cid-u3HZZD1Vfa blockquote {
  color: #767676;
}
.cid-u3IINZr5gY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u3IINZr5gY .mbr-text,
.cid-u3IINZr5gY blockquote {
  color: #767676;
}
.cid-u3HZZDehzv {
  background: #232323;
}
.cid-u3HZZDehzv .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u3HZZDehzv figcaption {
  position: relative;
}
.cid-u3HZZDehzv figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u3HZZDehzv .image-block {
    width: 100% !important;
  }
}
.cid-u3HZZDehzv DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u3HZZDlhhf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-u3HZZDlhhf .mbr-section-title {
  text-align: center;
}
.cid-u3HZZDlhhf .mbr-text {
  color: #d0eabc;
  text-align: center;
}
.cid-u3IrtlN6zK {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-u3IrtlN6zK img {
  display: inline;
  border: 8px solid #ffffff;
  border-radius: 25px;
}
.cid-u3IrtlN6zK .col-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.cid-u3IrtlN6zK .first {
  transform: rotate(10deg);
  max-height: 317px;
  width: auto;
}
.cid-u3IrtlN6zK .second {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-u3IrtlN6zK .third {
  transform: rotate(5deg);
  max-height: 476px;
  width: auto;
  z-index: 10;
}
.cid-u3IrtlN6zK .fourth {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-u3IrtlN6zK .fifth {
  transform: rotate(350deg);
  max-height: 317px;
  width: auto;
}
@media (max-width: 1400px) {
  .cid-u3IrtlN6zK .first {
    max-height: 250px;
  }
  .cid-u3IrtlN6zK .second {
    max-height: 323px;
  }
  .cid-u3IrtlN6zK .third {
    max-height: 408px;
  }
  .cid-u3IrtlN6zK .fourth {
    max-height: 323px;
  }
  .cid-u3IrtlN6zK .fifth {
    max-height: 250px;
  }
}
@media (max-width: 1100px) {
  .cid-u3IrtlN6zK .first {
    max-height: 200px;
  }
  .cid-u3IrtlN6zK .second {
    max-height: 270px;
  }
  .cid-u3IrtlN6zK .third {
    max-height: 350px;
  }
  .cid-u3IrtlN6zK .fourth {
    max-height: 270px;
  }
  .cid-u3IrtlN6zK .fifth {
    max-height: 200px;
  }
}
@media (max-width: 900px) {
  .cid-u3IrtlN6zK .first {
    display: none;
  }
  .cid-u3IrtlN6zK .second {
    max-height: 323px;
  }
  .cid-u3IrtlN6zK .third {
    max-height: 408px;
  }
  .cid-u3IrtlN6zK .fourth {
    max-height: 323px;
  }
  .cid-u3IrtlN6zK .fifth {
    display: none;
  }
}
@media (max-width: 765px) {
  .cid-u3IrtlN6zK .second {
    max-height: 250px;
  }
  .cid-u3IrtlN6zK .third {
    max-height: 340px;
  }
  .cid-u3IrtlN6zK .fourth {
    max-height: 250px;
  }
}
@media (max-width: 650px) {
  .cid-u3IrtlN6zK .second {
    max-height: 180px;
  }
  .cid-u3IrtlN6zK .third {
    max-height: 270px;
  }
  .cid-u3IrtlN6zK .fourth {
    max-height: 180px;
  }
}
@media (max-width: 465px) {
  .cid-u3IrtlN6zK .second {
    display: none;
  }
  .cid-u3IrtlN6zK .third {
    max-height: initial;
    width: 90%;
  }
  .cid-u3IrtlN6zK .fourth {
    display: none;
  }
}
.cid-u3TIARqdIM {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-u3TIARqdIM .image-block {
  margin: auto;
}
.cid-u3TIARqdIM figcaption {
  position: relative;
}
.cid-u3TIARqdIM figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u3TIARqdIM .image-block {
    width: 100% !important;
  }
}
.cid-u3TIARqdIM DIV {
  text-align: left;
  color: #ffffff;
}
.cid-uexboU0caD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uexboU0caD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uexboU0caD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uexboU0caD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uexboU0caD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uexboU0caD .row > .row {
  display: block;
}
.cid-uexboU0caD .mbr-gallery-item {
  width: 100%;
}
.cid-uexboU0caD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uexboU0caD .mbr-gallery-item > div {
  position: relative;
}
.cid-uexboU0caD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uexboU0caD .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uexboU0caD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uexboU0caD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-u3IfOFITGs {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u3IfOFITGs .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u3IfOFITGs .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2rem;
}
.cid-u3IfOFITGs .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2rem;
}
.cid-u3IfOFITGs .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u3IfOFITGs .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u3IfOFITGs .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u3IfOFITGs .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-u3IfOFITGs .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u3IfOFITGs .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u3IfOFITGs .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u3IgRm5yzz {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #7fcc29, #232323);
}
.cid-u3IgRm5yzz .image-block {
  margin: auto;
}
.cid-u3IgRm5yzz figcaption {
  position: relative;
}
.cid-u3IgRm5yzz figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u3IgRm5yzz .image-block {
    width: 100% !important;
  }
}
.cid-u3IgRm5yzz DIV {
  text-align: right;
  color: #232323;
}
.cid-u3IhBYwiWy {
  background-color: #232323;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-u3IhBYwiWy .row {
  align-items: center;
}
.cid-u3IhBYwiWy .text-wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #e4d295;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-u3IhBYwiWy .content {
  position: relative;
  border: 3px solid #000000;
  padding: 40px;
}
.cid-u3IhBYwiWy .label {
  position: absolute;
  border-radius: 20px;
  background-color: #000000;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  font-family: "Josefin Sans";
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
}
@media (max-width: 991px) {
  .cid-u3IhBYwiWy .text-wrapper {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .cid-u3IhBYwiWy .card {
    height: 300px;
  }
}
.cid-u3IhBYwiWy .mbr-section-title,
.cid-u3IhBYwiWy .mbr-section-btn {
  color: #232323;
}
.cid-u3IhBYwiWy .mbr-label {
  color: #e4d295;
}
.cid-uexdI1mCsp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uexdI1mCsp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uexdI1mCsp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uexdI1mCsp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uexdI1mCsp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uexdI1mCsp .row > .row {
  display: block;
}
.cid-uexdI1mCsp .mbr-gallery-item {
  width: 100%;
}
.cid-uexdI1mCsp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uexdI1mCsp .mbr-gallery-item > div {
  position: relative;
}
.cid-uexdI1mCsp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uexdI1mCsp .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uexdI1mCsp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uexdI1mCsp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uexdKxQSsk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uexdKxQSsk .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uexdKxQSsk .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uexdKxQSsk .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uexdKxQSsk .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uexdKxQSsk .row > .row {
  display: block;
}
.cid-uexdKxQSsk .mbr-gallery-item {
  width: 100%;
}
.cid-uexdKxQSsk .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uexdKxQSsk .mbr-gallery-item > div {
  position: relative;
}
.cid-uexdKxQSsk .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uexdKxQSsk .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uexdKxQSsk .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uexdKxQSsk .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-u3Ir4n697k {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-u3Ir4n697k .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3Ir4n697k .container-fluid {
  padding: 0;
}
.cid-u3Ir4n697k .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-u3Ir4n697k .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u3Ir4n697k .row {
  flex-direction: row-reverse;
}
.cid-u3Ir4n697k img {
  width: 100%;
}
.cid-u3Ir4n697k .mbr-description {
  color: #ffffff;
  text-align: left;
}
.cid-u3HZZEw22G {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u3HZZEw22G .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u3HZZEw22G .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u3HZZEw22G .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u3HZZEw22G .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u3HZZEw22G .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u3HZZEw22G .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u3HZZEw22G .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u3HZZEw22G .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u3HZZEw22G .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u3HZZEw22G .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u3HZZEw22G .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u3HZZEw22G .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u3HZZEw22G .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u3HZZEw22G .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u3HZZEw22G foot-menu-item {
  color: #cebfaf;
}
.cid-u3HZZEw22G .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u3TK6slL76 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u3TK6slL76 .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u3TK6slL76 .container {
    padding: 0 ;
  }
}
.cid-u3TK6slL76 .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u3TK6slL76 .navbar.opened {
  transition: all 0.3s;
}
.cid-u3TK6slL76 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3TK6slL76 .navbar .navbar-logo img {
  width: auto;
}
.cid-u3TK6slL76 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3TK6slL76 .navbar.collapsed {
  justify-content: center;
}
.cid-u3TK6slL76 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3TK6slL76 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3TK6slL76 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u3TK6slL76 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3TK6slL76 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3TK6slL76 .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-u3TK6slL76 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3TK6slL76 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3TK6slL76 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3TK6slL76 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3TK6slL76 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3TK6slL76 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3TK6slL76 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3TK6slL76 .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-u3TK6slL76 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3TK6slL76 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3TK6slL76 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3TK6slL76 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3TK6slL76 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3TK6slL76 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u3TK6slL76 .navbar.navbar-short {
  min-height: 110px;
}
.cid-u3TK6slL76 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3TK6slL76 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u3TK6slL76 .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u3TK6slL76 nav.navbar {
  position: fixed;
}
.cid-u3TK6slL76 .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-u3TK6slL76 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u3TK6slL76 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3TK6slL76 .dropdown-item:hover,
.cid-u3TK6slL76 .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u3TK6slL76 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3TK6slL76 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3TK6slL76 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3TK6slL76 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3TK6slL76 .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3TK6slL76 .dropdown-menu,
.cid-u3TK6slL76 .navbar.opened {
  background: #474141 !important;
}
.cid-u3TK6slL76 .nav-item:focus,
.cid-u3TK6slL76 .nav-link:focus {
  outline: none;
}
.cid-u3TK6slL76 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3TK6slL76 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3TK6slL76 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3TK6slL76 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3TK6slL76 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3TK6slL76 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3TK6slL76 .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-u3TK6slL76 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3TK6slL76 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3TK6slL76 .dropdown-item.active,
.cid-u3TK6slL76 .dropdown-item:active {
  background-color: transparent;
}
.cid-u3TK6slL76 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3TK6slL76 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3TK6slL76 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3TK6slL76 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u3TK6slL76 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3TK6slL76 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3TK6slL76 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u3TK6slL76 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u3TK6slL76 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u3TK6slL76 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u3TK6slL76 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3TK6slL76 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3TK6slL76 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3TK6slL76 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3TK6slL76 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3TK6slL76 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u3TK6slL76 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u3TK6slL76 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3TK6slL76 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3TK6slL76 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3TK6slL76 .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-u3TK6slL76 .navbar {
    height: 70px;
  }
  .cid-u3TK6slL76 .navbar.opened {
    height: auto;
  }
  .cid-u3TK6slL76 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3TK6slL76 .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u3TK6slL76 .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u3TK6sKztz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u3TK6sKztz .mbr-text,
.cid-u3TK6sKztz blockquote {
  color: #767676;
}
.cid-u3TK6sQIWA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u3TK6sQIWA .mbr-text,
.cid-u3TK6sQIWA blockquote {
  color: #767676;
}
.cid-u3TK6sX6LR {
  background: #232323;
}
.cid-u3TK6sX6LR .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u3TK6sX6LR figcaption {
  position: relative;
}
.cid-u3TK6sX6LR figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u3TK6sX6LR .image-block {
    width: 100% !important;
  }
}
.cid-u3TK6sX6LR DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u3ZIqSep4r {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u3ZIqSep4r .mbr-text,
.cid-u3ZIqSep4r blockquote {
  color: #767676;
}
.cid-u3ZIqSep4r .mbr-text {
  color: #e4d295;
}
.cid-uazVY0Zhgs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-uazVY0Zhgs .mbr-text,
.cid-uazVY0Zhgs blockquote {
  color: #767676;
}
.cid-uazVY0Zhgs .mbr-text {
  color: #b1a374;
}
.cid-uazVY0Zhgs .mbr-text P {
  text-align: left;
}
.cid-u4bPCZ3v3b {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u4bPCZ3v3b .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u4bPCZ3v3b .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u4bPCZ3v3b .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u4bPCZ3v3b .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u4bPCZ3v3b .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u4bPCZ3v3b .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u4bPCZ3v3b .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u4bPCZ3v3b .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u4bPCZ3v3b .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u4bPCZ3v3b .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u4ndrKJSdT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u4ndrKJSdT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u4ndrKJSdT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u4ndrKJSdT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u4ndrKJSdT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u4ndrKJSdT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u4ndrKJSdT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u4ndrKJSdT .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u4ndrKJSdT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u4ndrKJSdT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u4ndrKJSdT .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u4ne1g8QNl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u4ne1g8QNl .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u4ne1g8QNl .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u4ne1g8QNl .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u4ne1g8QNl .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u4ne1g8QNl .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u4ne1g8QNl .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u4ne1g8QNl .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u4ne1g8QNl .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u4ne1g8QNl .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u4ne1g8QNl .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u4nkDUmGda {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u4nkDUmGda .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u4nkDUmGda .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u4nkDUmGda .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u4nkDUmGda .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u4nkDUmGda .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u4nkDUmGda .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u4nkDUmGda .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u4nkDUmGda .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u4nkDUmGda .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u4nkDUmGda .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u3TK6unJX0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-u3TK6unJX0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3TK6unJX0 .container-fluid {
  padding: 0;
}
.cid-u3TK6unJX0 .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-u3TK6unJX0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u3TK6unJX0 .row {
  flex-direction: row-reverse;
}
.cid-u3TK6unJX0 img {
  width: 100%;
}
.cid-u3TK6uy8xR {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u3TK6uy8xR .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u3TK6uy8xR .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u3TK6uy8xR .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u3TK6uy8xR .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u3TK6uy8xR .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u3TK6uy8xR .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u3TK6uy8xR .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u3TK6uy8xR .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u3TK6uy8xR .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u3TK6uy8xR .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u3TK6uy8xR .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u3TK6uy8xR .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u3TK6uy8xR .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u3TK6uy8xR .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u3TK6uy8xR foot-menu-item {
  color: #cebfaf;
}
.cid-u3TK6uy8xR .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u3U5jkiCx0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u3U5jkiCx0 .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u3U5jkiCx0 .container {
    padding: 0 ;
  }
}
.cid-u3U5jkiCx0 .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u3U5jkiCx0 .navbar.opened {
  transition: all 0.3s;
}
.cid-u3U5jkiCx0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3U5jkiCx0 .navbar .navbar-logo img {
  width: auto;
}
.cid-u3U5jkiCx0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3U5jkiCx0 .navbar.collapsed {
  justify-content: center;
}
.cid-u3U5jkiCx0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3U5jkiCx0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3U5jkiCx0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u3U5jkiCx0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3U5jkiCx0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3U5jkiCx0 .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-u3U5jkiCx0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3U5jkiCx0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3U5jkiCx0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3U5jkiCx0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3U5jkiCx0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3U5jkiCx0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3U5jkiCx0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3U5jkiCx0 .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-u3U5jkiCx0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3U5jkiCx0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3U5jkiCx0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3U5jkiCx0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3U5jkiCx0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3U5jkiCx0 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u3U5jkiCx0 .navbar.navbar-short {
  min-height: 110px;
}
.cid-u3U5jkiCx0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3U5jkiCx0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u3U5jkiCx0 .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u3U5jkiCx0 nav.navbar {
  position: fixed;
}
.cid-u3U5jkiCx0 .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-u3U5jkiCx0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u3U5jkiCx0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3U5jkiCx0 .dropdown-item:hover,
.cid-u3U5jkiCx0 .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u3U5jkiCx0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3U5jkiCx0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3U5jkiCx0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3U5jkiCx0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3U5jkiCx0 .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3U5jkiCx0 .dropdown-menu,
.cid-u3U5jkiCx0 .navbar.opened {
  background: #474141 !important;
}
.cid-u3U5jkiCx0 .nav-item:focus,
.cid-u3U5jkiCx0 .nav-link:focus {
  outline: none;
}
.cid-u3U5jkiCx0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3U5jkiCx0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3U5jkiCx0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3U5jkiCx0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3U5jkiCx0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3U5jkiCx0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3U5jkiCx0 .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-u3U5jkiCx0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3U5jkiCx0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3U5jkiCx0 .dropdown-item.active,
.cid-u3U5jkiCx0 .dropdown-item:active {
  background-color: transparent;
}
.cid-u3U5jkiCx0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3U5jkiCx0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3U5jkiCx0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3U5jkiCx0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u3U5jkiCx0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3U5jkiCx0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3U5jkiCx0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u3U5jkiCx0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u3U5jkiCx0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u3U5jkiCx0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u3U5jkiCx0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3U5jkiCx0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3U5jkiCx0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3U5jkiCx0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3U5jkiCx0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3U5jkiCx0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u3U5jkiCx0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u3U5jkiCx0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3U5jkiCx0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3U5jkiCx0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3U5jkiCx0 .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-u3U5jkiCx0 .navbar {
    height: 70px;
  }
  .cid-u3U5jkiCx0 .navbar.opened {
    height: auto;
  }
  .cid-u3U5jkiCx0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3U5jkiCx0 .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u3U5jkiCx0 .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u3U5jkIOEU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u3U5jkIOEU .mbr-text,
.cid-u3U5jkIOEU blockquote {
  color: #767676;
}
.cid-u3U5jkPwDR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u3U5jkPwDR .mbr-text,
.cid-u3U5jkPwDR blockquote {
  color: #767676;
}
.cid-u3U5jkWMOR {
  background: #232323;
}
.cid-u3U5jkWMOR .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u3U5jkWMOR figcaption {
  position: relative;
}
.cid-u3U5jkWMOR figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u3U5jkWMOR .image-block {
    width: 100% !important;
  }
}
.cid-u3U5jkWMOR DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u3U5jl3tDE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-u3U5jl3tDE .mbr-section-title {
  text-align: center;
}
.cid-u3U5jl3tDE .mbr-text {
  color: #d0eabc;
  text-align: center;
}
.cid-u3U5jlbQ0c {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-u3U5jlbQ0c img {
  display: inline;
  border: 8px solid #ffffff;
  border-radius: 25px;
}
.cid-u3U5jlbQ0c .col-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.cid-u3U5jlbQ0c .first {
  transform: rotate(10deg);
  max-height: 317px;
  width: auto;
}
.cid-u3U5jlbQ0c .second {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-u3U5jlbQ0c .third {
  transform: rotate(5deg);
  max-height: 476px;
  width: auto;
  z-index: 10;
}
.cid-u3U5jlbQ0c .fourth {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-u3U5jlbQ0c .fifth {
  transform: rotate(350deg);
  max-height: 317px;
  width: auto;
}
@media (max-width: 1400px) {
  .cid-u3U5jlbQ0c .first {
    max-height: 250px;
  }
  .cid-u3U5jlbQ0c .second {
    max-height: 323px;
  }
  .cid-u3U5jlbQ0c .third {
    max-height: 408px;
  }
  .cid-u3U5jlbQ0c .fourth {
    max-height: 323px;
  }
  .cid-u3U5jlbQ0c .fifth {
    max-height: 250px;
  }
}
@media (max-width: 1100px) {
  .cid-u3U5jlbQ0c .first {
    max-height: 200px;
  }
  .cid-u3U5jlbQ0c .second {
    max-height: 270px;
  }
  .cid-u3U5jlbQ0c .third {
    max-height: 350px;
  }
  .cid-u3U5jlbQ0c .fourth {
    max-height: 270px;
  }
  .cid-u3U5jlbQ0c .fifth {
    max-height: 200px;
  }
}
@media (max-width: 900px) {
  .cid-u3U5jlbQ0c .first {
    display: none;
  }
  .cid-u3U5jlbQ0c .second {
    max-height: 323px;
  }
  .cid-u3U5jlbQ0c .third {
    max-height: 408px;
  }
  .cid-u3U5jlbQ0c .fourth {
    max-height: 323px;
  }
  .cid-u3U5jlbQ0c .fifth {
    display: none;
  }
}
@media (max-width: 765px) {
  .cid-u3U5jlbQ0c .second {
    max-height: 250px;
  }
  .cid-u3U5jlbQ0c .third {
    max-height: 340px;
  }
  .cid-u3U5jlbQ0c .fourth {
    max-height: 250px;
  }
}
@media (max-width: 650px) {
  .cid-u3U5jlbQ0c .second {
    max-height: 180px;
  }
  .cid-u3U5jlbQ0c .third {
    max-height: 270px;
  }
  .cid-u3U5jlbQ0c .fourth {
    max-height: 180px;
  }
}
@media (max-width: 465px) {
  .cid-u3U5jlbQ0c .second {
    display: none;
  }
  .cid-u3U5jlbQ0c .third {
    max-height: initial;
    width: 90%;
  }
  .cid-u3U5jlbQ0c .fourth {
    display: none;
  }
}
.cid-u3U5jlmgfw {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #7fcc29, #232323);
}
.cid-u3U5jlmgfw .image-block {
  margin: auto;
}
.cid-u3U5jlmgfw figcaption {
  position: relative;
}
.cid-u3U5jlmgfw figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u3U5jlmgfw .image-block {
    width: 100% !important;
  }
}
.cid-u3U5jlmgfw DIV {
  text-align: left;
  color: #ffffff;
}
.cid-u3U5jltafT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u3U5jltafT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u3U5jltafT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u3U5jltafT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u3U5jltafT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u3U5jltafT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u3U5jltafT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u3U5jltafT .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-u3U5jltafT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u3U5jltafT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u3U5jltafT .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u3U5jlOg4X {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #7fcc29, #232323);
}
.cid-u3U5jlOg4X .image-block {
  margin: auto;
}
.cid-u3U5jlOg4X figcaption {
  position: relative;
}
.cid-u3U5jlOg4X figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u3U5jlOg4X .image-block {
    width: 100% !important;
  }
}
.cid-u3U5jlOg4X DIV {
  text-align: left;
  color: #ffffff;
}
.cid-u3U5jlWNHK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-u3U5jlWNHK .item-wrapper {
  width: 100%;
}
.cid-u3U5jlWNHK .row {
  align-items: center;
  justify-content: center;
}
.cid-u3U5jlWNHK .b {
  margin-bottom: 10px;
}
.cid-u3U5jlWNHK img {
  border-radius: 5px;
}
@media (max-width: 576px) {
  .cid-u3U5jlWNHK .b,
  .cid-u3U5jlWNHK .t {
    margin-bottom: 10px;
  }
}
.cid-u3U5jm8bem {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-u3U5jm8bem .item-wrapper {
  width: 100%;
}
.cid-u3U5jm8bem .row {
  align-items: center;
  justify-content: center;
}
.cid-u3U5jm8bem .b {
  margin-bottom: 10px;
}
.cid-u3U5jm8bem img {
  border-radius: 5px;
}
@media (max-width: 576px) {
  .cid-u3U5jm8bem .b,
  .cid-u3U5jm8bem .t {
    margin-bottom: 10px;
  }
}
.cid-u3U5jmkxed {
  background: #7fcc29;
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #232323, #7fcc29);
}
.cid-u3U5jmkxed .image-block {
  margin: auto;
}
.cid-u3U5jmkxed figcaption {
  position: relative;
}
.cid-u3U5jmkxed figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u3U5jmkxed .image-block {
    width: 100% !important;
  }
}
.cid-u3U5jmkxed DIV {
  text-align: left;
  color: #efefef;
}
.cid-u3U5jmsrtU {
  background-color: #232323;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-u3U5jmsrtU .row {
  align-items: center;
}
.cid-u3U5jmsrtU .text-wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #e4d295;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-u3U5jmsrtU .content {
  position: relative;
  border: 3px solid #000000;
  padding: 40px;
}
.cid-u3U5jmsrtU .label {
  position: absolute;
  border-radius: 20px;
  background-color: #000000;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  font-family: "Josefin Sans";
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
}
@media (max-width: 991px) {
  .cid-u3U5jmsrtU .text-wrapper {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .cid-u3U5jmsrtU .card {
    height: 300px;
  }
}
.cid-u3U5jmsrtU .mbr-section-title,
.cid-u3U5jmsrtU .mbr-section-btn {
  color: #232323;
}
.cid-u3U5jmsrtU .mbr-label {
  color: #e4d295;
}
.cid-uaAmAQdn1W {
  background: #7fcc29;
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #232323, #7fcc29);
}
.cid-uaAmAQdn1W .image-block {
  margin: auto;
}
.cid-uaAmAQdn1W figcaption {
  position: relative;
}
.cid-uaAmAQdn1W figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uaAmAQdn1W .image-block {
    width: 100% !important;
  }
}
.cid-uaAmAQdn1W DIV {
  text-align: left;
  color: #ffffff;
}
.cid-u3U5jmNEYe {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u3U5jmNEYe .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u3U5jmNEYe .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u3U5jmNEYe .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u3U5jmNEYe .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u3U5jmNEYe .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u3U5jmNEYe .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u3U5jmNEYe .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u3U5jmNEYe .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u3U5jmNEYe .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u3U5jmNEYe .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u3U5jmNEYe .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u3U5jmNEYe .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u3U5jmNEYe .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u3U5jmNEYe .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u3U5jmNEYe foot-menu-item {
  color: #cebfaf;
}
.cid-u3U5jmNEYe .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u52kvBcpQa {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u52kvBcpQa .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u52kvBcpQa .container {
    padding: 0 ;
  }
}
.cid-u52kvBcpQa .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u52kvBcpQa .navbar.opened {
  transition: all 0.3s;
}
.cid-u52kvBcpQa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u52kvBcpQa .navbar .navbar-logo img {
  width: auto;
}
.cid-u52kvBcpQa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u52kvBcpQa .navbar.collapsed {
  justify-content: center;
}
.cid-u52kvBcpQa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u52kvBcpQa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u52kvBcpQa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u52kvBcpQa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u52kvBcpQa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u52kvBcpQa .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-u52kvBcpQa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u52kvBcpQa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u52kvBcpQa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u52kvBcpQa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u52kvBcpQa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u52kvBcpQa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u52kvBcpQa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u52kvBcpQa .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-u52kvBcpQa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u52kvBcpQa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u52kvBcpQa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u52kvBcpQa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u52kvBcpQa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u52kvBcpQa .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u52kvBcpQa .navbar.navbar-short {
  min-height: 110px;
}
.cid-u52kvBcpQa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u52kvBcpQa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u52kvBcpQa .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u52kvBcpQa nav.navbar {
  position: fixed;
}
.cid-u52kvBcpQa .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-u52kvBcpQa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u52kvBcpQa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u52kvBcpQa .dropdown-item:hover,
.cid-u52kvBcpQa .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u52kvBcpQa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u52kvBcpQa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u52kvBcpQa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u52kvBcpQa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u52kvBcpQa .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u52kvBcpQa .dropdown-menu,
.cid-u52kvBcpQa .navbar.opened {
  background: #474141 !important;
}
.cid-u52kvBcpQa .nav-item:focus,
.cid-u52kvBcpQa .nav-link:focus {
  outline: none;
}
.cid-u52kvBcpQa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u52kvBcpQa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u52kvBcpQa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u52kvBcpQa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u52kvBcpQa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u52kvBcpQa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u52kvBcpQa .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-u52kvBcpQa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u52kvBcpQa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u52kvBcpQa .dropdown-item.active,
.cid-u52kvBcpQa .dropdown-item:active {
  background-color: transparent;
}
.cid-u52kvBcpQa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u52kvBcpQa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u52kvBcpQa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u52kvBcpQa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u52kvBcpQa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u52kvBcpQa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u52kvBcpQa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u52kvBcpQa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u52kvBcpQa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u52kvBcpQa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u52kvBcpQa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u52kvBcpQa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u52kvBcpQa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u52kvBcpQa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u52kvBcpQa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u52kvBcpQa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u52kvBcpQa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u52kvBcpQa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u52kvBcpQa .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u52kvBcpQa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u52kvBcpQa .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-u52kvBcpQa .navbar {
    height: 70px;
  }
  .cid-u52kvBcpQa .navbar.opened {
    height: auto;
  }
  .cid-u52kvBcpQa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u52kvBcpQa .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u52kvBcpQa .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u52kvBvPkA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u52kvBvPkA .mbr-text,
.cid-u52kvBvPkA blockquote {
  color: #767676;
}
.cid-u52kvBCQLm {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #474141;
}
.cid-u52kvBCQLm .mbr-text,
.cid-u52kvBCQLm blockquote {
  color: #767676;
}
.cid-u52kvBHcyN {
  background: #232323;
}
.cid-u52kvBHcyN .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u52kvBHcyN figcaption {
  position: relative;
}
.cid-u52kvBHcyN figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u52kvBHcyN .image-block {
    width: 100% !important;
  }
}
.cid-u52kvBHcyN DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u52kvBVW7Z {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u52kvBVW7Z .mbr-text,
.cid-u52kvBVW7Z blockquote {
  color: #767676;
}
.cid-u52kvBVW7Z .mbr-text {
  color: #e4d295;
}
.cid-u52kvC2zJy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u52kvC2zJy .mbr-text,
.cid-u52kvC2zJy blockquote {
  color: #767676;
}
.cid-u52kvC2zJy .mbr-text {
  color: #b1a374;
}
.cid-u52kvC2zJy .mbr-text P {
  text-align: left;
}
.cid-u52kvC9QoW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u52kvC9QoW .mbr-text,
.cid-u52kvC9QoW blockquote {
  color: #767676;
}
.cid-u52kvC9QoW .mbr-text {
  color: #e4d295;
}
.cid-u52kvCfWUK {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u52kvCfWUK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u52kvCfWUK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u52kvCfWUK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u52kvCfWUK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u52kvCfWUK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u52kvCfWUK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u52kvCfWUK .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-u52kvCfWUK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u52kvCfWUK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u52kvCfWUK .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u5XTKGsCaZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u5XTKGsCaZ .mbr-text,
.cid-u5XTKGsCaZ blockquote {
  color: #767676;
}
.cid-u5XTKGsCaZ .mbr-text {
  color: #e4d295;
}
.cid-u5XTNiKUMn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u5XTNiKUMn .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u5XTNiKUMn .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u5XTNiKUMn .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u5XTNiKUMn .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u5XTNiKUMn .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u5XTNiKUMn .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u5XTNiKUMn .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u5XTNiKUMn .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u5XTNiKUMn .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u5XTNiKUMn .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u52kvD4CH9 {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u52kvD4CH9 .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u52kvD4CH9 .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u52kvD4CH9 .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u52kvD4CH9 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u52kvD4CH9 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u52kvD4CH9 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u52kvD4CH9 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u52kvD4CH9 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u52kvD4CH9 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u52kvD4CH9 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u52kvD4CH9 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u52kvD4CH9 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u52kvD4CH9 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u52kvD4CH9 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u52kvD4CH9 foot-menu-item {
  color: #cebfaf;
}
.cid-u52kvD4CH9 .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u5MJOw1SKG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u5MJOw1SKG .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u5MJOw1SKG .container {
    padding: 0 ;
  }
}
.cid-u5MJOw1SKG .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u5MJOw1SKG .navbar.opened {
  transition: all 0.3s;
}
.cid-u5MJOw1SKG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5MJOw1SKG .navbar .navbar-logo img {
  width: auto;
}
.cid-u5MJOw1SKG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5MJOw1SKG .navbar.collapsed {
  justify-content: center;
}
.cid-u5MJOw1SKG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5MJOw1SKG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u5MJOw1SKG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u5MJOw1SKG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5MJOw1SKG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5MJOw1SKG .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-u5MJOw1SKG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5MJOw1SKG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5MJOw1SKG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5MJOw1SKG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5MJOw1SKG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5MJOw1SKG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5MJOw1SKG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5MJOw1SKG .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-u5MJOw1SKG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5MJOw1SKG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5MJOw1SKG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5MJOw1SKG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5MJOw1SKG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5MJOw1SKG .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u5MJOw1SKG .navbar.navbar-short {
  min-height: 110px;
}
.cid-u5MJOw1SKG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u5MJOw1SKG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5MJOw1SKG .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u5MJOw1SKG nav.navbar {
  position: fixed;
}
.cid-u5MJOw1SKG .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-u5MJOw1SKG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u5MJOw1SKG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u5MJOw1SKG .dropdown-item:hover,
.cid-u5MJOw1SKG .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u5MJOw1SKG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5MJOw1SKG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5MJOw1SKG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u5MJOw1SKG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5MJOw1SKG .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5MJOw1SKG .dropdown-menu,
.cid-u5MJOw1SKG .navbar.opened {
  background: #474141 !important;
}
.cid-u5MJOw1SKG .nav-item:focus,
.cid-u5MJOw1SKG .nav-link:focus {
  outline: none;
}
.cid-u5MJOw1SKG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5MJOw1SKG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5MJOw1SKG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5MJOw1SKG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5MJOw1SKG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5MJOw1SKG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5MJOw1SKG .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-u5MJOw1SKG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5MJOw1SKG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5MJOw1SKG .dropdown-item.active,
.cid-u5MJOw1SKG .dropdown-item:active {
  background-color: transparent;
}
.cid-u5MJOw1SKG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5MJOw1SKG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5MJOw1SKG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5MJOw1SKG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u5MJOw1SKG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5MJOw1SKG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5MJOw1SKG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5MJOw1SKG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5MJOw1SKG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u5MJOw1SKG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u5MJOw1SKG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5MJOw1SKG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5MJOw1SKG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5MJOw1SKG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5MJOw1SKG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5MJOw1SKG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5MJOw1SKG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5MJOw1SKG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5MJOw1SKG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u5MJOw1SKG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5MJOw1SKG .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-u5MJOw1SKG .navbar {
    height: 70px;
  }
  .cid-u5MJOw1SKG .navbar.opened {
    height: auto;
  }
  .cid-u5MJOw1SKG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5MJOw1SKG .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u5MJOw1SKG .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u5MJOwoMVJ {
  background: #0f7699;
  background: linear-gradient(0deg, #cc2952, #0f7699);
}
.cid-u5MJOwoMVJ .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u5MJOwoMVJ figcaption {
  position: relative;
}
.cid-u5MJOwoMVJ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u5MJOwoMVJ .image-block {
    width: 100% !important;
  }
}
.cid-u5MJOwvmyF {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u5MJOwvmyF .mbr-text,
.cid-u5MJOwvmyF blockquote {
  color: #767676;
}
.cid-u5MJOwvmyF .mbr-text {
  color: #e4d295;
}
.cid-udZfASIgYe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-udZfASIgYe .mbr-text,
.cid-udZfASIgYe blockquote {
  color: #767676;
}
.cid-udZfASIgYe .mbr-text {
  color: #b1a374;
}
.cid-udZfASIgYe .mbr-text P {
  text-align: left;
}
.cid-u5MJOwIZYh {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #fabe74, #232323);
}
.cid-u5MJOwIZYh .image-block {
  margin: auto;
}
.cid-u5MJOwIZYh figcaption {
  position: relative;
}
.cid-u5MJOwIZYh figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u5MJOwIZYh .image-block {
    width: 100% !important;
  }
}
.cid-u5MJOwIZYh DIV {
  text-align: left;
  color: #ffffff;
}
.cid-us2tPLuuNH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-us2tPLuuNH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-us2tPLuuNH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-us2tPLuuNH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-us2tPLuuNH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-us2tPLuuNH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-us2tPLuuNH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-us2tPLuuNH .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-us2tPLuuNH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-us2tPLuuNH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-us2tPLuuNH .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u5MJOxcTmh {
  background: #fabe74;
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #232323, #fabe74);
}
.cid-u5MJOxcTmh .image-block {
  margin: auto;
}
.cid-u5MJOxcTmh figcaption {
  position: relative;
}
.cid-u5MJOxcTmh figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u5MJOxcTmh .image-block {
    width: 100% !important;
  }
}
.cid-u5MJOxcTmh DIV {
  text-align: center;
  color: #ffffff;
}
.cid-uv2M4zopNP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uv2M4zopNP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uv2M4zopNP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uv2M4zopNP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uv2M4zopNP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uv2M4zopNP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uv2M4zopNP .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uv2M4zopNP .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-uv2M4zopNP .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uv2M4zopNP .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uv2M4zopNP .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-uv2MEitwND {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #fabe74, #232323);
}
.cid-uv2MEitwND .image-block {
  margin: auto;
}
.cid-uv2MEitwND figcaption {
  position: relative;
}
.cid-uv2MEitwND figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uv2MEitwND .image-block {
    width: 100% !important;
  }
}
.cid-uv2MEitwND DIV {
  text-align: left;
  color: #ffffff;
}
.cid-u5MJOxjFam {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u5MJOxjFam .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u5MJOxjFam .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u5MJOxjFam .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u5MJOxjFam .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u5MJOxjFam .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u5MJOxjFam .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u5MJOxjFam .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-u5MJOxjFam .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u5MJOxjFam .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u5MJOxjFam .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-uv2OiMGoGp {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #fabe74, #232323);
}
.cid-uv2OiMGoGp .image-block {
  margin: auto;
}
.cid-uv2OiMGoGp figcaption {
  position: relative;
}
.cid-uv2OiMGoGp figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uv2OiMGoGp .image-block {
    width: 100% !important;
  }
}
.cid-uv2OiMGoGp DIV {
  text-align: left;
  color: #ffffff;
}
.cid-uv2Hh67h6g {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uv2Hh67h6g .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uv2Hh67h6g .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uv2Hh67h6g .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uv2Hh67h6g .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uv2Hh67h6g .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uv2Hh67h6g .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uv2Hh67h6g .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-uv2Hh67h6g .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uv2Hh67h6g .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uv2Hh67h6g .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-uv2NIc7i9Y {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uv2NIc7i9Y .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uv2NIc7i9Y .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uv2NIc7i9Y .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uv2NIc7i9Y .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uv2NIc7i9Y .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uv2NIc7i9Y .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uv2NIc7i9Y .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-uv2NIc7i9Y .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uv2NIc7i9Y .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uv2NIc7i9Y .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u5MJOxH6Bf {
  background: #fabe74;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #232323, #fabe74);
}
.cid-u5MJOxH6Bf .image-block {
  margin: auto;
}
.cid-u5MJOxH6Bf figcaption {
  position: relative;
}
.cid-u5MJOxH6Bf figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u5MJOxH6Bf .image-block {
    width: 100% !important;
  }
}
.cid-u5MJOxH6Bf DIV {
  text-align: center;
  color: #ffffff;
}
.cid-u5MJOxRf8j {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u5MJOxRf8j .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u5MJOxRf8j .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u5MJOxRf8j .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u5MJOxRf8j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u5MJOxRf8j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u5MJOxRf8j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u5MJOxRf8j .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u5MJOxRf8j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u5MJOxRf8j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u5MJOxRf8j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u5MJOxRf8j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u5MJOxRf8j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u5MJOxRf8j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u5MJOxRf8j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u5MJOxRf8j foot-menu-item {
  color: #cebfaf;
}
.cid-u5MJOxRf8j .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-u8GhVrx9tn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u8GhVrx9tn .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u8GhVrx9tn .container {
    padding: 0 ;
  }
}
.cid-u8GhVrx9tn .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-u8GhVrx9tn .navbar.opened {
  transition: all 0.3s;
}
.cid-u8GhVrx9tn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u8GhVrx9tn .navbar .navbar-logo img {
  width: auto;
}
.cid-u8GhVrx9tn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8GhVrx9tn .navbar.collapsed {
  justify-content: center;
}
.cid-u8GhVrx9tn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u8GhVrx9tn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u8GhVrx9tn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-u8GhVrx9tn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8GhVrx9tn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8GhVrx9tn .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-u8GhVrx9tn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8GhVrx9tn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u8GhVrx9tn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u8GhVrx9tn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u8GhVrx9tn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8GhVrx9tn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8GhVrx9tn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8GhVrx9tn .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-u8GhVrx9tn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u8GhVrx9tn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u8GhVrx9tn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u8GhVrx9tn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u8GhVrx9tn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u8GhVrx9tn .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-u8GhVrx9tn .navbar.navbar-short {
  min-height: 110px;
}
.cid-u8GhVrx9tn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u8GhVrx9tn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u8GhVrx9tn .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-u8GhVrx9tn nav.navbar {
  position: fixed;
}
.cid-u8GhVrx9tn .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-u8GhVrx9tn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-u8GhVrx9tn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u8GhVrx9tn .dropdown-item:hover,
.cid-u8GhVrx9tn .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-u8GhVrx9tn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u8GhVrx9tn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u8GhVrx9tn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u8GhVrx9tn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u8GhVrx9tn .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u8GhVrx9tn .dropdown-menu,
.cid-u8GhVrx9tn .navbar.opened {
  background: #474141 !important;
}
.cid-u8GhVrx9tn .nav-item:focus,
.cid-u8GhVrx9tn .nav-link:focus {
  outline: none;
}
.cid-u8GhVrx9tn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u8GhVrx9tn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8GhVrx9tn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u8GhVrx9tn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8GhVrx9tn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u8GhVrx9tn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u8GhVrx9tn .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-u8GhVrx9tn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8GhVrx9tn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8GhVrx9tn .dropdown-item.active,
.cid-u8GhVrx9tn .dropdown-item:active {
  background-color: transparent;
}
.cid-u8GhVrx9tn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8GhVrx9tn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8GhVrx9tn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8GhVrx9tn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-u8GhVrx9tn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8GhVrx9tn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8GhVrx9tn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u8GhVrx9tn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u8GhVrx9tn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u8GhVrx9tn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-u8GhVrx9tn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8GhVrx9tn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8GhVrx9tn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8GhVrx9tn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8GhVrx9tn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8GhVrx9tn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8GhVrx9tn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8GhVrx9tn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8GhVrx9tn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u8GhVrx9tn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u8GhVrx9tn .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-u8GhVrx9tn .navbar {
    height: 70px;
  }
  .cid-u8GhVrx9tn .navbar.opened {
    height: auto;
  }
  .cid-u8GhVrx9tn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8GhVrx9tn .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u8GhVrx9tn .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-u8GhVrQVsV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #474141;
}
.cid-u8GhVrQVsV .mbr-text,
.cid-u8GhVrQVsV blockquote {
  color: #767676;
}
.cid-u8GhVrWUKX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #474141;
}
.cid-u8GhVrWUKX .mbr-text,
.cid-u8GhVrWUKX blockquote {
  color: #767676;
}
.cid-u8GhVs2jx7 {
  background: #f9e2c5;
  background: linear-gradient(0deg, #fbaa8f, #f9e2c5);
}
.cid-u8GhVs2jx7 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u8GhVs2jx7 figcaption {
  position: relative;
}
.cid-u8GhVs2jx7 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u8GhVs2jx7 .image-block {
    width: 100% !important;
  }
}
.cid-u8GhVs2jx7 DIV {
  text-align: center;
  color: #fef2ed;
}
.cid-u8GhVs8IdZ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u8GhVs8IdZ .mbr-text,
.cid-u8GhVs8IdZ blockquote {
  color: #767676;
}
.cid-u8GhVs8IdZ .mbr-text {
  color: #e4d295;
}
.cid-ueg5Ow15yl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-ueg5Ow15yl .mbr-text,
.cid-ueg5Ow15yl blockquote {
  color: #767676;
}
.cid-ueg5Ow15yl .mbr-text {
  color: #e4d295;
}
.cid-u8GhVsedTs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u8GhVsedTs .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u8GhVsedTs .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u8GhVsedTs .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u8GhVsedTs .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u8GhVsedTs .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u8GhVsedTs .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u8GhVsedTs .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u8GhVsedTs .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u8GhVsedTs .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u8GhVsedTs .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u8GncFjtzH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u8GncFjtzH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u8GncFjtzH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u8GncFjtzH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u8GncFjtzH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u8GncFjtzH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u8GncFjtzH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u8GncFjtzH .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u8GncFjtzH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u8GncFjtzH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u8GncFjtzH .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u8GG6G8cdh {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #9ff470, #232323);
}
.cid-u8GG6G8cdh .image-block {
  margin: auto;
}
.cid-u8GG6G8cdh figcaption {
  position: relative;
}
.cid-u8GG6G8cdh figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u8GG6G8cdh .image-block {
    width: 100% !important;
  }
}
.cid-u8GG6G8cdh DIV {
  text-align: left;
  color: #ffffff;
}
.cid-u8GyxIjIcX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u8GyxIjIcX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u8GyxIjIcX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u8GyxIjIcX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u8GyxIjIcX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u8GyxIjIcX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u8GyxIjIcX .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u8GyxIjIcX .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u8GyxIjIcX .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u8GyxIjIcX .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u8GyxIjIcX .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-u8GDOMBQKi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u8GDOMBQKi .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u8GDOMBQKi .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u8GDOMBQKi .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u8GDOMBQKi .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u8GDOMBQKi .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u8GDOMBQKi .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u8GDOMBQKi .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-u8GDOMBQKi .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u8GDOMBQKi .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u8GDOMBQKi .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-ueg6NxoGBW {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-ueg6NxoGBW .mbr-text,
.cid-ueg6NxoGBW blockquote {
  color: #767676;
}
.cid-ueg6NxoGBW .mbr-text {
  color: #e4d295;
}
.cid-ueg6Qo2Ojn {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-ueg6Qo2Ojn .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ueg6Qo2Ojn .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ueg6Qo2Ojn .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ueg6Qo2Ojn .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ueg6Qo2Ojn .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-ueg6Qo2Ojn .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-ueg6Qo2Ojn .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-ueg6Qo2Ojn .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-ueg6Qo2Ojn .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-ueg6Qo2Ojn .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-upAyqU1Ii0 {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #9ff470, #232323);
}
.cid-upAyqU1Ii0 .image-block {
  margin: auto;
}
.cid-upAyqU1Ii0 figcaption {
  position: relative;
}
.cid-upAyqU1Ii0 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-upAyqU1Ii0 .image-block {
    width: 100% !important;
  }
}
.cid-upAyqU1Ii0 DIV {
  text-align: left;
  color: #232323;
}
.cid-upAsGceUpD {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-upAsGceUpD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-upAsGceUpD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-upAsGceUpD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-upAsGceUpD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-upAsGceUpD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-upAsGceUpD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-upAsGceUpD .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-upAsGceUpD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-upAsGceUpD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-upAsGceUpD .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-upAvlGlk4Y {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-upAvlGlk4Y .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-upAvlGlk4Y .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-upAvlGlk4Y .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-upAvlGlk4Y .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-upAvlGlk4Y .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-upAvlGlk4Y .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-upAvlGlk4Y .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-upAvlGlk4Y .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-upAvlGlk4Y .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-upAvlGlk4Y .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-upAz0wy74S {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #9ff470, #232323);
}
.cid-upAz0wy74S .image-block {
  margin: auto;
}
.cid-upAz0wy74S figcaption {
  position: relative;
}
.cid-upAz0wy74S figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-upAz0wy74S .image-block {
    width: 100% !important;
  }
}
.cid-upAz0wy74S DIV {
  text-align: left;
  color: #232323;
}
.cid-upAwhYJOq2 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-upAwhYJOq2 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-upAwhYJOq2 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-upAwhYJOq2 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-upAwhYJOq2 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-upAwhYJOq2 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-upAwhYJOq2 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-upAwhYJOq2 .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-upAwhYJOq2 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-upAwhYJOq2 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-upAwhYJOq2 .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-upAwj809TU {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-upAwj809TU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-upAwj809TU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-upAwj809TU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-upAwj809TU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-upAwj809TU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-upAwj809TU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-upAwj809TU .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-upAwj809TU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-upAwj809TU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-upAwj809TU .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-u8GhVsNiIL {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-u8GhVsNiIL .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u8GhVsNiIL .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u8GhVsNiIL .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u8GhVsNiIL .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u8GhVsNiIL .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u8GhVsNiIL .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u8GhVsNiIL .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u8GhVsNiIL .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u8GhVsNiIL .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u8GhVsNiIL .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u8GhVsNiIL .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u8GhVsNiIL .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u8GhVsNiIL .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u8GhVsNiIL .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u8GhVsNiIL foot-menu-item {
  color: #cebfaf;
}
.cid-u8GhVsNiIL .media-container-row .mbr-text {
  color: #e4d295;
}
.cid-upASbd530v {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-upASbd530v .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-upASbd530v .container {
    padding: 0 ;
  }
}
.cid-upASbd530v .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #474141;
}
.cid-upASbd530v .navbar.opened {
  transition: all 0.3s;
}
.cid-upASbd530v .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-upASbd530v .navbar .navbar-logo img {
  width: auto;
}
.cid-upASbd530v .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-upASbd530v .navbar.collapsed {
  justify-content: center;
}
.cid-upASbd530v .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upASbd530v .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-upASbd530v .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.9rem);
  }
}
.cid-upASbd530v .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upASbd530v .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upASbd530v .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-upASbd530v .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upASbd530v .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-upASbd530v .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-upASbd530v .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upASbd530v .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upASbd530v .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upASbd530v .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-upASbd530v .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-upASbd530v .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upASbd530v .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-upASbd530v .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-upASbd530v .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upASbd530v .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upASbd530v .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-upASbd530v .navbar.navbar-short {
  min-height: 110px;
}
.cid-upASbd530v .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-upASbd530v .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-upASbd530v .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-upASbd530v nav.navbar {
  position: fixed;
}
.cid-upASbd530v .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-upASbd530v .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-upASbd530v .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-upASbd530v .dropdown-item:hover,
.cid-upASbd530v .dropdown-item:focus {
  background: #e4d295 !important;
  color: white !important;
}
.cid-upASbd530v .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-upASbd530v .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-upASbd530v .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-upASbd530v .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-upASbd530v .iconfont-wrapper {
  color: #b1a374 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-upASbd530v .dropdown-menu,
.cid-upASbd530v .navbar.opened {
  background: #474141 !important;
}
.cid-upASbd530v .nav-item:focus,
.cid-upASbd530v .nav-link:focus {
  outline: none;
}
.cid-upASbd530v .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upASbd530v .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upASbd530v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upASbd530v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upASbd530v .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upASbd530v .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upASbd530v .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-upASbd530v .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-upASbd530v .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upASbd530v .dropdown-item.active,
.cid-upASbd530v .dropdown-item:active {
  background-color: transparent;
}
.cid-upASbd530v .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upASbd530v .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upASbd530v .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upASbd530v .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #474141;
}
.cid-upASbd530v .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-upASbd530v .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upASbd530v ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-upASbd530v .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upASbd530v button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-upASbd530v button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #82786e;
}
.cid-upASbd530v button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upASbd530v button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upASbd530v button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upASbd530v button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upASbd530v nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upASbd530v nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-upASbd530v nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-upASbd530v nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upASbd530v .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-upASbd530v a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-upASbd530v .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-upASbd530v .navbar {
    height: 70px;
  }
  .cid-upASbd530v .navbar.opened {
    height: auto;
  }
  .cid-upASbd530v .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upASbd530v .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-upASbd530v .icons-menu .mbr-iconfont:hover {
  background: #cebfaf;
}
.cid-upASbdxppR {
  background: #0f7699;
  background: linear-gradient(0deg, #cc2952, #0f7699);
}
.cid-upASbdxppR .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-upASbdxppR figcaption {
  position: relative;
}
.cid-upASbdxppR figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-upASbdxppR .image-block {
    width: 100% !important;
  }
}
.cid-upASbdxppR DIV {
  text-align: left;
  color: #efefef;
}
.cid-upAYiJWWiV {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #6277eb, #232323);
}
.cid-upAYiJWWiV .image-block {
  margin: auto;
}
.cid-upAYiJWWiV figcaption {
  position: relative;
}
.cid-upAYiJWWiV figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-upAYiJWWiV .image-block {
    width: 100% !important;
  }
}
.cid-upAYiJWWiV DIV {
  text-align: left;
  color: #cebfaf;
}
.cid-upAY1nWBgw {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #6277eb;
}
.cid-upAY1nWBgw .mbr-text,
.cid-upAY1nWBgw blockquote {
  color: #767676;
}
.cid-upAY1nWBgw .mbr-text {
  color: #232323;
}
.cid-upAY1nWBgw .mbr-text P {
  text-align: left;
}
.cid-upASbdLJCn {
  background: #6277eb;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #232323, #6277eb);
}
.cid-upASbdLJCn .image-block {
  margin: auto;
}
.cid-upASbdLJCn figcaption {
  position: relative;
}
.cid-upASbdLJCn figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-upASbdLJCn .image-block {
    width: 100% !important;
  }
}
.cid-upASbdLJCn DIV {
  text-align: left;
  color: #cebfaf;
}
.cid-upFV7Yu4Ce {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #6277eb;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-upFV7Yu4Ce .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-upFV7Yu4Ce .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-upFV7Yu4Ce .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-upFV7Yu4Ce .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-upFV7Yu4Ce .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #6277eb;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-upFV7Yu4Ce .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-upFV7Yu4Ce .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-upFV7Yu4Ce .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-upFV7Yu4Ce .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #6277eb !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-upFV7Yu4Ce .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-upASbeOwdB {
  background: #6277eb;
  padding-top: 15px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #232323, #6277eb);
}
.cid-upASbeOwdB .image-block {
  margin: auto;
}
.cid-upASbeOwdB figcaption {
  position: relative;
}
.cid-upASbeOwdB figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-upASbeOwdB .image-block {
    width: 100% !important;
  }
}
.cid-upASbeOwdB DIV {
  text-align: left;
  color: #cebfaf;
}
.cid-upFIhXxNOh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #6277eb;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-upFIhXxNOh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-upFIhXxNOh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-upFIhXxNOh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-upFIhXxNOh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-upFIhXxNOh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #6277eb;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-upFIhXxNOh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-upFIhXxNOh .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-upFIhXxNOh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-upFIhXxNOh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #6277eb !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-upFIhXxNOh .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-upB0o8rG5Q {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6277eb;
}
.cid-upB0o8rG5Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-upB0o8rG5Q .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-upB0o8rG5Q .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upB0o8rG5Q .row {
  flex-direction: row-reverse;
}
.cid-upB0o8rG5Q img {
  width: 100%;
}
.cid-upB0o8rG5Q .mbr-text {
  color: #cebfaf;
}
.cid-upAZOttgUw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6277eb;
}
.cid-upAZOttgUw .mbr-fallback-image.disabled {
  display: none;
}
.cid-upAZOttgUw .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-upAZOttgUw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upAZOttgUw .row {
  flex-direction: row-reverse;
}
.cid-upAZOttgUw img {
  width: 100%;
}
.cid-upAZOttgUw .mbr-text {
  color: #cebfaf;
}
.cid-upAZHRu4Re {
  background: #6277eb;
  padding-top: 30px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #232323, #6277eb);
}
.cid-upAZHRu4Re .image-block {
  margin: auto;
}
.cid-upAZHRu4Re figcaption {
  position: relative;
}
.cid-upAZHRu4Re figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-upAZHRu4Re .image-block {
    width: 100% !important;
  }
}
.cid-upAZHRu4Re DIV {
  text-align: left;
  color: #cebfaf;
}
.cid-upEG5A1eIa {
  background: #232323;
  padding-top: 30px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #6277eb, #232323);
}
.cid-upEG5A1eIa .image-block {
  margin: auto;
}
.cid-upEG5A1eIa figcaption {
  position: relative;
}
.cid-upEG5A1eIa figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-upEG5A1eIa .image-block {
    width: 100% !important;
  }
}
.cid-upEG5A1eIa DIV {
  text-align: left;
  color: #cebfaf;
}
.cid-upASbglx4q {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
.cid-upASbglx4q .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-upASbglx4q .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-upASbglx4q .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-upASbglx4q .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-upASbglx4q .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-upASbglx4q .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-upASbglx4q .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-upASbglx4q .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-upASbglx4q .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-upASbglx4q .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-upASbglx4q .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-upASbglx4q .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-upASbglx4q .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-upASbglx4q .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-upASbglx4q foot-menu-item {
  color: #cebfaf;
}
.cid-upASbglx4q .media-container-row .mbr-text {
  color: #e4d295;
}
