body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tsqT1CVGdE {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #131111;
}
.cid-tsqT1CVGdE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsqT1CVGdE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsqT1CVGdE .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tsqT1CVGdE .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tsqT1CVGdE .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tsqT1CVGdE .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tsqT1CVGdE .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tsqT1CVGdE .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tsqT1CVGdE .carousel-control,
.cid-tsqT1CVGdE .close {
  background: #1b1b1b;
}
.cid-tsqT1CVGdE .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tsqT1CVGdE .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tsqT1CVGdE .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tsqT1CVGdE .carousel-control-next span {
  margin-left: 5px;
}
.cid-tsqT1CVGdE .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tsqT1CVGdE .close::before {
  content: '\e91a';
}
.cid-tsqT1CVGdE .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tsqT1CVGdE .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tsqT1CVGdE .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsqT1CVGdE .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tsqT1CVGdE .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tsqT1CVGdE .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tsqT1CVGdE .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tsqT1CVGdE .carousel-indicators li.active,
.cid-tsqT1CVGdE .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tsqT1CVGdE .carousel-indicators li::after,
.cid-tsqT1CVGdE .carousel-indicators li::before {
  content: none;
}
.cid-tsqT1CVGdE .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tsqT1CVGdE .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tsqT1CVGdE .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tsqT1CVGdE .carousel-indicators {
    display: none;
  }
}
.cid-tsqT1CVGdE .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tsqT1CVGdE .carousel-inner > .active {
  display: block;
}
.cid-tsqT1CVGdE .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsqT1CVGdE .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tsqT1CVGdE .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tsqT1CVGdE .carousel-control,
  .cid-tsqT1CVGdE .carousel-indicators,
  .cid-tsqT1CVGdE .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tsqT1CVGdE .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tsqT1CVGdE .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tsqT1CVGdE .carousel-indicators .active,
.cid-tsqT1CVGdE .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tsqT1CVGdE .carousel-indicators .active {
  background: #fff;
}
.cid-tsqT1CVGdE .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tsqT1CVGdE .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tsqT1CVGdE .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tsqT1CVGdE .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tsqT1CVGdE .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tsqT1CVGdE .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tsqT1CVGdE .carousel {
  width: 100%;
}
.cid-tsqT1CVGdE .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tsqT1CVGdE .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tsqT1CVGdE .modal.fade .modal-dialog,
.cid-tsqT1CVGdE .modal.in .modal-dialog {
  transform: none;
}
.cid-tsqT1CVGdE .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tsqT1CVGdE H6 {
  text-align: center;
}
.cid-tsmVquKVyG {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tsmVquKVyG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsmVquKVyG .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-tsmVquKVyG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tsmVquKVyG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tsmVquKVyG .text-wrapper {
    padding: 2rem;
  }
}
.cid-tsnGbceipu {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tsnGbceipu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsnGbceipu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsnGbceipu .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tsnGbceipu .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tsnGbceipu .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tsnGbceipu .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tsnGbceipu .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tsnGbceipu .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tsnGbceipu .carousel-control,
.cid-tsnGbceipu .close {
  background: #1b1b1b;
}
.cid-tsnGbceipu .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tsnGbceipu .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tsnGbceipu .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tsnGbceipu .carousel-control-next span {
  margin-left: 5px;
}
.cid-tsnGbceipu .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tsnGbceipu .close::before {
  content: '\e91a';
}
.cid-tsnGbceipu .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tsnGbceipu .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tsnGbceipu .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsnGbceipu .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tsnGbceipu .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tsnGbceipu .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tsnGbceipu .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tsnGbceipu .carousel-indicators li.active,
.cid-tsnGbceipu .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tsnGbceipu .carousel-indicators li::after,
.cid-tsnGbceipu .carousel-indicators li::before {
  content: none;
}
.cid-tsnGbceipu .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tsnGbceipu .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tsnGbceipu .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tsnGbceipu .carousel-indicators {
    display: none;
  }
}
.cid-tsnGbceipu .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tsnGbceipu .carousel-inner > .active {
  display: block;
}
.cid-tsnGbceipu .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsnGbceipu .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tsnGbceipu .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tsnGbceipu .carousel-control,
  .cid-tsnGbceipu .carousel-indicators,
  .cid-tsnGbceipu .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tsnGbceipu .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tsnGbceipu .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tsnGbceipu .carousel-indicators .active,
.cid-tsnGbceipu .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tsnGbceipu .carousel-indicators .active {
  background: #fff;
}
.cid-tsnGbceipu .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tsnGbceipu .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tsnGbceipu .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tsnGbceipu .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tsnGbceipu .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tsnGbceipu .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tsnGbceipu .carousel {
  width: 100%;
}
.cid-tsnGbceipu .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tsnGbceipu .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tsnGbceipu .modal.fade .modal-dialog,
.cid-tsnGbceipu .modal.in .modal-dialog {
  transform: none;
}
.cid-tsnGbceipu .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tsnGbceipu H6 {
  text-align: center;
}
.cid-tsqMS0oY5W {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #131111;
}
.cid-tsooaZcN60 {
  z-index: 1000;
  width: 100%;
}
.cid-tsooaZcN60 nav.navbar {
  position: fixed;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsooaZcN60 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsooaZcN60 .dropdown-item:hover,
.cid-tsooaZcN60 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tsooaZcN60 .dropdown-item:hover span {
  color: white;
}
.cid-tsooaZcN60 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsooaZcN60 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsooaZcN60 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsooaZcN60 .nav-link {
  position: relative;
}
.cid-tsooaZcN60 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsooaZcN60 .container {
    flex-wrap: nowrap;
  }
}
.cid-tsooaZcN60 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsooaZcN60 .dropdown-menu,
.cid-tsooaZcN60 .navbar.opened {
  background: #232323 !important;
}
.cid-tsooaZcN60 .nav-item:focus,
.cid-tsooaZcN60 .nav-link:focus {
  outline: none;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsooaZcN60 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsooaZcN60 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsooaZcN60 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0.2);
}
.cid-tsooaZcN60 .navbar.opened {
  transition: all 0.3s;
}
.cid-tsooaZcN60 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsooaZcN60 .navbar .navbar-logo img {
  width: auto;
}
.cid-tsooaZcN60 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsooaZcN60 .navbar.collapsed {
  justify-content: center;
}
.cid-tsooaZcN60 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsooaZcN60 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsooaZcN60 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsooaZcN60 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsooaZcN60 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsooaZcN60 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsooaZcN60 .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-tsooaZcN60 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsooaZcN60 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsooaZcN60 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsooaZcN60 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsooaZcN60 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsooaZcN60 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tsooaZcN60 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsooaZcN60 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsooaZcN60 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsooaZcN60 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsooaZcN60 .dropdown-item.active,
.cid-tsooaZcN60 .dropdown-item:active {
  background-color: transparent;
}
.cid-tsooaZcN60 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsooaZcN60 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tsooaZcN60 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsooaZcN60 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsooaZcN60 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsooaZcN60 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsooaZcN60 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsooaZcN60 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsooaZcN60 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar {
    height: 70px;
  }
  .cid-tsooaZcN60 .navbar.opened {
    height: auto;
  }
  .cid-tsooaZcN60 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsqJRjOqLP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsqJRjOqLP .mbr-text {
  color: #767676;
}
.cid-tsqJRjOqLP .links {
  color: #ffe161;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsqJRjOqLP .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-tsqJRjOqLP .footer-lower .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-tsqJRjOqLP .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tsqJRjOqLP .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tsqJRjOqLP .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tsqJRjOqLP .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tsqT7Um7Gv {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #131111;
}
.cid-tsqT7Um7Gv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsqT7Um7Gv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsqT7Um7Gv .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tsqT7Um7Gv .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tsqT7Um7Gv .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tsqT7Um7Gv .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tsqT7Um7Gv .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tsqT7Um7Gv .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tsqT7Um7Gv .carousel-control,
.cid-tsqT7Um7Gv .close {
  background: #1b1b1b;
}
.cid-tsqT7Um7Gv .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tsqT7Um7Gv .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tsqT7Um7Gv .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tsqT7Um7Gv .carousel-control-next span {
  margin-left: 5px;
}
.cid-tsqT7Um7Gv .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tsqT7Um7Gv .close::before {
  content: '\e91a';
}
.cid-tsqT7Um7Gv .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tsqT7Um7Gv .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tsqT7Um7Gv .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsqT7Um7Gv .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tsqT7Um7Gv .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tsqT7Um7Gv .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tsqT7Um7Gv .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tsqT7Um7Gv .carousel-indicators li.active,
.cid-tsqT7Um7Gv .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tsqT7Um7Gv .carousel-indicators li::after,
.cid-tsqT7Um7Gv .carousel-indicators li::before {
  content: none;
}
.cid-tsqT7Um7Gv .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tsqT7Um7Gv .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tsqT7Um7Gv .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tsqT7Um7Gv .carousel-indicators {
    display: none;
  }
}
.cid-tsqT7Um7Gv .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tsqT7Um7Gv .carousel-inner > .active {
  display: block;
}
.cid-tsqT7Um7Gv .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsqT7Um7Gv .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tsqT7Um7Gv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tsqT7Um7Gv .carousel-control,
  .cid-tsqT7Um7Gv .carousel-indicators,
  .cid-tsqT7Um7Gv .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tsqT7Um7Gv .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tsqT7Um7Gv .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tsqT7Um7Gv .carousel-indicators .active,
.cid-tsqT7Um7Gv .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tsqT7Um7Gv .carousel-indicators .active {
  background: #fff;
}
.cid-tsqT7Um7Gv .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tsqT7Um7Gv .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tsqT7Um7Gv .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tsqT7Um7Gv .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tsqT7Um7Gv .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tsqT7Um7Gv .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tsqT7Um7Gv .carousel {
  width: 100%;
}
.cid-tsqT7Um7Gv .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tsqT7Um7Gv .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tsqT7Um7Gv .modal.fade .modal-dialog,
.cid-tsqT7Um7Gv .modal.in .modal-dialog {
  transform: none;
}
.cid-tsqT7Um7Gv .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tsqT7Um7Gv H6 {
  text-align: center;
}
.cid-tsnCzgUBIv {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsnCzgUBIv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsnCzgUBIv .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-tsnCzgUBIv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tsnCzgUBIv img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tsnCzgUBIv .text-wrapper {
    padding: 2rem;
  }
}
.cid-tsnI1u1Kaf {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tsnI1u1Kaf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsnI1u1Kaf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsnI1u1Kaf .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tsnI1u1Kaf .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tsnI1u1Kaf .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tsnI1u1Kaf .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tsnI1u1Kaf .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tsnI1u1Kaf .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tsnI1u1Kaf .carousel-control,
.cid-tsnI1u1Kaf .close {
  background: #1b1b1b;
}
.cid-tsnI1u1Kaf .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tsnI1u1Kaf .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tsnI1u1Kaf .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tsnI1u1Kaf .carousel-control-next span {
  margin-left: 5px;
}
.cid-tsnI1u1Kaf .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tsnI1u1Kaf .close::before {
  content: '\e91a';
}
.cid-tsnI1u1Kaf .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tsnI1u1Kaf .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tsnI1u1Kaf .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsnI1u1Kaf .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tsnI1u1Kaf .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tsnI1u1Kaf .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tsnI1u1Kaf .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tsnI1u1Kaf .carousel-indicators li.active,
.cid-tsnI1u1Kaf .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tsnI1u1Kaf .carousel-indicators li::after,
.cid-tsnI1u1Kaf .carousel-indicators li::before {
  content: none;
}
.cid-tsnI1u1Kaf .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tsnI1u1Kaf .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tsnI1u1Kaf .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tsnI1u1Kaf .carousel-indicators {
    display: none;
  }
}
.cid-tsnI1u1Kaf .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tsnI1u1Kaf .carousel-inner > .active {
  display: block;
}
.cid-tsnI1u1Kaf .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsnI1u1Kaf .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tsnI1u1Kaf .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tsnI1u1Kaf .carousel-control,
  .cid-tsnI1u1Kaf .carousel-indicators,
  .cid-tsnI1u1Kaf .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tsnI1u1Kaf .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tsnI1u1Kaf .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tsnI1u1Kaf .carousel-indicators .active,
.cid-tsnI1u1Kaf .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tsnI1u1Kaf .carousel-indicators .active {
  background: #fff;
}
.cid-tsnI1u1Kaf .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tsnI1u1Kaf .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tsnI1u1Kaf .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tsnI1u1Kaf .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tsnI1u1Kaf .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tsnI1u1Kaf .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tsnI1u1Kaf .carousel {
  width: 100%;
}
.cid-tsnI1u1Kaf .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tsnI1u1Kaf .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tsnI1u1Kaf .modal.fade .modal-dialog,
.cid-tsnI1u1Kaf .modal.in .modal-dialog {
  transform: none;
}
.cid-tsnI1u1Kaf .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tsnI1u1Kaf H6 {
  text-align: center;
}
.cid-tsooaZcN60 {
  z-index: 1000;
  width: 100%;
}
.cid-tsooaZcN60 nav.navbar {
  position: fixed;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsooaZcN60 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsooaZcN60 .dropdown-item:hover,
.cid-tsooaZcN60 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tsooaZcN60 .dropdown-item:hover span {
  color: white;
}
.cid-tsooaZcN60 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsooaZcN60 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsooaZcN60 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsooaZcN60 .nav-link {
  position: relative;
}
.cid-tsooaZcN60 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsooaZcN60 .container {
    flex-wrap: nowrap;
  }
}
.cid-tsooaZcN60 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsooaZcN60 .dropdown-menu,
.cid-tsooaZcN60 .navbar.opened {
  background: #232323 !important;
}
.cid-tsooaZcN60 .nav-item:focus,
.cid-tsooaZcN60 .nav-link:focus {
  outline: none;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsooaZcN60 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsooaZcN60 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsooaZcN60 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0.2);
}
.cid-tsooaZcN60 .navbar.opened {
  transition: all 0.3s;
}
.cid-tsooaZcN60 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsooaZcN60 .navbar .navbar-logo img {
  width: auto;
}
.cid-tsooaZcN60 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsooaZcN60 .navbar.collapsed {
  justify-content: center;
}
.cid-tsooaZcN60 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsooaZcN60 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsooaZcN60 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsooaZcN60 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsooaZcN60 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsooaZcN60 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsooaZcN60 .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-tsooaZcN60 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsooaZcN60 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsooaZcN60 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsooaZcN60 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsooaZcN60 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsooaZcN60 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tsooaZcN60 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsooaZcN60 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsooaZcN60 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsooaZcN60 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsooaZcN60 .dropdown-item.active,
.cid-tsooaZcN60 .dropdown-item:active {
  background-color: transparent;
}
.cid-tsooaZcN60 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsooaZcN60 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tsooaZcN60 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsooaZcN60 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsooaZcN60 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsooaZcN60 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsooaZcN60 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsooaZcN60 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsooaZcN60 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar {
    height: 70px;
  }
  .cid-tsooaZcN60 .navbar.opened {
    height: auto;
  }
  .cid-tsooaZcN60 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsqNkaA3SF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e6c63b;
}
.cid-tsqJRjOqLP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsqJRjOqLP .mbr-text {
  color: #767676;
}
.cid-tsqJRjOqLP .links {
  color: #ffe161;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsqJRjOqLP .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-tsqJRjOqLP .footer-lower .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-tsqJRjOqLP .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tsqJRjOqLP .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tsqJRjOqLP .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tsqJRjOqLP .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tsqTaWNPDi {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #131111;
}
.cid-tsqTaWNPDi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsqTaWNPDi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsqTaWNPDi .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tsqTaWNPDi .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tsqTaWNPDi .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tsqTaWNPDi .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tsqTaWNPDi .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tsqTaWNPDi .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tsqTaWNPDi .carousel-control,
.cid-tsqTaWNPDi .close {
  background: #1b1b1b;
}
.cid-tsqTaWNPDi .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tsqTaWNPDi .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tsqTaWNPDi .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tsqTaWNPDi .carousel-control-next span {
  margin-left: 5px;
}
.cid-tsqTaWNPDi .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tsqTaWNPDi .close::before {
  content: '\e91a';
}
.cid-tsqTaWNPDi .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tsqTaWNPDi .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tsqTaWNPDi .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsqTaWNPDi .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tsqTaWNPDi .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tsqTaWNPDi .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tsqTaWNPDi .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tsqTaWNPDi .carousel-indicators li.active,
.cid-tsqTaWNPDi .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tsqTaWNPDi .carousel-indicators li::after,
.cid-tsqTaWNPDi .carousel-indicators li::before {
  content: none;
}
.cid-tsqTaWNPDi .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tsqTaWNPDi .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tsqTaWNPDi .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tsqTaWNPDi .carousel-indicators {
    display: none;
  }
}
.cid-tsqTaWNPDi .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tsqTaWNPDi .carousel-inner > .active {
  display: block;
}
.cid-tsqTaWNPDi .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsqTaWNPDi .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tsqTaWNPDi .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tsqTaWNPDi .carousel-control,
  .cid-tsqTaWNPDi .carousel-indicators,
  .cid-tsqTaWNPDi .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tsqTaWNPDi .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tsqTaWNPDi .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tsqTaWNPDi .carousel-indicators .active,
.cid-tsqTaWNPDi .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tsqTaWNPDi .carousel-indicators .active {
  background: #fff;
}
.cid-tsqTaWNPDi .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tsqTaWNPDi .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tsqTaWNPDi .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tsqTaWNPDi .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tsqTaWNPDi .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tsqTaWNPDi .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tsqTaWNPDi .carousel {
  width: 100%;
}
.cid-tsqTaWNPDi .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tsqTaWNPDi .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tsqTaWNPDi .modal.fade .modal-dialog,
.cid-tsqTaWNPDi .modal.in .modal-dialog {
  transform: none;
}
.cid-tsqTaWNPDi .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tsqTaWNPDi H6 {
  text-align: center;
}
.cid-tsnFwZWI16 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsnFwZWI16 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsnFwZWI16 .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-tsnFwZWI16 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tsnFwZWI16 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tsnFwZWI16 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tsnSul6C6o {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tsnSul6C6o .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsnSul6C6o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsnSul6C6o .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tsnSul6C6o .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tsnSul6C6o .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tsnSul6C6o .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tsnSul6C6o .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tsnSul6C6o .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tsnSul6C6o .carousel-control,
.cid-tsnSul6C6o .close {
  background: #1b1b1b;
}
.cid-tsnSul6C6o .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tsnSul6C6o .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tsnSul6C6o .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tsnSul6C6o .carousel-control-next span {
  margin-left: 5px;
}
.cid-tsnSul6C6o .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tsnSul6C6o .close::before {
  content: '\e91a';
}
.cid-tsnSul6C6o .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tsnSul6C6o .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tsnSul6C6o .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsnSul6C6o .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tsnSul6C6o .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tsnSul6C6o .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tsnSul6C6o .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tsnSul6C6o .carousel-indicators li.active,
.cid-tsnSul6C6o .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tsnSul6C6o .carousel-indicators li::after,
.cid-tsnSul6C6o .carousel-indicators li::before {
  content: none;
}
.cid-tsnSul6C6o .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tsnSul6C6o .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tsnSul6C6o .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tsnSul6C6o .carousel-indicators {
    display: none;
  }
}
.cid-tsnSul6C6o .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tsnSul6C6o .carousel-inner > .active {
  display: block;
}
.cid-tsnSul6C6o .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsnSul6C6o .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tsnSul6C6o .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tsnSul6C6o .carousel-control,
  .cid-tsnSul6C6o .carousel-indicators,
  .cid-tsnSul6C6o .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tsnSul6C6o .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tsnSul6C6o .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tsnSul6C6o .carousel-indicators .active,
.cid-tsnSul6C6o .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tsnSul6C6o .carousel-indicators .active {
  background: #fff;
}
.cid-tsnSul6C6o .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tsnSul6C6o .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tsnSul6C6o .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tsnSul6C6o .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tsnSul6C6o .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tsnSul6C6o .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tsnSul6C6o .carousel {
  width: 100%;
}
.cid-tsnSul6C6o .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tsnSul6C6o .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tsnSul6C6o .modal.fade .modal-dialog,
.cid-tsnSul6C6o .modal.in .modal-dialog {
  transform: none;
}
.cid-tsnSul6C6o .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tsnSul6C6o H6 {
  text-align: center;
}
.cid-tsooaZcN60 {
  z-index: 1000;
  width: 100%;
}
.cid-tsooaZcN60 nav.navbar {
  position: fixed;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsooaZcN60 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsooaZcN60 .dropdown-item:hover,
.cid-tsooaZcN60 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tsooaZcN60 .dropdown-item:hover span {
  color: white;
}
.cid-tsooaZcN60 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsooaZcN60 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsooaZcN60 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsooaZcN60 .nav-link {
  position: relative;
}
.cid-tsooaZcN60 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsooaZcN60 .container {
    flex-wrap: nowrap;
  }
}
.cid-tsooaZcN60 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsooaZcN60 .dropdown-menu,
.cid-tsooaZcN60 .navbar.opened {
  background: #232323 !important;
}
.cid-tsooaZcN60 .nav-item:focus,
.cid-tsooaZcN60 .nav-link:focus {
  outline: none;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsooaZcN60 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsooaZcN60 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsooaZcN60 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0.2);
}
.cid-tsooaZcN60 .navbar.opened {
  transition: all 0.3s;
}
.cid-tsooaZcN60 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsooaZcN60 .navbar .navbar-logo img {
  width: auto;
}
.cid-tsooaZcN60 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsooaZcN60 .navbar.collapsed {
  justify-content: center;
}
.cid-tsooaZcN60 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsooaZcN60 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsooaZcN60 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsooaZcN60 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsooaZcN60 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsooaZcN60 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsooaZcN60 .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-tsooaZcN60 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsooaZcN60 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsooaZcN60 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsooaZcN60 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsooaZcN60 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsooaZcN60 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tsooaZcN60 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsooaZcN60 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsooaZcN60 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsooaZcN60 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsooaZcN60 .dropdown-item.active,
.cid-tsooaZcN60 .dropdown-item:active {
  background-color: transparent;
}
.cid-tsooaZcN60 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsooaZcN60 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tsooaZcN60 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsooaZcN60 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsooaZcN60 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsooaZcN60 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsooaZcN60 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsooaZcN60 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsooaZcN60 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar {
    height: 70px;
  }
  .cid-tsooaZcN60 .navbar.opened {
    height: auto;
  }
  .cid-tsooaZcN60 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsqSuk1lIe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #131111;
}
.cid-tsqJRjOqLP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsqJRjOqLP .mbr-text {
  color: #767676;
}
.cid-tsqJRjOqLP .links {
  color: #ffe161;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsqJRjOqLP .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-tsqJRjOqLP .footer-lower .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-tsqJRjOqLP .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tsqJRjOqLP .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tsqJRjOqLP .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tsqJRjOqLP .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tsqTddpkYS {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #131111;
}
.cid-tsqTddpkYS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsqTddpkYS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsqTddpkYS .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tsqTddpkYS .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tsqTddpkYS .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tsqTddpkYS .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tsqTddpkYS .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tsqTddpkYS .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tsqTddpkYS .carousel-control,
.cid-tsqTddpkYS .close {
  background: #1b1b1b;
}
.cid-tsqTddpkYS .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tsqTddpkYS .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tsqTddpkYS .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tsqTddpkYS .carousel-control-next span {
  margin-left: 5px;
}
.cid-tsqTddpkYS .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tsqTddpkYS .close::before {
  content: '\e91a';
}
.cid-tsqTddpkYS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tsqTddpkYS .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tsqTddpkYS .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsqTddpkYS .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tsqTddpkYS .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tsqTddpkYS .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tsqTddpkYS .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tsqTddpkYS .carousel-indicators li.active,
.cid-tsqTddpkYS .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tsqTddpkYS .carousel-indicators li::after,
.cid-tsqTddpkYS .carousel-indicators li::before {
  content: none;
}
.cid-tsqTddpkYS .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tsqTddpkYS .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tsqTddpkYS .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tsqTddpkYS .carousel-indicators {
    display: none;
  }
}
.cid-tsqTddpkYS .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tsqTddpkYS .carousel-inner > .active {
  display: block;
}
.cid-tsqTddpkYS .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsqTddpkYS .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tsqTddpkYS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tsqTddpkYS .carousel-control,
  .cid-tsqTddpkYS .carousel-indicators,
  .cid-tsqTddpkYS .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tsqTddpkYS .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tsqTddpkYS .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tsqTddpkYS .carousel-indicators .active,
.cid-tsqTddpkYS .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tsqTddpkYS .carousel-indicators .active {
  background: #fff;
}
.cid-tsqTddpkYS .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tsqTddpkYS .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tsqTddpkYS .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tsqTddpkYS .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tsqTddpkYS .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tsqTddpkYS .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tsqTddpkYS .carousel {
  width: 100%;
}
.cid-tsqTddpkYS .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tsqTddpkYS .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tsqTddpkYS .modal.fade .modal-dialog,
.cid-tsqTddpkYS .modal.in .modal-dialog {
  transform: none;
}
.cid-tsqTddpkYS .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tsqTddpkYS H6 {
  text-align: center;
}
.cid-tso2fVDzqn {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tso2fVDzqn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tso2fVDzqn .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-tso2fVDzqn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tso2fVDzqn img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tso2fVDzqn .text-wrapper {
    padding: 2rem;
  }
}
.cid-tso2fWv5l1 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tso2fWv5l1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tso2fWv5l1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tso2fWv5l1 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tso2fWv5l1 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tso2fWv5l1 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tso2fWv5l1 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tso2fWv5l1 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tso2fWv5l1 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tso2fWv5l1 .carousel-control,
.cid-tso2fWv5l1 .close {
  background: #1b1b1b;
}
.cid-tso2fWv5l1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tso2fWv5l1 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tso2fWv5l1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tso2fWv5l1 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tso2fWv5l1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tso2fWv5l1 .close::before {
  content: '\e91a';
}
.cid-tso2fWv5l1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tso2fWv5l1 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tso2fWv5l1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tso2fWv5l1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tso2fWv5l1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tso2fWv5l1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tso2fWv5l1 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tso2fWv5l1 .carousel-indicators li.active,
.cid-tso2fWv5l1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tso2fWv5l1 .carousel-indicators li::after,
.cid-tso2fWv5l1 .carousel-indicators li::before {
  content: none;
}
.cid-tso2fWv5l1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tso2fWv5l1 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tso2fWv5l1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tso2fWv5l1 .carousel-indicators {
    display: none;
  }
}
.cid-tso2fWv5l1 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tso2fWv5l1 .carousel-inner > .active {
  display: block;
}
.cid-tso2fWv5l1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tso2fWv5l1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tso2fWv5l1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tso2fWv5l1 .carousel-control,
  .cid-tso2fWv5l1 .carousel-indicators,
  .cid-tso2fWv5l1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tso2fWv5l1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tso2fWv5l1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tso2fWv5l1 .carousel-indicators .active,
.cid-tso2fWv5l1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tso2fWv5l1 .carousel-indicators .active {
  background: #fff;
}
.cid-tso2fWv5l1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tso2fWv5l1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tso2fWv5l1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tso2fWv5l1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tso2fWv5l1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tso2fWv5l1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tso2fWv5l1 .carousel {
  width: 100%;
}
.cid-tso2fWv5l1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tso2fWv5l1 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tso2fWv5l1 .modal.fade .modal-dialog,
.cid-tso2fWv5l1 .modal.in .modal-dialog {
  transform: none;
}
.cid-tso2fWv5l1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tso2fWv5l1 H6 {
  text-align: center;
}
.cid-tsooaZcN60 {
  z-index: 1000;
  width: 100%;
}
.cid-tsooaZcN60 nav.navbar {
  position: fixed;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsooaZcN60 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsooaZcN60 .dropdown-item:hover,
.cid-tsooaZcN60 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tsooaZcN60 .dropdown-item:hover span {
  color: white;
}
.cid-tsooaZcN60 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsooaZcN60 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsooaZcN60 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsooaZcN60 .nav-link {
  position: relative;
}
.cid-tsooaZcN60 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsooaZcN60 .container {
    flex-wrap: nowrap;
  }
}
.cid-tsooaZcN60 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsooaZcN60 .dropdown-menu,
.cid-tsooaZcN60 .navbar.opened {
  background: #232323 !important;
}
.cid-tsooaZcN60 .nav-item:focus,
.cid-tsooaZcN60 .nav-link:focus {
  outline: none;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsooaZcN60 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsooaZcN60 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsooaZcN60 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0.2);
}
.cid-tsooaZcN60 .navbar.opened {
  transition: all 0.3s;
}
.cid-tsooaZcN60 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsooaZcN60 .navbar .navbar-logo img {
  width: auto;
}
.cid-tsooaZcN60 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsooaZcN60 .navbar.collapsed {
  justify-content: center;
}
.cid-tsooaZcN60 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsooaZcN60 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsooaZcN60 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsooaZcN60 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsooaZcN60 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsooaZcN60 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsooaZcN60 .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-tsooaZcN60 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsooaZcN60 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsooaZcN60 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsooaZcN60 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsooaZcN60 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsooaZcN60 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tsooaZcN60 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsooaZcN60 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsooaZcN60 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsooaZcN60 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsooaZcN60 .dropdown-item.active,
.cid-tsooaZcN60 .dropdown-item:active {
  background-color: transparent;
}
.cid-tsooaZcN60 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsooaZcN60 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tsooaZcN60 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsooaZcN60 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsooaZcN60 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsooaZcN60 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsooaZcN60 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsooaZcN60 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsooaZcN60 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar {
    height: 70px;
  }
  .cid-tsooaZcN60 .navbar.opened {
    height: auto;
  }
  .cid-tsooaZcN60 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsqSDTdI61 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #131111;
}
.cid-tsqJRjOqLP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsqJRjOqLP .mbr-text {
  color: #767676;
}
.cid-tsqJRjOqLP .links {
  color: #ffe161;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsqJRjOqLP .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-tsqJRjOqLP .footer-lower .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-tsqJRjOqLP .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tsqJRjOqLP .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tsqJRjOqLP .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tsqJRjOqLP .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sFF0SGinka {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #131111;
}
.cid-sFF0SGinka .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sFF0SGinka .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sFF0SGinka .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sFF0SGinka .mbr-section-title {
  color: #e6c63b;
}
.cid-sFF0SGinka .mbr-text,
.cid-sFF0SGinka .mbr-section-btn {
  color: #8e8d8a;
  text-align: left;
}
.cid-sFF0SGinka .mbr-section-title DIV {
  text-align: left;
}
.cid-tsuzMZcvh2 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #131111;
}
.cid-tsuzMZcvh2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsuzMZcvh2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsuzMZcvh2 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tsuzMZcvh2 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tsuzMZcvh2 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tsuzMZcvh2 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tsuzMZcvh2 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tsuzMZcvh2 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tsuzMZcvh2 .carousel-control,
.cid-tsuzMZcvh2 .close {
  background: #1b1b1b;
}
.cid-tsuzMZcvh2 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tsuzMZcvh2 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tsuzMZcvh2 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tsuzMZcvh2 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tsuzMZcvh2 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tsuzMZcvh2 .close::before {
  content: '\e91a';
}
.cid-tsuzMZcvh2 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tsuzMZcvh2 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tsuzMZcvh2 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsuzMZcvh2 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tsuzMZcvh2 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tsuzMZcvh2 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tsuzMZcvh2 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tsuzMZcvh2 .carousel-indicators li.active,
.cid-tsuzMZcvh2 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tsuzMZcvh2 .carousel-indicators li::after,
.cid-tsuzMZcvh2 .carousel-indicators li::before {
  content: none;
}
.cid-tsuzMZcvh2 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tsuzMZcvh2 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tsuzMZcvh2 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tsuzMZcvh2 .carousel-indicators {
    display: none;
  }
}
.cid-tsuzMZcvh2 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tsuzMZcvh2 .carousel-inner > .active {
  display: block;
}
.cid-tsuzMZcvh2 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsuzMZcvh2 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tsuzMZcvh2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tsuzMZcvh2 .carousel-control,
  .cid-tsuzMZcvh2 .carousel-indicators,
  .cid-tsuzMZcvh2 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tsuzMZcvh2 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tsuzMZcvh2 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tsuzMZcvh2 .carousel-indicators .active,
.cid-tsuzMZcvh2 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tsuzMZcvh2 .carousel-indicators .active {
  background: #fff;
}
.cid-tsuzMZcvh2 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tsuzMZcvh2 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tsuzMZcvh2 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tsuzMZcvh2 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tsuzMZcvh2 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tsuzMZcvh2 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tsuzMZcvh2 .carousel {
  width: 100%;
}
.cid-tsuzMZcvh2 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tsuzMZcvh2 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tsuzMZcvh2 .modal.fade .modal-dialog,
.cid-tsuzMZcvh2 .modal.in .modal-dialog {
  transform: none;
}
.cid-tsuzMZcvh2 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tsuzMZcvh2 H6 {
  text-align: center;
}
.cid-tsuzpkkM3A {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #131111;
}
.cid-sFF75ZhH2d {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #131111;
}
@media (max-width: 991px) {
  .cid-sFF75ZhH2d .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sFF75ZhH2d img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sFF75ZhH2d .text-wrapper {
    padding: 2rem;
  }
}
.cid-sFF75ZhH2d .mbr-section-title {
  color: #e6c63b;
}
.cid-sFF75ZhH2d .mbr-text {
  color: #8e8d8a;
}
.cid-tsuzLulWD7 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #131111;
}
.cid-tsuzLulWD7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsuzLulWD7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsuzLulWD7 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tsuzLulWD7 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tsuzLulWD7 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tsuzLulWD7 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tsuzLulWD7 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tsuzLulWD7 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tsuzLulWD7 .carousel-control,
.cid-tsuzLulWD7 .close {
  background: #1b1b1b;
}
.cid-tsuzLulWD7 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tsuzLulWD7 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tsuzLulWD7 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tsuzLulWD7 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tsuzLulWD7 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tsuzLulWD7 .close::before {
  content: '\e91a';
}
.cid-tsuzLulWD7 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tsuzLulWD7 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tsuzLulWD7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsuzLulWD7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tsuzLulWD7 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tsuzLulWD7 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tsuzLulWD7 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tsuzLulWD7 .carousel-indicators li.active,
.cid-tsuzLulWD7 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tsuzLulWD7 .carousel-indicators li::after,
.cid-tsuzLulWD7 .carousel-indicators li::before {
  content: none;
}
.cid-tsuzLulWD7 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tsuzLulWD7 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tsuzLulWD7 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tsuzLulWD7 .carousel-indicators {
    display: none;
  }
}
.cid-tsuzLulWD7 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tsuzLulWD7 .carousel-inner > .active {
  display: block;
}
.cid-tsuzLulWD7 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsuzLulWD7 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tsuzLulWD7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tsuzLulWD7 .carousel-control,
  .cid-tsuzLulWD7 .carousel-indicators,
  .cid-tsuzLulWD7 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tsuzLulWD7 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tsuzLulWD7 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tsuzLulWD7 .carousel-indicators .active,
.cid-tsuzLulWD7 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tsuzLulWD7 .carousel-indicators .active {
  background: #fff;
}
.cid-tsuzLulWD7 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tsuzLulWD7 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tsuzLulWD7 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tsuzLulWD7 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tsuzLulWD7 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tsuzLulWD7 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tsuzLulWD7 .carousel {
  width: 100%;
}
.cid-tsuzLulWD7 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tsuzLulWD7 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tsuzLulWD7 .modal.fade .modal-dialog,
.cid-tsuzLulWD7 .modal.in .modal-dialog {
  transform: none;
}
.cid-tsuzLulWD7 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tsuzLulWD7 H6 {
  text-align: center;
}
.cid-tsooaZcN60 {
  z-index: 1000;
  width: 100%;
}
.cid-tsooaZcN60 nav.navbar {
  position: fixed;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsooaZcN60 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsooaZcN60 .dropdown-item:hover,
.cid-tsooaZcN60 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tsooaZcN60 .dropdown-item:hover span {
  color: white;
}
.cid-tsooaZcN60 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsooaZcN60 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsooaZcN60 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsooaZcN60 .nav-link {
  position: relative;
}
.cid-tsooaZcN60 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsooaZcN60 .container {
    flex-wrap: nowrap;
  }
}
.cid-tsooaZcN60 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsooaZcN60 .dropdown-menu,
.cid-tsooaZcN60 .navbar.opened {
  background: #232323 !important;
}
.cid-tsooaZcN60 .nav-item:focus,
.cid-tsooaZcN60 .nav-link:focus {
  outline: none;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsooaZcN60 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsooaZcN60 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsooaZcN60 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0.2);
}
.cid-tsooaZcN60 .navbar.opened {
  transition: all 0.3s;
}
.cid-tsooaZcN60 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsooaZcN60 .navbar .navbar-logo img {
  width: auto;
}
.cid-tsooaZcN60 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsooaZcN60 .navbar.collapsed {
  justify-content: center;
}
.cid-tsooaZcN60 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsooaZcN60 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsooaZcN60 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsooaZcN60 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsooaZcN60 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsooaZcN60 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsooaZcN60 .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-tsooaZcN60 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsooaZcN60 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsooaZcN60 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsooaZcN60 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsooaZcN60 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsooaZcN60 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tsooaZcN60 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsooaZcN60 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsooaZcN60 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsooaZcN60 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsooaZcN60 .dropdown-item.active,
.cid-tsooaZcN60 .dropdown-item:active {
  background-color: transparent;
}
.cid-tsooaZcN60 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsooaZcN60 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tsooaZcN60 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsooaZcN60 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsooaZcN60 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsooaZcN60 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsooaZcN60 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsooaZcN60 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsooaZcN60 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar {
    height: 70px;
  }
  .cid-tsooaZcN60 .navbar.opened {
    height: auto;
  }
  .cid-tsooaZcN60 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tswvisZ0ZT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #131111;
}
.cid-tsuy0rSxD6 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #131111;
}
@media (max-width: 991px) {
  .cid-tsuy0rSxD6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tsuy0rSxD6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tsuy0rSxD6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tsuy0rSxD6 .mbr-section-title {
  color: #e6c63b;
}
.cid-tsuy0rSxD6 .mbr-text {
  color: #8e8d8a;
}
.cid-tsqJRjOqLP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsqJRjOqLP .mbr-text {
  color: #767676;
}
.cid-tsqJRjOqLP .links {
  color: #ffe161;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsqJRjOqLP .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-tsqJRjOqLP .footer-lower .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-tsqJRjOqLP .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tsqJRjOqLP .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tsqJRjOqLP .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tsqJRjOqLP .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tsqD03JvF5 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #131111;
}
.cid-tsqD03JvF5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsqD03JvF5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsqD03JvF5 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tsqD03JvF5 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tsqD03JvF5 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tsqD03JvF5 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tsqD03JvF5 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tsqD03JvF5 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tsqD03JvF5 .carousel-control,
.cid-tsqD03JvF5 .close {
  background: #1b1b1b;
}
.cid-tsqD03JvF5 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tsqD03JvF5 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tsqD03JvF5 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tsqD03JvF5 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tsqD03JvF5 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tsqD03JvF5 .close::before {
  content: '\e91a';
}
.cid-tsqD03JvF5 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tsqD03JvF5 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tsqD03JvF5 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsqD03JvF5 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tsqD03JvF5 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tsqD03JvF5 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tsqD03JvF5 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tsqD03JvF5 .carousel-indicators li.active,
.cid-tsqD03JvF5 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tsqD03JvF5 .carousel-indicators li::after,
.cid-tsqD03JvF5 .carousel-indicators li::before {
  content: none;
}
.cid-tsqD03JvF5 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tsqD03JvF5 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tsqD03JvF5 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tsqD03JvF5 .carousel-indicators {
    display: none;
  }
}
.cid-tsqD03JvF5 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tsqD03JvF5 .carousel-inner > .active {
  display: block;
}
.cid-tsqD03JvF5 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsqD03JvF5 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tsqD03JvF5 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tsqD03JvF5 .carousel-control,
  .cid-tsqD03JvF5 .carousel-indicators,
  .cid-tsqD03JvF5 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tsqD03JvF5 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tsqD03JvF5 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tsqD03JvF5 .carousel-indicators .active,
.cid-tsqD03JvF5 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tsqD03JvF5 .carousel-indicators .active {
  background: #fff;
}
.cid-tsqD03JvF5 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tsqD03JvF5 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tsqD03JvF5 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tsqD03JvF5 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tsqD03JvF5 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tsqD03JvF5 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tsqD03JvF5 .carousel {
  width: 100%;
}
.cid-tsqD03JvF5 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tsqD03JvF5 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tsqD03JvF5 .modal.fade .modal-dialog,
.cid-tsqD03JvF5 .modal.in .modal-dialog {
  transform: none;
}
.cid-tsqD03JvF5 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tsqD03JvF5 H6 {
  text-align: center;
}
.cid-tsooaZcN60 {
  z-index: 1000;
  width: 100%;
}
.cid-tsooaZcN60 nav.navbar {
  position: fixed;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsooaZcN60 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsooaZcN60 .dropdown-item:hover,
.cid-tsooaZcN60 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tsooaZcN60 .dropdown-item:hover span {
  color: white;
}
.cid-tsooaZcN60 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsooaZcN60 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsooaZcN60 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsooaZcN60 .nav-link {
  position: relative;
}
.cid-tsooaZcN60 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsooaZcN60 .container {
    flex-wrap: nowrap;
  }
}
.cid-tsooaZcN60 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsooaZcN60 .dropdown-menu,
.cid-tsooaZcN60 .navbar.opened {
  background: #232323 !important;
}
.cid-tsooaZcN60 .nav-item:focus,
.cid-tsooaZcN60 .nav-link:focus {
  outline: none;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsooaZcN60 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsooaZcN60 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsooaZcN60 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0.2);
}
.cid-tsooaZcN60 .navbar.opened {
  transition: all 0.3s;
}
.cid-tsooaZcN60 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsooaZcN60 .navbar .navbar-logo img {
  width: auto;
}
.cid-tsooaZcN60 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsooaZcN60 .navbar.collapsed {
  justify-content: center;
}
.cid-tsooaZcN60 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsooaZcN60 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsooaZcN60 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsooaZcN60 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsooaZcN60 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsooaZcN60 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsooaZcN60 .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-tsooaZcN60 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsooaZcN60 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsooaZcN60 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsooaZcN60 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsooaZcN60 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsooaZcN60 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tsooaZcN60 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsooaZcN60 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsooaZcN60 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsooaZcN60 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsooaZcN60 .dropdown-item.active,
.cid-tsooaZcN60 .dropdown-item:active {
  background-color: transparent;
}
.cid-tsooaZcN60 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsooaZcN60 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tsooaZcN60 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsooaZcN60 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsooaZcN60 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsooaZcN60 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsooaZcN60 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsooaZcN60 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsooaZcN60 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar {
    height: 70px;
  }
  .cid-tsooaZcN60 .navbar.opened {
    height: auto;
  }
  .cid-tsooaZcN60 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tssaG8d2Tq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #131111;
}
.cid-tsqwcKIdnB {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tssbut3y7b {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #131111;
}
.cid-tssbut3y7b .mbr-fallback-image.disabled {
  display: none;
}
.cid-tssbut3y7b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tssbut3y7b .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tssbut3y7b .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tssbut3y7b .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tssbut3y7b .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tssbut3y7b .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tssbut3y7b .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tssbut3y7b .carousel-control,
.cid-tssbut3y7b .close {
  background: #1b1b1b;
}
.cid-tssbut3y7b .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tssbut3y7b .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tssbut3y7b .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tssbut3y7b .carousel-control-next span {
  margin-left: 5px;
}
.cid-tssbut3y7b .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tssbut3y7b .close::before {
  content: '\e91a';
}
.cid-tssbut3y7b .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tssbut3y7b .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tssbut3y7b .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssbut3y7b .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tssbut3y7b .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tssbut3y7b .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tssbut3y7b .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tssbut3y7b .carousel-indicators li.active,
.cid-tssbut3y7b .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tssbut3y7b .carousel-indicators li::after,
.cid-tssbut3y7b .carousel-indicators li::before {
  content: none;
}
.cid-tssbut3y7b .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tssbut3y7b .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tssbut3y7b .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tssbut3y7b .carousel-indicators {
    display: none;
  }
}
.cid-tssbut3y7b .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tssbut3y7b .carousel-inner > .active {
  display: block;
}
.cid-tssbut3y7b .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssbut3y7b .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tssbut3y7b .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tssbut3y7b .carousel-control,
  .cid-tssbut3y7b .carousel-indicators,
  .cid-tssbut3y7b .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tssbut3y7b .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tssbut3y7b .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tssbut3y7b .carousel-indicators .active,
.cid-tssbut3y7b .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tssbut3y7b .carousel-indicators .active {
  background: #fff;
}
.cid-tssbut3y7b .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tssbut3y7b .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tssbut3y7b .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tssbut3y7b .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tssbut3y7b .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tssbut3y7b .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tssbut3y7b .carousel {
  width: 100%;
}
.cid-tssbut3y7b .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tssbut3y7b .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tssbut3y7b .modal.fade .modal-dialog,
.cid-tssbut3y7b .modal.in .modal-dialog {
  transform: none;
}
.cid-tssbut3y7b .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tssbut3y7b H6 {
  text-align: center;
}
.cid-tssbY77OPs {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #131111;
}
.cid-tsqyNNjJvH {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tsqJRjOqLP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsqJRjOqLP .mbr-text {
  color: #767676;
}
.cid-tsqJRjOqLP .links {
  color: #ffe161;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsqJRjOqLP .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-tsqJRjOqLP .footer-lower .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-tsqJRjOqLP .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tsqJRjOqLP .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tsqJRjOqLP .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tsqJRjOqLP .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tsooaZcN60 {
  z-index: 1000;
  width: 100%;
}
.cid-tsooaZcN60 nav.navbar {
  position: fixed;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsooaZcN60 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsooaZcN60 .dropdown-item:hover,
.cid-tsooaZcN60 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tsooaZcN60 .dropdown-item:hover span {
  color: white;
}
.cid-tsooaZcN60 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsooaZcN60 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsooaZcN60 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsooaZcN60 .nav-link {
  position: relative;
}
.cid-tsooaZcN60 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsooaZcN60 .container {
    flex-wrap: nowrap;
  }
}
.cid-tsooaZcN60 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsooaZcN60 .dropdown-menu,
.cid-tsooaZcN60 .navbar.opened {
  background: #232323 !important;
}
.cid-tsooaZcN60 .nav-item:focus,
.cid-tsooaZcN60 .nav-link:focus {
  outline: none;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsooaZcN60 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsooaZcN60 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsooaZcN60 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0.2);
}
.cid-tsooaZcN60 .navbar.opened {
  transition: all 0.3s;
}
.cid-tsooaZcN60 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsooaZcN60 .navbar .navbar-logo img {
  width: auto;
}
.cid-tsooaZcN60 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsooaZcN60 .navbar.collapsed {
  justify-content: center;
}
.cid-tsooaZcN60 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsooaZcN60 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsooaZcN60 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsooaZcN60 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsooaZcN60 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsooaZcN60 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsooaZcN60 .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-tsooaZcN60 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsooaZcN60 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsooaZcN60 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsooaZcN60 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsooaZcN60 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsooaZcN60 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tsooaZcN60 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsooaZcN60 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsooaZcN60 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsooaZcN60 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsooaZcN60 .dropdown-item.active,
.cid-tsooaZcN60 .dropdown-item:active {
  background-color: transparent;
}
.cid-tsooaZcN60 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsooaZcN60 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tsooaZcN60 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsooaZcN60 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsooaZcN60 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsooaZcN60 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsooaZcN60 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsooaZcN60 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsooaZcN60 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar {
    height: 70px;
  }
  .cid-tsooaZcN60 .navbar.opened {
    height: auto;
  }
  .cid-tsooaZcN60 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsqVVZc5t6 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #131111;
}
.cid-tsqVVZc5t6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsqVVZc5t6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsqVVZc5t6 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tsqVVZc5t6 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tsqVVZc5t6 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tsqVVZc5t6 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tsqVVZc5t6 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tsqVVZc5t6 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tsqVVZc5t6 .carousel-control,
.cid-tsqVVZc5t6 .close {
  background: #1b1b1b;
}
.cid-tsqVVZc5t6 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tsqVVZc5t6 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tsqVVZc5t6 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tsqVVZc5t6 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tsqVVZc5t6 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tsqVVZc5t6 .close::before {
  content: '\e91a';
}
.cid-tsqVVZc5t6 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tsqVVZc5t6 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tsqVVZc5t6 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsqVVZc5t6 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tsqVVZc5t6 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tsqVVZc5t6 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tsqVVZc5t6 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tsqVVZc5t6 .carousel-indicators li.active,
.cid-tsqVVZc5t6 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tsqVVZc5t6 .carousel-indicators li::after,
.cid-tsqVVZc5t6 .carousel-indicators li::before {
  content: none;
}
.cid-tsqVVZc5t6 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tsqVVZc5t6 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tsqVVZc5t6 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tsqVVZc5t6 .carousel-indicators {
    display: none;
  }
}
.cid-tsqVVZc5t6 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tsqVVZc5t6 .carousel-inner > .active {
  display: block;
}
.cid-tsqVVZc5t6 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsqVVZc5t6 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tsqVVZc5t6 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tsqVVZc5t6 .carousel-control,
  .cid-tsqVVZc5t6 .carousel-indicators,
  .cid-tsqVVZc5t6 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tsqVVZc5t6 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tsqVVZc5t6 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tsqVVZc5t6 .carousel-indicators .active,
.cid-tsqVVZc5t6 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tsqVVZc5t6 .carousel-indicators .active {
  background: #fff;
}
.cid-tsqVVZc5t6 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tsqVVZc5t6 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tsqVVZc5t6 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tsqVVZc5t6 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tsqVVZc5t6 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tsqVVZc5t6 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tsqVVZc5t6 .carousel {
  width: 100%;
}
.cid-tsqVVZc5t6 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tsqVVZc5t6 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tsqVVZc5t6 .modal.fade .modal-dialog,
.cid-tsqVVZc5t6 .modal.in .modal-dialog {
  transform: none;
}
.cid-tsqVVZc5t6 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tsqVVZc5t6 H6 {
  text-align: center;
}
.cid-tsr2elXZnP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #131111;
}
.cid-tsqVPZFXOE {
  background-color: #ffffff;
}
.cid-tsqVPZFXOE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsqVPZFXOE .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-tsqVPZFXOE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tsqVPZFXOE img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tsqVPZFXOE .text-wrapper {
    padding: 2rem;
  }
}
.cid-tsqVPZFXOE .mbr-section-title {
  color: #000000;
}
.cid-tss190AqQT {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tsscySUy1Q {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #131111;
}
.cid-tsscySUy1Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsscySUy1Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsscySUy1Q .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tsscySUy1Q .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tsscySUy1Q .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tsscySUy1Q .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tsscySUy1Q .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tsscySUy1Q .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tsscySUy1Q .carousel-control,
.cid-tsscySUy1Q .close {
  background: #1b1b1b;
}
.cid-tsscySUy1Q .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tsscySUy1Q .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tsscySUy1Q .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tsscySUy1Q .carousel-control-next span {
  margin-left: 5px;
}
.cid-tsscySUy1Q .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tsscySUy1Q .close::before {
  content: '\e91a';
}
.cid-tsscySUy1Q .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tsscySUy1Q .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tsscySUy1Q .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsscySUy1Q .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tsscySUy1Q .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tsscySUy1Q .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tsscySUy1Q .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tsscySUy1Q .carousel-indicators li.active,
.cid-tsscySUy1Q .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tsscySUy1Q .carousel-indicators li::after,
.cid-tsscySUy1Q .carousel-indicators li::before {
  content: none;
}
.cid-tsscySUy1Q .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tsscySUy1Q .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tsscySUy1Q .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tsscySUy1Q .carousel-indicators {
    display: none;
  }
}
.cid-tsscySUy1Q .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tsscySUy1Q .carousel-inner > .active {
  display: block;
}
.cid-tsscySUy1Q .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsscySUy1Q .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tsscySUy1Q .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tsscySUy1Q .carousel-control,
  .cid-tsscySUy1Q .carousel-indicators,
  .cid-tsscySUy1Q .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tsscySUy1Q .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tsscySUy1Q .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tsscySUy1Q .carousel-indicators .active,
.cid-tsscySUy1Q .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tsscySUy1Q .carousel-indicators .active {
  background: #fff;
}
.cid-tsscySUy1Q .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tsscySUy1Q .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tsscySUy1Q .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tsscySUy1Q .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tsscySUy1Q .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tsscySUy1Q .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tsscySUy1Q .carousel {
  width: 100%;
}
.cid-tsscySUy1Q .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tsscySUy1Q .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tsscySUy1Q .modal.fade .modal-dialog,
.cid-tsscySUy1Q .modal.in .modal-dialog {
  transform: none;
}
.cid-tsscySUy1Q .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tsscySUy1Q H6 {
  text-align: center;
}
.cid-tssczVC3Ro {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #131111;
}
.cid-tsr2yaaLgI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsr2yaaLgI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsr2yaaLgI .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-tsr2yaaLgI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tsr2yaaLgI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tsr2yaaLgI .text-wrapper {
    padding: 2rem;
  }
}
.cid-tsr2yaaLgI .mbr-section-title {
  color: #000000;
}
.cid-tss22668Zf {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tsqJRjOqLP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsqJRjOqLP .mbr-text {
  color: #767676;
}
.cid-tsqJRjOqLP .links {
  color: #ffe161;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsqJRjOqLP .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-tsqJRjOqLP .footer-lower .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-tsqJRjOqLP .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tsqJRjOqLP .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tsqJRjOqLP .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tsqJRjOqLP .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tssrdfkRuU {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #131111;
}
.cid-tssrdfkRuU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tssrdfkRuU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tssrdfkRuU .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tssrdfkRuU .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tssrdfkRuU .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tssrdfkRuU .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tssrdfkRuU .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tssrdfkRuU .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tssrdfkRuU .carousel-control,
.cid-tssrdfkRuU .close {
  background: #1b1b1b;
}
.cid-tssrdfkRuU .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tssrdfkRuU .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tssrdfkRuU .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tssrdfkRuU .carousel-control-next span {
  margin-left: 5px;
}
.cid-tssrdfkRuU .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tssrdfkRuU .close::before {
  content: '\e91a';
}
.cid-tssrdfkRuU .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tssrdfkRuU .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tssrdfkRuU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssrdfkRuU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tssrdfkRuU .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tssrdfkRuU .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tssrdfkRuU .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tssrdfkRuU .carousel-indicators li.active,
.cid-tssrdfkRuU .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tssrdfkRuU .carousel-indicators li::after,
.cid-tssrdfkRuU .carousel-indicators li::before {
  content: none;
}
.cid-tssrdfkRuU .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tssrdfkRuU .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tssrdfkRuU .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tssrdfkRuU .carousel-indicators {
    display: none;
  }
}
.cid-tssrdfkRuU .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tssrdfkRuU .carousel-inner > .active {
  display: block;
}
.cid-tssrdfkRuU .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssrdfkRuU .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tssrdfkRuU .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tssrdfkRuU .carousel-control,
  .cid-tssrdfkRuU .carousel-indicators,
  .cid-tssrdfkRuU .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tssrdfkRuU .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tssrdfkRuU .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tssrdfkRuU .carousel-indicators .active,
.cid-tssrdfkRuU .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tssrdfkRuU .carousel-indicators .active {
  background: #fff;
}
.cid-tssrdfkRuU .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tssrdfkRuU .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tssrdfkRuU .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tssrdfkRuU .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tssrdfkRuU .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tssrdfkRuU .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tssrdfkRuU .carousel {
  width: 100%;
}
.cid-tssrdfkRuU .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tssrdfkRuU .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tssrdfkRuU .modal.fade .modal-dialog,
.cid-tssrdfkRuU .modal.in .modal-dialog {
  transform: none;
}
.cid-tssrdfkRuU .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tssrdfkRuU H6 {
  text-align: center;
}
.cid-tssrdfPtp6 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tssrdfPtp6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tssrdfPtp6 .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-tssrdfPtp6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tssrdfPtp6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tssrdfPtp6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tssrdg95ye {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tssrdg95ye .mbr-fallback-image.disabled {
  display: none;
}
.cid-tssrdg95ye .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tssrdg95ye .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tssrdg95ye .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tssrdg95ye .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tssrdg95ye .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tssrdg95ye .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tssrdg95ye .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tssrdg95ye .carousel-control,
.cid-tssrdg95ye .close {
  background: #1b1b1b;
}
.cid-tssrdg95ye .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tssrdg95ye .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tssrdg95ye .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tssrdg95ye .carousel-control-next span {
  margin-left: 5px;
}
.cid-tssrdg95ye .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tssrdg95ye .close::before {
  content: '\e91a';
}
.cid-tssrdg95ye .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tssrdg95ye .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tssrdg95ye .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssrdg95ye .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tssrdg95ye .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tssrdg95ye .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tssrdg95ye .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tssrdg95ye .carousel-indicators li.active,
.cid-tssrdg95ye .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tssrdg95ye .carousel-indicators li::after,
.cid-tssrdg95ye .carousel-indicators li::before {
  content: none;
}
.cid-tssrdg95ye .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tssrdg95ye .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tssrdg95ye .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tssrdg95ye .carousel-indicators {
    display: none;
  }
}
.cid-tssrdg95ye .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tssrdg95ye .carousel-inner > .active {
  display: block;
}
.cid-tssrdg95ye .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssrdg95ye .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tssrdg95ye .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tssrdg95ye .carousel-control,
  .cid-tssrdg95ye .carousel-indicators,
  .cid-tssrdg95ye .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tssrdg95ye .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tssrdg95ye .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tssrdg95ye .carousel-indicators .active,
.cid-tssrdg95ye .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tssrdg95ye .carousel-indicators .active {
  background: #fff;
}
.cid-tssrdg95ye .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tssrdg95ye .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tssrdg95ye .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tssrdg95ye .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tssrdg95ye .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tssrdg95ye .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tssrdg95ye .carousel {
  width: 100%;
}
.cid-tssrdg95ye .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tssrdg95ye .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tssrdg95ye .modal.fade .modal-dialog,
.cid-tssrdg95ye .modal.in .modal-dialog {
  transform: none;
}
.cid-tssrdg95ye .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tssrdg95ye H6 {
  text-align: center;
}
.cid-tssrdgH2N8 {
  z-index: 1000;
  width: 100%;
}
.cid-tssrdgH2N8 nav.navbar {
  position: fixed;
}
.cid-tssrdgH2N8 .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-tssrdgH2N8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tssrdgH2N8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tssrdgH2N8 .dropdown-item:hover,
.cid-tssrdgH2N8 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tssrdgH2N8 .dropdown-item:hover span {
  color: white;
}
.cid-tssrdgH2N8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tssrdgH2N8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tssrdgH2N8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tssrdgH2N8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tssrdgH2N8 .nav-link {
  position: relative;
}
.cid-tssrdgH2N8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tssrdgH2N8 .container {
    flex-wrap: nowrap;
  }
}
.cid-tssrdgH2N8 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tssrdgH2N8 .dropdown-menu,
.cid-tssrdgH2N8 .navbar.opened {
  background: #232323 !important;
}
.cid-tssrdgH2N8 .nav-item:focus,
.cid-tssrdgH2N8 .nav-link:focus {
  outline: none;
}
.cid-tssrdgH2N8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tssrdgH2N8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tssrdgH2N8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tssrdgH2N8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tssrdgH2N8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tssrdgH2N8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tssrdgH2N8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0.2);
}
.cid-tssrdgH2N8 .navbar.opened {
  transition: all 0.3s;
}
.cid-tssrdgH2N8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tssrdgH2N8 .navbar .navbar-logo img {
  width: auto;
}
.cid-tssrdgH2N8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tssrdgH2N8 .navbar.collapsed {
  justify-content: center;
}
.cid-tssrdgH2N8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tssrdgH2N8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tssrdgH2N8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tssrdgH2N8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tssrdgH2N8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tssrdgH2N8 .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-tssrdgH2N8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tssrdgH2N8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tssrdgH2N8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tssrdgH2N8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tssrdgH2N8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tssrdgH2N8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tssrdgH2N8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tssrdgH2N8 .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-tssrdgH2N8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tssrdgH2N8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tssrdgH2N8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tssrdgH2N8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tssrdgH2N8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tssrdgH2N8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tssrdgH2N8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tssrdgH2N8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tssrdgH2N8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tssrdgH2N8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tssrdgH2N8 .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-tssrdgH2N8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tssrdgH2N8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tssrdgH2N8 .dropdown-item.active,
.cid-tssrdgH2N8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tssrdgH2N8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tssrdgH2N8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tssrdgH2N8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tssrdgH2N8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tssrdgH2N8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tssrdgH2N8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tssrdgH2N8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tssrdgH2N8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tssrdgH2N8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tssrdgH2N8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-tssrdgH2N8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tssrdgH2N8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tssrdgH2N8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tssrdgH2N8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tssrdgH2N8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tssrdgH2N8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tssrdgH2N8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tssrdgH2N8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tssrdgH2N8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tssrdgH2N8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tssrdgH2N8 .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-tssrdgH2N8 .navbar {
    height: 70px;
  }
  .cid-tssrdgH2N8 .navbar.opened {
    height: auto;
  }
  .cid-tssrdgH2N8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tssrdhdkv9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #131111;
}
.cid-tssrdhBZG8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-tssrdhBZG8 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tssrdhBZG8 .mbr-text {
  color: #767676;
}
.cid-tssrdhBZG8 .links {
  color: #ffe161;
}
@media (max-width: 767px) {
  .cid-tssrdhBZG8 .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-tssrdhBZG8 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tssrdhBZG8 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-tssrdhBZG8 .footer-lower .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-tssrdhBZG8 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tssrdhBZG8 .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tssrdhBZG8 .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tssrdhBZG8 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tssrdhBZG8 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tssAbhi1qU {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #131111;
}
.cid-tssAbhi1qU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tssAbhi1qU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tssAbhi1qU .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tssAbhi1qU .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tssAbhi1qU .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tssAbhi1qU .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tssAbhi1qU .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tssAbhi1qU .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tssAbhi1qU .carousel-control,
.cid-tssAbhi1qU .close {
  background: #1b1b1b;
}
.cid-tssAbhi1qU .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tssAbhi1qU .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tssAbhi1qU .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tssAbhi1qU .carousel-control-next span {
  margin-left: 5px;
}
.cid-tssAbhi1qU .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tssAbhi1qU .close::before {
  content: '\e91a';
}
.cid-tssAbhi1qU .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tssAbhi1qU .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tssAbhi1qU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssAbhi1qU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tssAbhi1qU .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tssAbhi1qU .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tssAbhi1qU .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tssAbhi1qU .carousel-indicators li.active,
.cid-tssAbhi1qU .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tssAbhi1qU .carousel-indicators li::after,
.cid-tssAbhi1qU .carousel-indicators li::before {
  content: none;
}
.cid-tssAbhi1qU .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tssAbhi1qU .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tssAbhi1qU .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tssAbhi1qU .carousel-indicators {
    display: none;
  }
}
.cid-tssAbhi1qU .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tssAbhi1qU .carousel-inner > .active {
  display: block;
}
.cid-tssAbhi1qU .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssAbhi1qU .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tssAbhi1qU .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tssAbhi1qU .carousel-control,
  .cid-tssAbhi1qU .carousel-indicators,
  .cid-tssAbhi1qU .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tssAbhi1qU .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tssAbhi1qU .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tssAbhi1qU .carousel-indicators .active,
.cid-tssAbhi1qU .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tssAbhi1qU .carousel-indicators .active {
  background: #fff;
}
.cid-tssAbhi1qU .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tssAbhi1qU .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tssAbhi1qU .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tssAbhi1qU .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tssAbhi1qU .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tssAbhi1qU .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tssAbhi1qU .carousel {
  width: 100%;
}
.cid-tssAbhi1qU .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tssAbhi1qU .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tssAbhi1qU .modal.fade .modal-dialog,
.cid-tssAbhi1qU .modal.in .modal-dialog {
  transform: none;
}
.cid-tssAbhi1qU .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tssAbhi1qU H6 {
  text-align: center;
}
.cid-tssAbiqllr {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tssAbiqllr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tssAbiqllr .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-tssAbiqllr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tssAbiqllr img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tssAbiqllr .text-wrapper {
    padding: 2rem;
  }
}
.cid-tssAbjhzXf {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tssAbjhzXf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tssAbjhzXf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tssAbjhzXf .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tssAbjhzXf .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tssAbjhzXf .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tssAbjhzXf .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tssAbjhzXf .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tssAbjhzXf .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tssAbjhzXf .carousel-control,
.cid-tssAbjhzXf .close {
  background: #1b1b1b;
}
.cid-tssAbjhzXf .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tssAbjhzXf .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tssAbjhzXf .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tssAbjhzXf .carousel-control-next span {
  margin-left: 5px;
}
.cid-tssAbjhzXf .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tssAbjhzXf .close::before {
  content: '\e91a';
}
.cid-tssAbjhzXf .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tssAbjhzXf .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tssAbjhzXf .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssAbjhzXf .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tssAbjhzXf .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tssAbjhzXf .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tssAbjhzXf .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tssAbjhzXf .carousel-indicators li.active,
.cid-tssAbjhzXf .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tssAbjhzXf .carousel-indicators li::after,
.cid-tssAbjhzXf .carousel-indicators li::before {
  content: none;
}
.cid-tssAbjhzXf .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tssAbjhzXf .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tssAbjhzXf .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tssAbjhzXf .carousel-indicators {
    display: none;
  }
}
.cid-tssAbjhzXf .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tssAbjhzXf .carousel-inner > .active {
  display: block;
}
.cid-tssAbjhzXf .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssAbjhzXf .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tssAbjhzXf .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tssAbjhzXf .carousel-control,
  .cid-tssAbjhzXf .carousel-indicators,
  .cid-tssAbjhzXf .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tssAbjhzXf .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tssAbjhzXf .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tssAbjhzXf .carousel-indicators .active,
.cid-tssAbjhzXf .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tssAbjhzXf .carousel-indicators .active {
  background: #fff;
}
.cid-tssAbjhzXf .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tssAbjhzXf .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tssAbjhzXf .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tssAbjhzXf .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tssAbjhzXf .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tssAbjhzXf .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tssAbjhzXf .carousel {
  width: 100%;
}
.cid-tssAbjhzXf .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tssAbjhzXf .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tssAbjhzXf .modal.fade .modal-dialog,
.cid-tssAbjhzXf .modal.in .modal-dialog {
  transform: none;
}
.cid-tssAbjhzXf .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tssAbjhzXf H6 {
  text-align: center;
}
.cid-tssAbkeIpY {
  z-index: 1000;
  width: 100%;
}
.cid-tssAbkeIpY nav.navbar {
  position: fixed;
}
.cid-tssAbkeIpY .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-tssAbkeIpY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tssAbkeIpY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tssAbkeIpY .dropdown-item:hover,
.cid-tssAbkeIpY .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tssAbkeIpY .dropdown-item:hover span {
  color: white;
}
.cid-tssAbkeIpY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tssAbkeIpY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tssAbkeIpY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tssAbkeIpY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tssAbkeIpY .nav-link {
  position: relative;
}
.cid-tssAbkeIpY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tssAbkeIpY .container {
    flex-wrap: nowrap;
  }
}
.cid-tssAbkeIpY .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tssAbkeIpY .dropdown-menu,
.cid-tssAbkeIpY .navbar.opened {
  background: #232323 !important;
}
.cid-tssAbkeIpY .nav-item:focus,
.cid-tssAbkeIpY .nav-link:focus {
  outline: none;
}
.cid-tssAbkeIpY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tssAbkeIpY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tssAbkeIpY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tssAbkeIpY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tssAbkeIpY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tssAbkeIpY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tssAbkeIpY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0.2);
}
.cid-tssAbkeIpY .navbar.opened {
  transition: all 0.3s;
}
.cid-tssAbkeIpY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tssAbkeIpY .navbar .navbar-logo img {
  width: auto;
}
.cid-tssAbkeIpY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tssAbkeIpY .navbar.collapsed {
  justify-content: center;
}
.cid-tssAbkeIpY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tssAbkeIpY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tssAbkeIpY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tssAbkeIpY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tssAbkeIpY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tssAbkeIpY .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-tssAbkeIpY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tssAbkeIpY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tssAbkeIpY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tssAbkeIpY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tssAbkeIpY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tssAbkeIpY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tssAbkeIpY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tssAbkeIpY .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-tssAbkeIpY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tssAbkeIpY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tssAbkeIpY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tssAbkeIpY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tssAbkeIpY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tssAbkeIpY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tssAbkeIpY .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tssAbkeIpY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tssAbkeIpY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tssAbkeIpY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tssAbkeIpY .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-tssAbkeIpY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tssAbkeIpY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tssAbkeIpY .dropdown-item.active,
.cid-tssAbkeIpY .dropdown-item:active {
  background-color: transparent;
}
.cid-tssAbkeIpY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tssAbkeIpY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tssAbkeIpY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tssAbkeIpY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tssAbkeIpY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tssAbkeIpY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tssAbkeIpY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tssAbkeIpY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tssAbkeIpY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tssAbkeIpY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-tssAbkeIpY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tssAbkeIpY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tssAbkeIpY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tssAbkeIpY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tssAbkeIpY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tssAbkeIpY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tssAbkeIpY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tssAbkeIpY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tssAbkeIpY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tssAbkeIpY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tssAbkeIpY .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-tssAbkeIpY .navbar {
    height: 70px;
  }
  .cid-tssAbkeIpY .navbar.opened {
    height: auto;
  }
  .cid-tssAbkeIpY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tssAbkULQH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #131111;
}
.cid-tssAblmnWN {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-tssAblmnWN .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tssAblmnWN .mbr-text {
  color: #767676;
}
.cid-tssAblmnWN .links {
  color: #ffe161;
}
@media (max-width: 767px) {
  .cid-tssAblmnWN .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-tssAblmnWN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tssAblmnWN .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-tssAblmnWN .footer-lower .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-tssAblmnWN .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tssAblmnWN .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tssAblmnWN .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tssAblmnWN .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tssAblmnWN .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tssN43VZfZ {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #131111;
}
.cid-tssN43VZfZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tssN43VZfZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tssN43VZfZ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tssN43VZfZ .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tssN43VZfZ .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tssN43VZfZ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tssN43VZfZ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tssN43VZfZ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tssN43VZfZ .carousel-control,
.cid-tssN43VZfZ .close {
  background: #1b1b1b;
}
.cid-tssN43VZfZ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tssN43VZfZ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tssN43VZfZ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tssN43VZfZ .carousel-control-next span {
  margin-left: 5px;
}
.cid-tssN43VZfZ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tssN43VZfZ .close::before {
  content: '\e91a';
}
.cid-tssN43VZfZ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tssN43VZfZ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tssN43VZfZ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssN43VZfZ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tssN43VZfZ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tssN43VZfZ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tssN43VZfZ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tssN43VZfZ .carousel-indicators li.active,
.cid-tssN43VZfZ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tssN43VZfZ .carousel-indicators li::after,
.cid-tssN43VZfZ .carousel-indicators li::before {
  content: none;
}
.cid-tssN43VZfZ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tssN43VZfZ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tssN43VZfZ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tssN43VZfZ .carousel-indicators {
    display: none;
  }
}
.cid-tssN43VZfZ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tssN43VZfZ .carousel-inner > .active {
  display: block;
}
.cid-tssN43VZfZ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssN43VZfZ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tssN43VZfZ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tssN43VZfZ .carousel-control,
  .cid-tssN43VZfZ .carousel-indicators,
  .cid-tssN43VZfZ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tssN43VZfZ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tssN43VZfZ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tssN43VZfZ .carousel-indicators .active,
.cid-tssN43VZfZ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tssN43VZfZ .carousel-indicators .active {
  background: #fff;
}
.cid-tssN43VZfZ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tssN43VZfZ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tssN43VZfZ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tssN43VZfZ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tssN43VZfZ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tssN43VZfZ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tssN43VZfZ .carousel {
  width: 100%;
}
.cid-tssN43VZfZ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tssN43VZfZ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tssN43VZfZ .modal.fade .modal-dialog,
.cid-tssN43VZfZ .modal.in .modal-dialog {
  transform: none;
}
.cid-tssN43VZfZ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tssN43VZfZ H6 {
  text-align: center;
}
.cid-tssN44FLPo {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tssN44FLPo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tssN44FLPo .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-tssN44FLPo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tssN44FLPo img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tssN44FLPo .text-wrapper {
    padding: 2rem;
  }
}
.cid-tssN453Y0s {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tssN453Y0s .mbr-fallback-image.disabled {
  display: none;
}
.cid-tssN453Y0s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tssN453Y0s .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tssN453Y0s .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tssN453Y0s .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tssN453Y0s .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tssN453Y0s .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tssN453Y0s .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tssN453Y0s .carousel-control,
.cid-tssN453Y0s .close {
  background: #1b1b1b;
}
.cid-tssN453Y0s .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tssN453Y0s .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tssN453Y0s .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tssN453Y0s .carousel-control-next span {
  margin-left: 5px;
}
.cid-tssN453Y0s .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tssN453Y0s .close::before {
  content: '\e91a';
}
.cid-tssN453Y0s .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tssN453Y0s .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tssN453Y0s .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssN453Y0s .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tssN453Y0s .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tssN453Y0s .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tssN453Y0s .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tssN453Y0s .carousel-indicators li.active,
.cid-tssN453Y0s .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tssN453Y0s .carousel-indicators li::after,
.cid-tssN453Y0s .carousel-indicators li::before {
  content: none;
}
.cid-tssN453Y0s .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tssN453Y0s .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tssN453Y0s .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tssN453Y0s .carousel-indicators {
    display: none;
  }
}
.cid-tssN453Y0s .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tssN453Y0s .carousel-inner > .active {
  display: block;
}
.cid-tssN453Y0s .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssN453Y0s .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tssN453Y0s .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tssN453Y0s .carousel-control,
  .cid-tssN453Y0s .carousel-indicators,
  .cid-tssN453Y0s .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tssN453Y0s .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tssN453Y0s .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tssN453Y0s .carousel-indicators .active,
.cid-tssN453Y0s .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tssN453Y0s .carousel-indicators .active {
  background: #fff;
}
.cid-tssN453Y0s .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tssN453Y0s .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tssN453Y0s .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tssN453Y0s .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tssN453Y0s .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tssN453Y0s .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tssN453Y0s .carousel {
  width: 100%;
}
.cid-tssN453Y0s .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tssN453Y0s .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tssN453Y0s .modal.fade .modal-dialog,
.cid-tssN453Y0s .modal.in .modal-dialog {
  transform: none;
}
.cid-tssN453Y0s .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tssN453Y0s H6 {
  text-align: center;
}
.cid-tssN45J1Kl {
  z-index: 1000;
  width: 100%;
}
.cid-tssN45J1Kl nav.navbar {
  position: fixed;
}
.cid-tssN45J1Kl .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-tssN45J1Kl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tssN45J1Kl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tssN45J1Kl .dropdown-item:hover,
.cid-tssN45J1Kl .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tssN45J1Kl .dropdown-item:hover span {
  color: white;
}
.cid-tssN45J1Kl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tssN45J1Kl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tssN45J1Kl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tssN45J1Kl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tssN45J1Kl .nav-link {
  position: relative;
}
.cid-tssN45J1Kl .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tssN45J1Kl .container {
    flex-wrap: nowrap;
  }
}
.cid-tssN45J1Kl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tssN45J1Kl .dropdown-menu,
.cid-tssN45J1Kl .navbar.opened {
  background: #232323 !important;
}
.cid-tssN45J1Kl .nav-item:focus,
.cid-tssN45J1Kl .nav-link:focus {
  outline: none;
}
.cid-tssN45J1Kl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tssN45J1Kl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tssN45J1Kl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tssN45J1Kl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tssN45J1Kl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tssN45J1Kl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tssN45J1Kl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0.2);
}
.cid-tssN45J1Kl .navbar.opened {
  transition: all 0.3s;
}
.cid-tssN45J1Kl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tssN45J1Kl .navbar .navbar-logo img {
  width: auto;
}
.cid-tssN45J1Kl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tssN45J1Kl .navbar.collapsed {
  justify-content: center;
}
.cid-tssN45J1Kl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tssN45J1Kl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tssN45J1Kl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tssN45J1Kl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tssN45J1Kl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tssN45J1Kl .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-tssN45J1Kl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tssN45J1Kl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tssN45J1Kl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tssN45J1Kl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tssN45J1Kl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tssN45J1Kl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tssN45J1Kl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tssN45J1Kl .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-tssN45J1Kl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tssN45J1Kl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tssN45J1Kl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tssN45J1Kl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tssN45J1Kl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tssN45J1Kl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tssN45J1Kl .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tssN45J1Kl .navbar.navbar-short {
  min-height: 60px;
}
.cid-tssN45J1Kl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tssN45J1Kl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tssN45J1Kl .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-tssN45J1Kl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tssN45J1Kl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tssN45J1Kl .dropdown-item.active,
.cid-tssN45J1Kl .dropdown-item:active {
  background-color: transparent;
}
.cid-tssN45J1Kl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tssN45J1Kl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tssN45J1Kl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tssN45J1Kl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tssN45J1Kl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tssN45J1Kl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tssN45J1Kl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tssN45J1Kl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tssN45J1Kl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tssN45J1Kl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-tssN45J1Kl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tssN45J1Kl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tssN45J1Kl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tssN45J1Kl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tssN45J1Kl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tssN45J1Kl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tssN45J1Kl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tssN45J1Kl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tssN45J1Kl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tssN45J1Kl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tssN45J1Kl .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-tssN45J1Kl .navbar {
    height: 70px;
  }
  .cid-tssN45J1Kl .navbar.opened {
    height: auto;
  }
  .cid-tssN45J1Kl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tssN46hv4S {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #131111;
}
.cid-tssN46CnJ6 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-tssN46CnJ6 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tssN46CnJ6 .mbr-text {
  color: #767676;
}
.cid-tssN46CnJ6 .links {
  color: #ffe161;
}
@media (max-width: 767px) {
  .cid-tssN46CnJ6 .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-tssN46CnJ6 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tssN46CnJ6 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-tssN46CnJ6 .footer-lower .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-tssN46CnJ6 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tssN46CnJ6 .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tssN46CnJ6 .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tssN46CnJ6 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tssN46CnJ6 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tssW4vL75S {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #131111;
}
.cid-tssW4vL75S .mbr-fallback-image.disabled {
  display: none;
}
.cid-tssW4vL75S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tssW4vL75S .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tssW4vL75S .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tssW4vL75S .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tssW4vL75S .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tssW4vL75S .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tssW4vL75S .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tssW4vL75S .carousel-control,
.cid-tssW4vL75S .close {
  background: #1b1b1b;
}
.cid-tssW4vL75S .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tssW4vL75S .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tssW4vL75S .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tssW4vL75S .carousel-control-next span {
  margin-left: 5px;
}
.cid-tssW4vL75S .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tssW4vL75S .close::before {
  content: '\e91a';
}
.cid-tssW4vL75S .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tssW4vL75S .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tssW4vL75S .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssW4vL75S .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tssW4vL75S .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tssW4vL75S .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tssW4vL75S .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tssW4vL75S .carousel-indicators li.active,
.cid-tssW4vL75S .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tssW4vL75S .carousel-indicators li::after,
.cid-tssW4vL75S .carousel-indicators li::before {
  content: none;
}
.cid-tssW4vL75S .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tssW4vL75S .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tssW4vL75S .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tssW4vL75S .carousel-indicators {
    display: none;
  }
}
.cid-tssW4vL75S .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tssW4vL75S .carousel-inner > .active {
  display: block;
}
.cid-tssW4vL75S .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssW4vL75S .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tssW4vL75S .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tssW4vL75S .carousel-control,
  .cid-tssW4vL75S .carousel-indicators,
  .cid-tssW4vL75S .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tssW4vL75S .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tssW4vL75S .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tssW4vL75S .carousel-indicators .active,
.cid-tssW4vL75S .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tssW4vL75S .carousel-indicators .active {
  background: #fff;
}
.cid-tssW4vL75S .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tssW4vL75S .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tssW4vL75S .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tssW4vL75S .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tssW4vL75S .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tssW4vL75S .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tssW4vL75S .carousel {
  width: 100%;
}
.cid-tssW4vL75S .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tssW4vL75S .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tssW4vL75S .modal.fade .modal-dialog,
.cid-tssW4vL75S .modal.in .modal-dialog {
  transform: none;
}
.cid-tssW4vL75S .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tssW4vL75S H6 {
  text-align: center;
}
.cid-tssW4wtTry {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tssW4wtTry .mbr-fallback-image.disabled {
  display: none;
}
.cid-tssW4wtTry .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-tssW4wtTry .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tssW4wtTry img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tssW4wtTry .text-wrapper {
    padding: 2rem;
  }
}
.cid-tssW4wQpSb {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tssW4wQpSb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tssW4wQpSb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tssW4wQpSb .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tssW4wQpSb .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tssW4wQpSb .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tssW4wQpSb .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tssW4wQpSb .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tssW4wQpSb .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tssW4wQpSb .carousel-control,
.cid-tssW4wQpSb .close {
  background: #1b1b1b;
}
.cid-tssW4wQpSb .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tssW4wQpSb .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tssW4wQpSb .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tssW4wQpSb .carousel-control-next span {
  margin-left: 5px;
}
.cid-tssW4wQpSb .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tssW4wQpSb .close::before {
  content: '\e91a';
}
.cid-tssW4wQpSb .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tssW4wQpSb .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tssW4wQpSb .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssW4wQpSb .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tssW4wQpSb .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tssW4wQpSb .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tssW4wQpSb .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tssW4wQpSb .carousel-indicators li.active,
.cid-tssW4wQpSb .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tssW4wQpSb .carousel-indicators li::after,
.cid-tssW4wQpSb .carousel-indicators li::before {
  content: none;
}
.cid-tssW4wQpSb .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tssW4wQpSb .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tssW4wQpSb .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tssW4wQpSb .carousel-indicators {
    display: none;
  }
}
.cid-tssW4wQpSb .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tssW4wQpSb .carousel-inner > .active {
  display: block;
}
.cid-tssW4wQpSb .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssW4wQpSb .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tssW4wQpSb .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tssW4wQpSb .carousel-control,
  .cid-tssW4wQpSb .carousel-indicators,
  .cid-tssW4wQpSb .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tssW4wQpSb .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tssW4wQpSb .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tssW4wQpSb .carousel-indicators .active,
.cid-tssW4wQpSb .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tssW4wQpSb .carousel-indicators .active {
  background: #fff;
}
.cid-tssW4wQpSb .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tssW4wQpSb .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tssW4wQpSb .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tssW4wQpSb .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tssW4wQpSb .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tssW4wQpSb .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tssW4wQpSb .carousel {
  width: 100%;
}
.cid-tssW4wQpSb .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tssW4wQpSb .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tssW4wQpSb .modal.fade .modal-dialog,
.cid-tssW4wQpSb .modal.in .modal-dialog {
  transform: none;
}
.cid-tssW4wQpSb .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tssW4wQpSb H6 {
  text-align: center;
}
.cid-tssW4xw4QN {
  z-index: 1000;
  width: 100%;
}
.cid-tssW4xw4QN nav.navbar {
  position: fixed;
}
.cid-tssW4xw4QN .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-tssW4xw4QN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tssW4xw4QN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tssW4xw4QN .dropdown-item:hover,
.cid-tssW4xw4QN .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tssW4xw4QN .dropdown-item:hover span {
  color: white;
}
.cid-tssW4xw4QN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tssW4xw4QN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tssW4xw4QN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tssW4xw4QN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tssW4xw4QN .nav-link {
  position: relative;
}
.cid-tssW4xw4QN .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tssW4xw4QN .container {
    flex-wrap: nowrap;
  }
}
.cid-tssW4xw4QN .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tssW4xw4QN .dropdown-menu,
.cid-tssW4xw4QN .navbar.opened {
  background: #232323 !important;
}
.cid-tssW4xw4QN .nav-item:focus,
.cid-tssW4xw4QN .nav-link:focus {
  outline: none;
}
.cid-tssW4xw4QN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tssW4xw4QN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tssW4xw4QN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tssW4xw4QN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tssW4xw4QN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tssW4xw4QN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tssW4xw4QN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0.2);
}
.cid-tssW4xw4QN .navbar.opened {
  transition: all 0.3s;
}
.cid-tssW4xw4QN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tssW4xw4QN .navbar .navbar-logo img {
  width: auto;
}
.cid-tssW4xw4QN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tssW4xw4QN .navbar.collapsed {
  justify-content: center;
}
.cid-tssW4xw4QN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tssW4xw4QN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tssW4xw4QN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tssW4xw4QN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tssW4xw4QN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tssW4xw4QN .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-tssW4xw4QN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tssW4xw4QN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tssW4xw4QN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tssW4xw4QN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tssW4xw4QN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tssW4xw4QN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tssW4xw4QN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tssW4xw4QN .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-tssW4xw4QN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tssW4xw4QN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tssW4xw4QN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tssW4xw4QN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tssW4xw4QN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tssW4xw4QN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tssW4xw4QN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tssW4xw4QN .navbar.navbar-short {
  min-height: 60px;
}
.cid-tssW4xw4QN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tssW4xw4QN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tssW4xw4QN .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-tssW4xw4QN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tssW4xw4QN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tssW4xw4QN .dropdown-item.active,
.cid-tssW4xw4QN .dropdown-item:active {
  background-color: transparent;
}
.cid-tssW4xw4QN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tssW4xw4QN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tssW4xw4QN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tssW4xw4QN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tssW4xw4QN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tssW4xw4QN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tssW4xw4QN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tssW4xw4QN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tssW4xw4QN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tssW4xw4QN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-tssW4xw4QN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tssW4xw4QN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tssW4xw4QN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tssW4xw4QN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tssW4xw4QN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tssW4xw4QN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tssW4xw4QN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tssW4xw4QN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tssW4xw4QN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tssW4xw4QN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tssW4xw4QN .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-tssW4xw4QN .navbar {
    height: 70px;
  }
  .cid-tssW4xw4QN .navbar.opened {
    height: auto;
  }
  .cid-tssW4xw4QN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tssW4y6Da9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #131111;
}
.cid-tssW4yrnWJ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-tssW4yrnWJ .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tssW4yrnWJ .mbr-text {
  color: #767676;
}
.cid-tssW4yrnWJ .links {
  color: #ffe161;
}
@media (max-width: 767px) {
  .cid-tssW4yrnWJ .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-tssW4yrnWJ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tssW4yrnWJ .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-tssW4yrnWJ .footer-lower .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-tssW4yrnWJ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tssW4yrnWJ .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tssW4yrnWJ .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tssW4yrnWJ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tssW4yrnWJ .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tsu0xz9Tvm {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #131111;
}
.cid-tsu0xz9Tvm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsu0xz9Tvm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsu0xz9Tvm .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tsu0xz9Tvm .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tsu0xz9Tvm .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tsu0xz9Tvm .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tsu0xz9Tvm .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tsu0xz9Tvm .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tsu0xz9Tvm .carousel-control,
.cid-tsu0xz9Tvm .close {
  background: #1b1b1b;
}
.cid-tsu0xz9Tvm .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tsu0xz9Tvm .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tsu0xz9Tvm .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tsu0xz9Tvm .carousel-control-next span {
  margin-left: 5px;
}
.cid-tsu0xz9Tvm .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tsu0xz9Tvm .close::before {
  content: '\e91a';
}
.cid-tsu0xz9Tvm .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tsu0xz9Tvm .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tsu0xz9Tvm .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsu0xz9Tvm .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tsu0xz9Tvm .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tsu0xz9Tvm .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tsu0xz9Tvm .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tsu0xz9Tvm .carousel-indicators li.active,
.cid-tsu0xz9Tvm .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tsu0xz9Tvm .carousel-indicators li::after,
.cid-tsu0xz9Tvm .carousel-indicators li::before {
  content: none;
}
.cid-tsu0xz9Tvm .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tsu0xz9Tvm .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tsu0xz9Tvm .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tsu0xz9Tvm .carousel-indicators {
    display: none;
  }
}
.cid-tsu0xz9Tvm .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tsu0xz9Tvm .carousel-inner > .active {
  display: block;
}
.cid-tsu0xz9Tvm .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsu0xz9Tvm .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tsu0xz9Tvm .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tsu0xz9Tvm .carousel-control,
  .cid-tsu0xz9Tvm .carousel-indicators,
  .cid-tsu0xz9Tvm .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tsu0xz9Tvm .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tsu0xz9Tvm .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tsu0xz9Tvm .carousel-indicators .active,
.cid-tsu0xz9Tvm .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tsu0xz9Tvm .carousel-indicators .active {
  background: #fff;
}
.cid-tsu0xz9Tvm .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tsu0xz9Tvm .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tsu0xz9Tvm .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tsu0xz9Tvm .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tsu0xz9Tvm .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tsu0xz9Tvm .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tsu0xz9Tvm .carousel {
  width: 100%;
}
.cid-tsu0xz9Tvm .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tsu0xz9Tvm .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tsu0xz9Tvm .modal.fade .modal-dialog,
.cid-tsu0xz9Tvm .modal.in .modal-dialog {
  transform: none;
}
.cid-tsu0xz9Tvm .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tsu0xz9Tvm H6 {
  text-align: center;
}
.cid-tsu0xAjscU {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsu0xAjscU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsu0xAjscU .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-tsu0xAjscU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tsu0xAjscU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tsu0xAjscU .text-wrapper {
    padding: 2rem;
  }
}
.cid-tsu0xASk35 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tsu0xASk35 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsu0xASk35 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsu0xASk35 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tsu0xASk35 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tsu0xASk35 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tsu0xASk35 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tsu0xASk35 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tsu0xASk35 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tsu0xASk35 .carousel-control,
.cid-tsu0xASk35 .close {
  background: #1b1b1b;
}
.cid-tsu0xASk35 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tsu0xASk35 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tsu0xASk35 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tsu0xASk35 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tsu0xASk35 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tsu0xASk35 .close::before {
  content: '\e91a';
}
.cid-tsu0xASk35 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tsu0xASk35 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tsu0xASk35 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsu0xASk35 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tsu0xASk35 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tsu0xASk35 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tsu0xASk35 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tsu0xASk35 .carousel-indicators li.active,
.cid-tsu0xASk35 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tsu0xASk35 .carousel-indicators li::after,
.cid-tsu0xASk35 .carousel-indicators li::before {
  content: none;
}
.cid-tsu0xASk35 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tsu0xASk35 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tsu0xASk35 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tsu0xASk35 .carousel-indicators {
    display: none;
  }
}
.cid-tsu0xASk35 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tsu0xASk35 .carousel-inner > .active {
  display: block;
}
.cid-tsu0xASk35 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tsu0xASk35 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tsu0xASk35 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tsu0xASk35 .carousel-control,
  .cid-tsu0xASk35 .carousel-indicators,
  .cid-tsu0xASk35 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tsu0xASk35 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tsu0xASk35 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tsu0xASk35 .carousel-indicators .active,
.cid-tsu0xASk35 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tsu0xASk35 .carousel-indicators .active {
  background: #fff;
}
.cid-tsu0xASk35 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tsu0xASk35 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tsu0xASk35 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tsu0xASk35 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tsu0xASk35 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tsu0xASk35 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tsu0xASk35 .carousel {
  width: 100%;
}
.cid-tsu0xASk35 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tsu0xASk35 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tsu0xASk35 .modal.fade .modal-dialog,
.cid-tsu0xASk35 .modal.in .modal-dialog {
  transform: none;
}
.cid-tsu0xASk35 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tsu0xASk35 H6 {
  text-align: center;
}
.cid-tsu0xBSnQq {
  z-index: 1000;
  width: 100%;
}
.cid-tsu0xBSnQq nav.navbar {
  position: fixed;
}
.cid-tsu0xBSnQq .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-tsu0xBSnQq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsu0xBSnQq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsu0xBSnQq .dropdown-item:hover,
.cid-tsu0xBSnQq .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tsu0xBSnQq .dropdown-item:hover span {
  color: white;
}
.cid-tsu0xBSnQq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsu0xBSnQq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsu0xBSnQq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsu0xBSnQq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsu0xBSnQq .nav-link {
  position: relative;
}
.cid-tsu0xBSnQq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsu0xBSnQq .container {
    flex-wrap: nowrap;
  }
}
.cid-tsu0xBSnQq .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsu0xBSnQq .dropdown-menu,
.cid-tsu0xBSnQq .navbar.opened {
  background: #232323 !important;
}
.cid-tsu0xBSnQq .nav-item:focus,
.cid-tsu0xBSnQq .nav-link:focus {
  outline: none;
}
.cid-tsu0xBSnQq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsu0xBSnQq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsu0xBSnQq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsu0xBSnQq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsu0xBSnQq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsu0xBSnQq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsu0xBSnQq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0.2);
}
.cid-tsu0xBSnQq .navbar.opened {
  transition: all 0.3s;
}
.cid-tsu0xBSnQq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsu0xBSnQq .navbar .navbar-logo img {
  width: auto;
}
.cid-tsu0xBSnQq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsu0xBSnQq .navbar.collapsed {
  justify-content: center;
}
.cid-tsu0xBSnQq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsu0xBSnQq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsu0xBSnQq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tsu0xBSnQq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsu0xBSnQq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsu0xBSnQq .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-tsu0xBSnQq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsu0xBSnQq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsu0xBSnQq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsu0xBSnQq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsu0xBSnQq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsu0xBSnQq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsu0xBSnQq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsu0xBSnQq .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-tsu0xBSnQq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsu0xBSnQq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsu0xBSnQq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsu0xBSnQq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsu0xBSnQq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsu0xBSnQq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsu0xBSnQq .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tsu0xBSnQq .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsu0xBSnQq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsu0xBSnQq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsu0xBSnQq .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-tsu0xBSnQq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsu0xBSnQq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsu0xBSnQq .dropdown-item.active,
.cid-tsu0xBSnQq .dropdown-item:active {
  background-color: transparent;
}
.cid-tsu0xBSnQq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsu0xBSnQq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsu0xBSnQq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsu0xBSnQq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tsu0xBSnQq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsu0xBSnQq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsu0xBSnQq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsu0xBSnQq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsu0xBSnQq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsu0xBSnQq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-tsu0xBSnQq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsu0xBSnQq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsu0xBSnQq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsu0xBSnQq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsu0xBSnQq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsu0xBSnQq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsu0xBSnQq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsu0xBSnQq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsu0xBSnQq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsu0xBSnQq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsu0xBSnQq .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-tsu0xBSnQq .navbar {
    height: 70px;
  }
  .cid-tsu0xBSnQq .navbar.opened {
    height: auto;
  }
  .cid-tsu0xBSnQq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMycjVczf3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #131111;
}
.cid-tsu0xDdSy1 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-tsu0xDdSy1 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsu0xDdSy1 .mbr-text {
  color: #767676;
}
.cid-tsu0xDdSy1 .links {
  color: #ffe161;
}
@media (max-width: 767px) {
  .cid-tsu0xDdSy1 .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-tsu0xDdSy1 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsu0xDdSy1 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-tsu0xDdSy1 .footer-lower .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-tsu0xDdSy1 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tsu0xDdSy1 .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tsu0xDdSy1 .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tsu0xDdSy1 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tsu0xDdSy1 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tsmzCpafLO {
  background-image: url("../../../assets/images/fondo01-color-2-1920x1080.jpg");
}
.cid-tsmzCpafLO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsmzCpafLO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsmzCpafLO .mbr-section-title {
  color: #ffffff;
}
.cid-tsmzCpafLO .mbr-text,
.cid-tsmzCpafLO .mbr-section-btn {
  color: #ffe885;
}
.cid-tsnAnjfQdz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-tsnAnjfQdz img,
.cid-tsnAnjfQdz .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tsnAnjfQdz .item:focus,
.cid-tsnAnjfQdz span:focus {
  outline: none;
}
.cid-tsnAnjfQdz .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tsnAnjfQdz .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tsnAnjfQdz .item {
  padding: 0;
  margin: 0;
}
.cid-tsnAnjfQdz .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsnAnjfQdz .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsnAnjfQdz .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsnAnjfQdz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsnAnjfQdz .mbr-section-title {
  color: #232323;
}
.cid-tsooaZcN60 {
  z-index: 1000;
  width: 100%;
}
.cid-tsooaZcN60 nav.navbar {
  position: fixed;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsooaZcN60 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsooaZcN60 .dropdown-item:hover,
.cid-tsooaZcN60 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tsooaZcN60 .dropdown-item:hover span {
  color: white;
}
.cid-tsooaZcN60 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsooaZcN60 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsooaZcN60 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsooaZcN60 .nav-link {
  position: relative;
}
.cid-tsooaZcN60 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsooaZcN60 .container {
    flex-wrap: nowrap;
  }
}
.cid-tsooaZcN60 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsooaZcN60 .dropdown-menu,
.cid-tsooaZcN60 .navbar.opened {
  background: #232323 !important;
}
.cid-tsooaZcN60 .nav-item:focus,
.cid-tsooaZcN60 .nav-link:focus {
  outline: none;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsooaZcN60 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsooaZcN60 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsooaZcN60 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsooaZcN60 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0.2);
}
.cid-tsooaZcN60 .navbar.opened {
  transition: all 0.3s;
}
.cid-tsooaZcN60 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsooaZcN60 .navbar .navbar-logo img {
  width: auto;
}
.cid-tsooaZcN60 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsooaZcN60 .navbar.collapsed {
  justify-content: center;
}
.cid-tsooaZcN60 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsooaZcN60 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsooaZcN60 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsooaZcN60 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsooaZcN60 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsooaZcN60 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsooaZcN60 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsooaZcN60 .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-tsooaZcN60 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsooaZcN60 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsooaZcN60 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsooaZcN60 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsooaZcN60 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsooaZcN60 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsooaZcN60 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tsooaZcN60 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsooaZcN60 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsooaZcN60 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsooaZcN60 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsooaZcN60 .dropdown-item.active,
.cid-tsooaZcN60 .dropdown-item:active {
  background-color: transparent;
}
.cid-tsooaZcN60 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsooaZcN60 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsooaZcN60 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tsooaZcN60 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsooaZcN60 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsooaZcN60 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsooaZcN60 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsooaZcN60 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsooaZcN60 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsooaZcN60 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsooaZcN60 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsooaZcN60 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsooaZcN60 .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-tsooaZcN60 .navbar {
    height: 70px;
  }
  .cid-tsooaZcN60 .navbar.opened {
    height: auto;
  }
  .cid-tsooaZcN60 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsqIMWxzD0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffe161;
}
.cid-tsqIMWxzD0 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tsqIMWxzD0 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tsqIMWxzD0 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tsqIMWxzD0 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tsqJRjOqLP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsqJRjOqLP .mbr-text {
  color: #767676;
}
.cid-tsqJRjOqLP .links {
  color: #ffe161;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tsqJRjOqLP .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-tsqJRjOqLP .footer-lower .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-tsqJRjOqLP .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tsqJRjOqLP .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tsqJRjOqLP .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tsqJRjOqLP .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tsqJRjOqLP .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tMy7UWlHWJ {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #131111;
}
.cid-tMy7UWlHWJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMy7UWlHWJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMy7UWlHWJ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tMy7UWlHWJ .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tMy7UWlHWJ .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tMy7UWlHWJ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tMy7UWlHWJ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tMy7UWlHWJ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tMy7UWlHWJ .carousel-control,
.cid-tMy7UWlHWJ .close {
  background: #1b1b1b;
}
.cid-tMy7UWlHWJ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tMy7UWlHWJ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tMy7UWlHWJ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tMy7UWlHWJ .carousel-control-next span {
  margin-left: 5px;
}
.cid-tMy7UWlHWJ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tMy7UWlHWJ .close::before {
  content: '\e91a';
}
.cid-tMy7UWlHWJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tMy7UWlHWJ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tMy7UWlHWJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tMy7UWlHWJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tMy7UWlHWJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tMy7UWlHWJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tMy7UWlHWJ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tMy7UWlHWJ .carousel-indicators li.active,
.cid-tMy7UWlHWJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tMy7UWlHWJ .carousel-indicators li::after,
.cid-tMy7UWlHWJ .carousel-indicators li::before {
  content: none;
}
.cid-tMy7UWlHWJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tMy7UWlHWJ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tMy7UWlHWJ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tMy7UWlHWJ .carousel-indicators {
    display: none;
  }
}
.cid-tMy7UWlHWJ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tMy7UWlHWJ .carousel-inner > .active {
  display: block;
}
.cid-tMy7UWlHWJ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tMy7UWlHWJ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tMy7UWlHWJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tMy7UWlHWJ .carousel-control,
  .cid-tMy7UWlHWJ .carousel-indicators,
  .cid-tMy7UWlHWJ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tMy7UWlHWJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tMy7UWlHWJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tMy7UWlHWJ .carousel-indicators .active,
.cid-tMy7UWlHWJ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tMy7UWlHWJ .carousel-indicators .active {
  background: #fff;
}
.cid-tMy7UWlHWJ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tMy7UWlHWJ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tMy7UWlHWJ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tMy7UWlHWJ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tMy7UWlHWJ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tMy7UWlHWJ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tMy7UWlHWJ .carousel {
  width: 100%;
}
.cid-tMy7UWlHWJ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tMy7UWlHWJ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tMy7UWlHWJ .modal.fade .modal-dialog,
.cid-tMy7UWlHWJ .modal.in .modal-dialog {
  transform: none;
}
.cid-tMy7UWlHWJ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tMy7UWlHWJ H6 {
  text-align: center;
}
.cid-tMy7UWVu0V {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tMy7UWVu0V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMy7UWVu0V .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-tMy7UWVu0V .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tMy7UWVu0V img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tMy7UWVu0V .text-wrapper {
    padding: 2rem;
  }
}
.cid-tMy7UXfKb1 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tMy7UXfKb1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMy7UXfKb1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMy7UXfKb1 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tMy7UXfKb1 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tMy7UXfKb1 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tMy7UXfKb1 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tMy7UXfKb1 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tMy7UXfKb1 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tMy7UXfKb1 .carousel-control,
.cid-tMy7UXfKb1 .close {
  background: #1b1b1b;
}
.cid-tMy7UXfKb1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tMy7UXfKb1 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tMy7UXfKb1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tMy7UXfKb1 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tMy7UXfKb1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tMy7UXfKb1 .close::before {
  content: '\e91a';
}
.cid-tMy7UXfKb1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tMy7UXfKb1 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tMy7UXfKb1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tMy7UXfKb1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tMy7UXfKb1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tMy7UXfKb1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tMy7UXfKb1 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tMy7UXfKb1 .carousel-indicators li.active,
.cid-tMy7UXfKb1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tMy7UXfKb1 .carousel-indicators li::after,
.cid-tMy7UXfKb1 .carousel-indicators li::before {
  content: none;
}
.cid-tMy7UXfKb1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tMy7UXfKb1 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tMy7UXfKb1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tMy7UXfKb1 .carousel-indicators {
    display: none;
  }
}
.cid-tMy7UXfKb1 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tMy7UXfKb1 .carousel-inner > .active {
  display: block;
}
.cid-tMy7UXfKb1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tMy7UXfKb1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tMy7UXfKb1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tMy7UXfKb1 .carousel-control,
  .cid-tMy7UXfKb1 .carousel-indicators,
  .cid-tMy7UXfKb1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tMy7UXfKb1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tMy7UXfKb1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tMy7UXfKb1 .carousel-indicators .active,
.cid-tMy7UXfKb1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tMy7UXfKb1 .carousel-indicators .active {
  background: #fff;
}
.cid-tMy7UXfKb1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tMy7UXfKb1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tMy7UXfKb1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tMy7UXfKb1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tMy7UXfKb1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tMy7UXfKb1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tMy7UXfKb1 .carousel {
  width: 100%;
}
.cid-tMy7UXfKb1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tMy7UXfKb1 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tMy7UXfKb1 .modal.fade .modal-dialog,
.cid-tMy7UXfKb1 .modal.in .modal-dialog {
  transform: none;
}
.cid-tMy7UXfKb1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tMy7UXfKb1 H6 {
  text-align: center;
}
.cid-tMy7UXO49B {
  z-index: 1000;
  width: 100%;
}
.cid-tMy7UXO49B nav.navbar {
  position: fixed;
}
.cid-tMy7UXO49B .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-tMy7UXO49B .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMy7UXO49B .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMy7UXO49B .dropdown-item:hover,
.cid-tMy7UXO49B .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tMy7UXO49B .dropdown-item:hover span {
  color: white;
}
.cid-tMy7UXO49B .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMy7UXO49B .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMy7UXO49B .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMy7UXO49B .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMy7UXO49B .nav-link {
  position: relative;
}
.cid-tMy7UXO49B .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tMy7UXO49B .container {
    flex-wrap: nowrap;
  }
}
.cid-tMy7UXO49B .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMy7UXO49B .dropdown-menu,
.cid-tMy7UXO49B .navbar.opened {
  background: #232323 !important;
}
.cid-tMy7UXO49B .nav-item:focus,
.cid-tMy7UXO49B .nav-link:focus {
  outline: none;
}
.cid-tMy7UXO49B .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMy7UXO49B .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMy7UXO49B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMy7UXO49B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMy7UXO49B .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMy7UXO49B .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMy7UXO49B .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0.2);
}
.cid-tMy7UXO49B .navbar.opened {
  transition: all 0.3s;
}
.cid-tMy7UXO49B .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMy7UXO49B .navbar .navbar-logo img {
  width: auto;
}
.cid-tMy7UXO49B .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMy7UXO49B .navbar.collapsed {
  justify-content: center;
}
.cid-tMy7UXO49B .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMy7UXO49B .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMy7UXO49B .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tMy7UXO49B .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMy7UXO49B .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMy7UXO49B .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-tMy7UXO49B .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMy7UXO49B .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMy7UXO49B .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMy7UXO49B .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMy7UXO49B .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMy7UXO49B .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMy7UXO49B .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMy7UXO49B .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-tMy7UXO49B .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMy7UXO49B .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMy7UXO49B .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMy7UXO49B .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMy7UXO49B .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMy7UXO49B .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tMy7UXO49B .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tMy7UXO49B .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMy7UXO49B .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMy7UXO49B .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMy7UXO49B .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-tMy7UXO49B .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMy7UXO49B .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMy7UXO49B .dropdown-item.active,
.cid-tMy7UXO49B .dropdown-item:active {
  background-color: transparent;
}
.cid-tMy7UXO49B .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMy7UXO49B .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMy7UXO49B .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMy7UXO49B .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tMy7UXO49B .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMy7UXO49B .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMy7UXO49B ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMy7UXO49B .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMy7UXO49B button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMy7UXO49B button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-tMy7UXO49B button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMy7UXO49B button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMy7UXO49B button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMy7UXO49B button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMy7UXO49B nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMy7UXO49B nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMy7UXO49B nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMy7UXO49B nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMy7UXO49B .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMy7UXO49B a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMy7UXO49B .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-tMy7UXO49B .navbar {
    height: 70px;
  }
  .cid-tMy7UXO49B .navbar.opened {
    height: auto;
  }
  .cid-tMy7UXO49B .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMy7UYo8If {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #131111;
}
.cid-tMy7UYKZfI {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-tMy7UYKZfI .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tMy7UYKZfI .mbr-text {
  color: #767676;
}
.cid-tMy7UYKZfI .links {
  color: #ffe161;
}
@media (max-width: 767px) {
  .cid-tMy7UYKZfI .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-tMy7UYKZfI .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tMy7UYKZfI .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-tMy7UYKZfI .footer-lower .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-tMy7UYKZfI .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tMy7UYKZfI .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tMy7UYKZfI .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tMy7UYKZfI .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tMy7UYKZfI .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
