.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Great Vibes', handwriting;
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.375rem;
}
/* ---- 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: 2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.75rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* 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: #ff9966 !important;
}
.bg-success {
  background-color: #14ceff !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: #ff9966 !important;
  border-color: #ff9966 !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: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !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: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !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: #14ceff !important;
  border-color: #14ceff !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: #0095bc !important;
  border-color: #0095bc !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0095bc !important;
  border-color: #0095bc !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: #ff9966;
  color: #ff9966;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #e43f3f;
  color: #e43f3f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #b31919 !important;
  background-color: transparent!important;
  border-color: #b31919 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #14ceff;
  color: #14ceff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0095bc !important;
  background-color: transparent!important;
  border-color: #0095bc !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #14ceff !important;
  border-color: #14ceff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ff9966 !important;
}
.text-secondary {
  color: #e43f3f !important;
}
.text-success {
  color: #14ceff !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: #ff5500 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #a61717 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #0089ad !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: #ff9966;
}
.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: #ff9966;
  border-color: #ff9966;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff9966;
}
.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: #e0f9ff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ff9966 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #ff9966;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff9966;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ff9966;
}
.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: #ff9966;
  border-bottom-color: #ff9966;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ff9966 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #e43f3f !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='%23ff9966' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-slXspOlfkb .navbar-dropdown {
  position: relative !important;
}
.cid-slXspOlfkb .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-slXspOlfkb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-slXspOlfkb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-slXspOlfkb .dropdown-item:hover,
.cid-slXspOlfkb .dropdown-item:focus {
  background: #ff9966 !important;
  color: white !important;
}
.cid-slXspOlfkb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-slXspOlfkb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-slXspOlfkb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-slXspOlfkb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-slXspOlfkb .nav-link {
  position: relative;
}
.cid-slXspOlfkb .container {
  display: flex;
  margin: auto;
}
.cid-slXspOlfkb .iconfont-wrapper {
  color: #e6c63b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-slXspOlfkb .dropdown-menu,
.cid-slXspOlfkb .navbar.opened {
  background: #000000 !important;
}
.cid-slXspOlfkb .nav-item:focus,
.cid-slXspOlfkb .nav-link:focus {
  outline: none;
}
.cid-slXspOlfkb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-slXspOlfkb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-slXspOlfkb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-slXspOlfkb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-slXspOlfkb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-slXspOlfkb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-slXspOlfkb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-slXspOlfkb .navbar.opened {
  transition: all 0.3s;
}
.cid-slXspOlfkb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-slXspOlfkb .navbar .navbar-logo img {
  width: auto;
}
.cid-slXspOlfkb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-slXspOlfkb .navbar.collapsed {
  justify-content: center;
}
.cid-slXspOlfkb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-slXspOlfkb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-slXspOlfkb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-slXspOlfkb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-slXspOlfkb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-slXspOlfkb .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-slXspOlfkb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-slXspOlfkb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-slXspOlfkb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-slXspOlfkb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-slXspOlfkb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-slXspOlfkb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-slXspOlfkb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-slXspOlfkb .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-slXspOlfkb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-slXspOlfkb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-slXspOlfkb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-slXspOlfkb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-slXspOlfkb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-slXspOlfkb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-slXspOlfkb .navbar.navbar-short {
  min-height: 60px;
}
.cid-slXspOlfkb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-slXspOlfkb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-slXspOlfkb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-slXspOlfkb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-slXspOlfkb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-slXspOlfkb .dropdown-item.active,
.cid-slXspOlfkb .dropdown-item:active {
  background-color: transparent;
}
.cid-slXspOlfkb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-slXspOlfkb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-slXspOlfkb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-slXspOlfkb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-slXspOlfkb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-slXspOlfkb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-slXspOlfkb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-slXspOlfkb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-slXspOlfkb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-slXspOlfkb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-slXspOlfkb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-slXspOlfkb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-slXspOlfkb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-slXspOlfkb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-slXspOlfkb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-slXspOlfkb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-slXspOlfkb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-slXspOlfkb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-slXspOlfkb .navbar-dropdown {
  padding: 0 1rem;
}
.cid-slXspOlfkb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-slXspOlfkb .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-slXspOlfkb .navbar {
    height: 70px;
  }
  .cid-slXspOlfkb .navbar.opened {
    height: auto;
  }
  .cid-slXspOlfkb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sm5eqXUBwe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  padding: 0 !important;
}
.cid-sm5eqXUBwe .image-wrapper {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}
.cid-sm5eqXUBwe .row {
  flex-direction: row-reverse;
}
.cid-sm5eqXUBwe img {
  width: 100%;
  vertical-align: middle;
  object-fit: cover;
  display: inline-block;
}
.cid-sm5eqXUBwe .container-fluid {
  padding: 0 !important;
}
.cid-sm5eqXUBwe .mbr-description {
  color: #000000;
  text-align: center;
}
.cid-slTebD4U1A {
  background-color: #161414;
}
@media (max-width: 991px) {
  .cid-slTebD4U1A .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-slTebD4U1A .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-slTebD4U1A .text-wrapper {
    padding: 0 2rem;
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .cid-slTebD4U1A .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-slTebD4U1A .mbr-text,
.cid-slTebD4U1A .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-slTebD4U1A .mbr-section-title {
  color: #ffffff;
}
.cid-slSRtNBdbq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-slSRtNBdbq .item:focus,
.cid-slSRtNBdbq span:focus {
  outline: none;
}
.cid-slSRtNBdbq .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-slSRtNBdbq .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #161414;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-slSRtNBdbq .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-slSRtNBdbq .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-slSRtNBdbq .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-slSRtNBdbq .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-slSRtNBdbq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-slSRtNBdbq .mbr-section-title {
  color: #fafafa;
}
.cid-slSRtNBdbq .mbr-text,
.cid-slSRtNBdbq .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-slSRtNBdbq .item-title {
  text-align: center;
  color: #bbbbbb;
}
.cid-slSRtNBdbq .item-subtitle {
  text-align: center;
  color: #fafafa;
}
.cid-slSRtNBdbq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-slT6YprYkA {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-slT6YprYkA .item:focus,
.cid-slT6YprYkA span:focus {
  outline: none;
}
.cid-slT6YprYkA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-slT6YprYkA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #161414;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-slT6YprYkA .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-slT6YprYkA .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-slT6YprYkA .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-slT6YprYkA .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-slT6YprYkA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-slT6YprYkA .mbr-section-title {
  color: #ffffff;
}
.cid-slT6YprYkA .mbr-text,
.cid-slT6YprYkA .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-slT6YprYkA .item-title {
  text-align: center;
}
.cid-slT6YprYkA .item-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-slTl3RY4G4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-slTl3RY4G4 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-slTl3RY4G4 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-slTl3RY4G4 .row {
    text-align: center;
  }
  .cid-slTl3RY4G4 .row > div {
    margin: auto;
  }
  .cid-slTl3RY4G4 .social-row {
    justify-content: center;
  }
}
.cid-slTl3RY4G4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-slTl3RY4G4 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-slTl3RY4G4 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-slTl3RY4G4 .list {
    margin-bottom: 0rem;
  }
}
.cid-slTl3RY4G4 .mbr-text {
  color: #ffffff;
}
.cid-slTl3RY4G4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-slTl3RY4G4 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-slTl3RY4G4 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-slTl3RY4G4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-slTl3RY4G4 H5 {
  color: #ffffff;
}
.cid-slXspOlfkb .navbar-dropdown {
  position: relative !important;
}
.cid-slXspOlfkb .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-slXspOlfkb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-slXspOlfkb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-slXspOlfkb .dropdown-item:hover,
.cid-slXspOlfkb .dropdown-item:focus {
  background: #ff9966 !important;
  color: white !important;
}
.cid-slXspOlfkb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-slXspOlfkb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-slXspOlfkb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-slXspOlfkb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-slXspOlfkb .nav-link {
  position: relative;
}
.cid-slXspOlfkb .container {
  display: flex;
  margin: auto;
}
.cid-slXspOlfkb .iconfont-wrapper {
  color: #e6c63b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-slXspOlfkb .dropdown-menu,
.cid-slXspOlfkb .navbar.opened {
  background: #000000 !important;
}
.cid-slXspOlfkb .nav-item:focus,
.cid-slXspOlfkb .nav-link:focus {
  outline: none;
}
.cid-slXspOlfkb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-slXspOlfkb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-slXspOlfkb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-slXspOlfkb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-slXspOlfkb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-slXspOlfkb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-slXspOlfkb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-slXspOlfkb .navbar.opened {
  transition: all 0.3s;
}
.cid-slXspOlfkb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-slXspOlfkb .navbar .navbar-logo img {
  width: auto;
}
.cid-slXspOlfkb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-slXspOlfkb .navbar.collapsed {
  justify-content: center;
}
.cid-slXspOlfkb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-slXspOlfkb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-slXspOlfkb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-slXspOlfkb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-slXspOlfkb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-slXspOlfkb .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-slXspOlfkb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-slXspOlfkb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-slXspOlfkb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-slXspOlfkb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-slXspOlfkb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-slXspOlfkb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-slXspOlfkb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-slXspOlfkb .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-slXspOlfkb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-slXspOlfkb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-slXspOlfkb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-slXspOlfkb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-slXspOlfkb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-slXspOlfkb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-slXspOlfkb .navbar.navbar-short {
  min-height: 60px;
}
.cid-slXspOlfkb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-slXspOlfkb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-slXspOlfkb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-slXspOlfkb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-slXspOlfkb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-slXspOlfkb .dropdown-item.active,
.cid-slXspOlfkb .dropdown-item:active {
  background-color: transparent;
}
.cid-slXspOlfkb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-slXspOlfkb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-slXspOlfkb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-slXspOlfkb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-slXspOlfkb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-slXspOlfkb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-slXspOlfkb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-slXspOlfkb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-slXspOlfkb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-slXspOlfkb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-slXspOlfkb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-slXspOlfkb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-slXspOlfkb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-slXspOlfkb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-slXspOlfkb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-slXspOlfkb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-slXspOlfkb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-slXspOlfkb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-slXspOlfkb .navbar-dropdown {
  padding: 0 1rem;
}
.cid-slXspOlfkb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-slXspOlfkb .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-slXspOlfkb .navbar {
    height: 70px;
  }
  .cid-slXspOlfkb .navbar.opened {
    height: auto;
  }
  .cid-slXspOlfkb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-slUQDsXlvT {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #161414;
}
.cid-slUQDsXlvT .mbr-text {
  color: #ffffff;
}
.cid-slUQDsXlvT .mbr-section-subtitle {
  text-align: left;
  color: #ff9966;
}
.cid-sm5MTNmKAj {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-sm5MTNmKAj .mbr-section-title,
.cid-sm5MTNmKAj .mbr-section-subtitle {
  text-align: center;
}
.cid-sm5MTNmKAj .cost {
  word-break: normal;
}
.cid-sm5MTNmKAj .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #232323;
}
.cid-sm5MTNmKAj .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-sm5MTNmKAj .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sm5MTNmKAj .card-wrapper {
    padding: 1rem;
  }
}
.cid-sm5MTNmKAj P {
  color: #ffffff;
  text-align: left;
}
.cid-sm5MTNmKAj .card-title {
  color: #ff9966;
}
.cid-sm5MTNmKAj .mbr-section-title {
  color: #ff9966;
}
.cid-u4tOjGG2zq {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u4tOjGG2zq .mbr-section-title,
.cid-u4tOjGG2zq .mbr-section-subtitle {
  text-align: center;
}
.cid-u4tOjGG2zq .cost {
  word-break: normal;
}
.cid-u4tOjGG2zq .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #232323;
}
.cid-u4tOjGG2zq .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-u4tOjGG2zq .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u4tOjGG2zq .card-wrapper {
    padding: 1rem;
  }
}
.cid-u4tOjGG2zq P {
  color: #ffffff;
}
.cid-u4tOjGG2zq .card-title {
  color: #ff9966;
}
.cid-u4tOjGG2zq .mbr-section-title {
  color: #ff9966;
}
.cid-u4tNSc5M7Y {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-u4tNSc5M7Y .mbr-section-title,
.cid-u4tNSc5M7Y .mbr-section-subtitle {
  text-align: center;
}
.cid-u4tNSc5M7Y .cost {
  word-break: normal;
}
.cid-u4tNSc5M7Y .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #232323;
}
.cid-u4tNSc5M7Y .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-u4tNSc5M7Y .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u4tNSc5M7Y .card-wrapper {
    padding: 1rem;
  }
}
.cid-u4tNSc5M7Y P {
  color: #ffffff;
}
.cid-u4tNSc5M7Y .card-title {
  color: #ff9966;
}
.cid-u4tNSc5M7Y .mbr-section-title {
  color: #ff9966;
}
.cid-u4tMPh4MFO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-u4tMPh4MFO .mbr-section-title,
.cid-u4tMPh4MFO .mbr-section-subtitle {
  text-align: center;
}
.cid-u4tMPh4MFO .cost {
  word-break: normal;
}
.cid-u4tMPh4MFO .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #232323;
}
.cid-u4tMPh4MFO .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-u4tMPh4MFO .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u4tMPh4MFO .card-wrapper {
    padding: 1rem;
  }
}
.cid-u4tMPh4MFO P {
  color: #ffffff;
}
.cid-u4tMPh4MFO .card-title {
  color: #ff9966;
}
.cid-u4tMPh4MFO .mbr-section-title {
  color: #ff9966;
}
.cid-u50QZDyVye {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-u50QZDyVye .mbr-section-title,
.cid-u50QZDyVye .mbr-section-subtitle {
  text-align: center;
}
.cid-u50QZDyVye .cost {
  word-break: normal;
}
.cid-u50QZDyVye .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #232323;
}
.cid-u50QZDyVye .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-u50QZDyVye .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u50QZDyVye .card-wrapper {
    padding: 1rem;
  }
}
.cid-u50QZDyVye P {
  color: #ffffff;
}
.cid-u50QZDyVye .card-title {
  color: #ff9966;
}
.cid-u50QZDyVye .mbr-section-title {
  color: #ff9966;
}
.cid-tTHx8OCeOw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tTHx8OCeOw .mbr-section-title,
.cid-tTHx8OCeOw .mbr-section-subtitle {
  text-align: center;
}
.cid-tTHx8OCeOw .cost {
  word-break: normal;
}
.cid-tTHx8OCeOw .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #232323;
}
.cid-tTHx8OCeOw .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tTHx8OCeOw .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tTHx8OCeOw .card-wrapper {
    padding: 1rem;
  }
}
.cid-tTHx8OCeOw P {
  color: #ffffff;
}
.cid-tTHx8OCeOw .card-title {
  color: #ff9966;
}
.cid-tTHx8OCeOw .mbr-section-title {
  color: #ff9966;
}
.cid-tTHN3KG0Dk {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tTHN3KG0Dk .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-u4sZlOoRex {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-u4sZlOoRex .item:focus,
.cid-u4sZlOoRex span:focus {
  outline: none;
}
.cid-u4sZlOoRex .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u4sZlOoRex .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #161414;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u4sZlOoRex .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u4sZlOoRex .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4sZlOoRex .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u4sZlOoRex .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u4sZlOoRex .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u4sZlOoRex .mbr-section-title {
  color: #fafafa;
}
.cid-u4sZlOoRex .mbr-text,
.cid-u4sZlOoRex .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-u4sZlOoRex .item-title {
  text-align: center;
  color: #bbbbbb;
}
.cid-u4sZlOoRex .item-subtitle {
  text-align: center;
  color: #fafafa;
}
.cid-u4sZlOoRex .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u4tnUWSaKc {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u4tnUWSaKc .item:focus,
.cid-u4tnUWSaKc span:focus {
  outline: none;
}
.cid-u4tnUWSaKc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u4tnUWSaKc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #161414;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u4tnUWSaKc .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u4tnUWSaKc .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4tnUWSaKc .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u4tnUWSaKc .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u4tnUWSaKc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u4tnUWSaKc .mbr-section-title {
  color: #fafafa;
}
.cid-u4tnUWSaKc .mbr-text,
.cid-u4tnUWSaKc .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-u4tnUWSaKc .item-title {
  text-align: center;
  color: #bbbbbb;
}
.cid-u4tnUWSaKc .item-subtitle {
  text-align: center;
  color: #fafafa;
}
.cid-u4tnUWSaKc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u6xGzm0byj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-u6xGzm0byj img,
.cid-u6xGzm0byj .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u6xGzm0byj .item:focus,
.cid-u6xGzm0byj span:focus {
  outline: none;
}
.cid-u6xGzm0byj .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u6xGzm0byj .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u6xGzm0byj .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u6xGzm0byj .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u6xGzm0byj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u6xGzm0byj .mbr-section-title {
  color: #ffffff;
}
.cid-u6xPTnDLIP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-u6xPTnDLIP img,
.cid-u6xPTnDLIP .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u6xPTnDLIP .item:focus,
.cid-u6xPTnDLIP span:focus {
  outline: none;
}
.cid-u6xPTnDLIP .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u6xPTnDLIP .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u6xPTnDLIP .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u6xPTnDLIP .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u6xPTnDLIP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u6xPTnDLIP .mbr-section-title {
  color: #ffffff;
}
.cid-u4tSKHQq2R {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-u4tSKHQq2R .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-smaj9KBtFz {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-smaj9KBtFz .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #ff9966;
  margin-left: 1rem;
}
.cid-smaj9KBtFz .panel-group {
  border: none;
}
.cid-smaj9KBtFz .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-smaj9KBtFz .panel-body,
.cid-smaj9KBtFz .card-header {
  padding: 1rem 0;
}
.cid-smaj9KBtFz .panel-title-edit {
  color: #ff9966;
}
.cid-smaj9KBtFz .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-smaj9KBtFz .panel-text {
  color: #ffffff;
}
.cid-smaj9KBtFz H3 {
  color: #ff9966;
}
.cid-tCUtviVoUe {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tCUtviVoUe .item {
  padding-bottom: 2rem;
}
.cid-tCUtviVoUe .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tCUtviVoUe .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tCUtviVoUe .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-tCUtviVoUe .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tCUtviVoUe .carousel-control,
.cid-tCUtviVoUe .close {
  background: #1b1b1b;
}
.cid-tCUtviVoUe .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tCUtviVoUe .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tCUtviVoUe .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tCUtviVoUe .carousel-control-next span {
  margin-left: 5px;
}
.cid-tCUtviVoUe .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-tCUtviVoUe .close::before {
  content: '\e91a';
}
.cid-tCUtviVoUe .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tCUtviVoUe .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-tCUtviVoUe .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tCUtviVoUe .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tCUtviVoUe .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tCUtviVoUe .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tCUtviVoUe .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-tCUtviVoUe .carousel-indicators li.active,
.cid-tCUtviVoUe .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tCUtviVoUe .carousel-indicators li::after,
.cid-tCUtviVoUe .carousel-indicators li::before {
  content: none;
}
.cid-tCUtviVoUe .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tCUtviVoUe .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tCUtviVoUe .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tCUtviVoUe .carousel-indicators {
    display: none;
  }
}
.cid-tCUtviVoUe .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tCUtviVoUe .carousel-inner > .active {
  display: block;
}
.cid-tCUtviVoUe .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tCUtviVoUe .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tCUtviVoUe .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tCUtviVoUe .carousel-control,
  .cid-tCUtviVoUe .carousel-indicators,
  .cid-tCUtviVoUe .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tCUtviVoUe .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tCUtviVoUe .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tCUtviVoUe .carousel-indicators .active,
.cid-tCUtviVoUe .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tCUtviVoUe .carousel-indicators .active {
  background: #fff;
}
.cid-tCUtviVoUe .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tCUtviVoUe .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tCUtviVoUe .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tCUtviVoUe .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tCUtviVoUe .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tCUtviVoUe .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tCUtviVoUe .carousel {
  width: 100%;
}
.cid-tCUtviVoUe .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tCUtviVoUe .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tCUtviVoUe .modal.fade .modal-dialog,
.cid-tCUtviVoUe .modal.in .modal-dialog {
  transform: none;
}
.cid-tCUtviVoUe .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tCUtviVoUe H6 {
  text-align: center;
  color: #ff9966;
}
.cid-tCUtviVoUe H3 {
  color: #ff9966;
}
.cid-tssGK7r1Sy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tssGK7r1Sy .item {
  padding-bottom: 2rem;
}
.cid-tssGK7r1Sy .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tssGK7r1Sy .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tssGK7r1Sy .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-tssGK7r1Sy .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tssGK7r1Sy .carousel-control,
.cid-tssGK7r1Sy .close {
  background: #1b1b1b;
}
.cid-tssGK7r1Sy .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tssGK7r1Sy .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tssGK7r1Sy .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tssGK7r1Sy .carousel-control-next span {
  margin-left: 5px;
}
.cid-tssGK7r1Sy .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-tssGK7r1Sy .close::before {
  content: '\e91a';
}
.cid-tssGK7r1Sy .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tssGK7r1Sy .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-tssGK7r1Sy .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssGK7r1Sy .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tssGK7r1Sy .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tssGK7r1Sy .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tssGK7r1Sy .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-tssGK7r1Sy .carousel-indicators li.active,
.cid-tssGK7r1Sy .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tssGK7r1Sy .carousel-indicators li::after,
.cid-tssGK7r1Sy .carousel-indicators li::before {
  content: none;
}
.cid-tssGK7r1Sy .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tssGK7r1Sy .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tssGK7r1Sy .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tssGK7r1Sy .carousel-indicators {
    display: none;
  }
}
.cid-tssGK7r1Sy .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tssGK7r1Sy .carousel-inner > .active {
  display: block;
}
.cid-tssGK7r1Sy .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssGK7r1Sy .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tssGK7r1Sy .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tssGK7r1Sy .carousel-control,
  .cid-tssGK7r1Sy .carousel-indicators,
  .cid-tssGK7r1Sy .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tssGK7r1Sy .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tssGK7r1Sy .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tssGK7r1Sy .carousel-indicators .active,
.cid-tssGK7r1Sy .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tssGK7r1Sy .carousel-indicators .active {
  background: #fff;
}
.cid-tssGK7r1Sy .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tssGK7r1Sy .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tssGK7r1Sy .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tssGK7r1Sy .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tssGK7r1Sy .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tssGK7r1Sy .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tssGK7r1Sy .carousel {
  width: 100%;
}
.cid-tssGK7r1Sy .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tssGK7r1Sy .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tssGK7r1Sy .modal.fade .modal-dialog,
.cid-tssGK7r1Sy .modal.in .modal-dialog {
  transform: none;
}
.cid-tssGK7r1Sy .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tssGK7r1Sy H6 {
  text-align: center;
}
.cid-tssGK7r1Sy H3 {
  color: #ff9966;
}
.cid-tssLKIR2mu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tssLKIR2mu .item {
  padding-bottom: 2rem;
}
.cid-tssLKIR2mu .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tssLKIR2mu .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tssLKIR2mu .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-tssLKIR2mu .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tssLKIR2mu .carousel-control,
.cid-tssLKIR2mu .close {
  background: #1b1b1b;
}
.cid-tssLKIR2mu .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tssLKIR2mu .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tssLKIR2mu .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tssLKIR2mu .carousel-control-next span {
  margin-left: 5px;
}
.cid-tssLKIR2mu .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-tssLKIR2mu .close::before {
  content: '\e91a';
}
.cid-tssLKIR2mu .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tssLKIR2mu .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-tssLKIR2mu .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssLKIR2mu .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tssLKIR2mu .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tssLKIR2mu .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tssLKIR2mu .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-tssLKIR2mu .carousel-indicators li.active,
.cid-tssLKIR2mu .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tssLKIR2mu .carousel-indicators li::after,
.cid-tssLKIR2mu .carousel-indicators li::before {
  content: none;
}
.cid-tssLKIR2mu .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tssLKIR2mu .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tssLKIR2mu .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tssLKIR2mu .carousel-indicators {
    display: none;
  }
}
.cid-tssLKIR2mu .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tssLKIR2mu .carousel-inner > .active {
  display: block;
}
.cid-tssLKIR2mu .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssLKIR2mu .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tssLKIR2mu .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tssLKIR2mu .carousel-control,
  .cid-tssLKIR2mu .carousel-indicators,
  .cid-tssLKIR2mu .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tssLKIR2mu .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tssLKIR2mu .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tssLKIR2mu .carousel-indicators .active,
.cid-tssLKIR2mu .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tssLKIR2mu .carousel-indicators .active {
  background: #fff;
}
.cid-tssLKIR2mu .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tssLKIR2mu .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tssLKIR2mu .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tssLKIR2mu .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tssLKIR2mu .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tssLKIR2mu .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tssLKIR2mu .carousel {
  width: 100%;
}
.cid-tssLKIR2mu .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tssLKIR2mu .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tssLKIR2mu .modal.fade .modal-dialog,
.cid-tssLKIR2mu .modal.in .modal-dialog {
  transform: none;
}
.cid-tssLKIR2mu .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tssLKIR2mu H6 {
  text-align: center;
}
.cid-tssLKIR2mu H3 {
  color: #ff9966;
}
.cid-tssOfb3iEu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tssOfb3iEu .item {
  padding-bottom: 2rem;
}
.cid-tssOfb3iEu .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tssOfb3iEu .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tssOfb3iEu .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-tssOfb3iEu .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tssOfb3iEu .carousel-control,
.cid-tssOfb3iEu .close {
  background: #1b1b1b;
}
.cid-tssOfb3iEu .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tssOfb3iEu .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tssOfb3iEu .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tssOfb3iEu .carousel-control-next span {
  margin-left: 5px;
}
.cid-tssOfb3iEu .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-tssOfb3iEu .close::before {
  content: '\e91a';
}
.cid-tssOfb3iEu .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tssOfb3iEu .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-tssOfb3iEu .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssOfb3iEu .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tssOfb3iEu .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tssOfb3iEu .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tssOfb3iEu .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-tssOfb3iEu .carousel-indicators li.active,
.cid-tssOfb3iEu .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tssOfb3iEu .carousel-indicators li::after,
.cid-tssOfb3iEu .carousel-indicators li::before {
  content: none;
}
.cid-tssOfb3iEu .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tssOfb3iEu .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tssOfb3iEu .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tssOfb3iEu .carousel-indicators {
    display: none;
  }
}
.cid-tssOfb3iEu .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tssOfb3iEu .carousel-inner > .active {
  display: block;
}
.cid-tssOfb3iEu .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssOfb3iEu .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tssOfb3iEu .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tssOfb3iEu .carousel-control,
  .cid-tssOfb3iEu .carousel-indicators,
  .cid-tssOfb3iEu .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tssOfb3iEu .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tssOfb3iEu .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tssOfb3iEu .carousel-indicators .active,
.cid-tssOfb3iEu .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tssOfb3iEu .carousel-indicators .active {
  background: #fff;
}
.cid-tssOfb3iEu .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tssOfb3iEu .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tssOfb3iEu .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tssOfb3iEu .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tssOfb3iEu .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tssOfb3iEu .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tssOfb3iEu .carousel {
  width: 100%;
}
.cid-tssOfb3iEu .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tssOfb3iEu .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tssOfb3iEu .modal.fade .modal-dialog,
.cid-tssOfb3iEu .modal.in .modal-dialog {
  transform: none;
}
.cid-tssOfb3iEu .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tssOfb3iEu H6 {
  text-align: center;
}
.cid-tssOfb3iEu H3 {
  color: #ff9966;
}
.cid-tssQYkKsLT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tssQYkKsLT .item {
  padding-bottom: 2rem;
}
.cid-tssQYkKsLT .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tssQYkKsLT .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tssQYkKsLT .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-tssQYkKsLT .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tssQYkKsLT .carousel-control,
.cid-tssQYkKsLT .close {
  background: #1b1b1b;
}
.cid-tssQYkKsLT .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tssQYkKsLT .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tssQYkKsLT .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tssQYkKsLT .carousel-control-next span {
  margin-left: 5px;
}
.cid-tssQYkKsLT .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-tssQYkKsLT .close::before {
  content: '\e91a';
}
.cid-tssQYkKsLT .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tssQYkKsLT .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-tssQYkKsLT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssQYkKsLT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tssQYkKsLT .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tssQYkKsLT .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tssQYkKsLT .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-tssQYkKsLT .carousel-indicators li.active,
.cid-tssQYkKsLT .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tssQYkKsLT .carousel-indicators li::after,
.cid-tssQYkKsLT .carousel-indicators li::before {
  content: none;
}
.cid-tssQYkKsLT .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tssQYkKsLT .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tssQYkKsLT .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tssQYkKsLT .carousel-indicators {
    display: none;
  }
}
.cid-tssQYkKsLT .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tssQYkKsLT .carousel-inner > .active {
  display: block;
}
.cid-tssQYkKsLT .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tssQYkKsLT .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tssQYkKsLT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tssQYkKsLT .carousel-control,
  .cid-tssQYkKsLT .carousel-indicators,
  .cid-tssQYkKsLT .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tssQYkKsLT .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tssQYkKsLT .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tssQYkKsLT .carousel-indicators .active,
.cid-tssQYkKsLT .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tssQYkKsLT .carousel-indicators .active {
  background: #fff;
}
.cid-tssQYkKsLT .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tssQYkKsLT .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tssQYkKsLT .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tssQYkKsLT .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tssQYkKsLT .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tssQYkKsLT .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tssQYkKsLT .carousel {
  width: 100%;
}
.cid-tssQYkKsLT .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tssQYkKsLT .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tssQYkKsLT .modal.fade .modal-dialog,
.cid-tssQYkKsLT .modal.in .modal-dialog {
  transform: none;
}
.cid-tssQYkKsLT .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tssQYkKsLT H6 {
  text-align: center;
}
.cid-tssQYkKsLT H3 {
  color: #ff9966;
}
.cid-tTHIru7uCB {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tTHIru7uCB .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tTHIru7uCB .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tTHIru7uCB .mbr-section-title {
  color: #ff9966;
}
.cid-tTHIru7uCB .mbr-text {
  color: #ffffff;
}
.cid-tTHIru7uCB .name {
  color: #ffffff;
}
.cid-tTHIru7uCB .position {
  color: #ffffff;
}
.cid-tQiBbEaoKj {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tQiBbEaoKj .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tQiBbEaoKj .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tQiBbEaoKj .mbr-section-title {
  color: #ff9966;
}
.cid-tQiBbEaoKj .mbr-text {
  color: #ffffff;
}
.cid-tQiBbEaoKj .name {
  color: #ffffff;
}
.cid-tQiBbEaoKj .position {
  color: #ffffff;
}
.cid-tst2e9fLm0 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tst2e9fLm0 .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tst2e9fLm0 .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tst2e9fLm0 .mbr-section-title {
  color: #ff9966;
}
.cid-tst2e9fLm0 .mbr-text {
  color: #ffffff;
}
.cid-tst2e9fLm0 .name {
  color: #ffffff;
}
.cid-tst2e9fLm0 .position {
  color: #ffffff;
}
.cid-tst45IugyG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tst45IugyG .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tst45IugyG .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tst45IugyG .mbr-section-title {
  color: #ff9966;
}
.cid-tst45IugyG .mbr-text {
  color: #ffffff;
}
.cid-tst45IugyG .name {
  color: #ffffff;
}
.cid-tst45IugyG .position {
  color: #ffffff;
}
.cid-tst9bP02aT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tst9bP02aT .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tst9bP02aT .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tst9bP02aT .mbr-section-title {
  color: #ff9966;
}
.cid-tst9bP02aT .mbr-text {
  color: #ffffff;
}
.cid-tst9bP02aT .name {
  color: #ffffff;
}
.cid-tst9bP02aT .position {
  color: #ffffff;
}
.cid-tsta7LLhST {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tsta7LLhST .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tsta7LLhST .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tsta7LLhST .mbr-section-title {
  color: #ff9966;
}
.cid-tsta7LLhST .mbr-text {
  color: #ffffff;
}
.cid-tsta7LLhST .name {
  color: #ffffff;
}
.cid-tsta7LLhST .position {
  color: #ffffff;
}
.cid-slTl3RY4G4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-slTl3RY4G4 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-slTl3RY4G4 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-slTl3RY4G4 .row {
    text-align: center;
  }
  .cid-slTl3RY4G4 .row > div {
    margin: auto;
  }
  .cid-slTl3RY4G4 .social-row {
    justify-content: center;
  }
}
.cid-slTl3RY4G4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-slTl3RY4G4 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-slTl3RY4G4 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-slTl3RY4G4 .list {
    margin-bottom: 0rem;
  }
}
.cid-slTl3RY4G4 .mbr-text {
  color: #ffffff;
}
.cid-slTl3RY4G4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-slTl3RY4G4 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-slTl3RY4G4 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-slTl3RY4G4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-slTl3RY4G4 H5 {
  color: #ffffff;
}
.cid-so2YPA8eBt .navbar-dropdown {
  position: relative !important;
}
.cid-so2YPA8eBt .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-so2YPA8eBt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-so2YPA8eBt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-so2YPA8eBt .dropdown-item:hover,
.cid-so2YPA8eBt .dropdown-item:focus {
  background: #ff9966 !important;
  color: white !important;
}
.cid-so2YPA8eBt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-so2YPA8eBt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-so2YPA8eBt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-so2YPA8eBt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-so2YPA8eBt .nav-link {
  position: relative;
}
.cid-so2YPA8eBt .container {
  display: flex;
  margin: auto;
}
.cid-so2YPA8eBt .iconfont-wrapper {
  color: #e6c63b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-so2YPA8eBt .dropdown-menu,
.cid-so2YPA8eBt .navbar.opened {
  background: #000000 !important;
}
.cid-so2YPA8eBt .nav-item:focus,
.cid-so2YPA8eBt .nav-link:focus {
  outline: none;
}
.cid-so2YPA8eBt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-so2YPA8eBt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-so2YPA8eBt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-so2YPA8eBt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-so2YPA8eBt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-so2YPA8eBt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-so2YPA8eBt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-so2YPA8eBt .navbar.opened {
  transition: all 0.3s;
}
.cid-so2YPA8eBt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-so2YPA8eBt .navbar .navbar-logo img {
  width: auto;
}
.cid-so2YPA8eBt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-so2YPA8eBt .navbar.collapsed {
  justify-content: center;
}
.cid-so2YPA8eBt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-so2YPA8eBt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-so2YPA8eBt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-so2YPA8eBt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-so2YPA8eBt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-so2YPA8eBt .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-so2YPA8eBt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-so2YPA8eBt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-so2YPA8eBt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-so2YPA8eBt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-so2YPA8eBt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-so2YPA8eBt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-so2YPA8eBt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-so2YPA8eBt .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-so2YPA8eBt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-so2YPA8eBt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-so2YPA8eBt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-so2YPA8eBt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-so2YPA8eBt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-so2YPA8eBt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-so2YPA8eBt .navbar.navbar-short {
  min-height: 60px;
}
.cid-so2YPA8eBt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-so2YPA8eBt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-so2YPA8eBt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-so2YPA8eBt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-so2YPA8eBt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-so2YPA8eBt .dropdown-item.active,
.cid-so2YPA8eBt .dropdown-item:active {
  background-color: transparent;
}
.cid-so2YPA8eBt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-so2YPA8eBt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-so2YPA8eBt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-so2YPA8eBt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-so2YPA8eBt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-so2YPA8eBt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-so2YPA8eBt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-so2YPA8eBt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-so2YPA8eBt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-so2YPA8eBt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-so2YPA8eBt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-so2YPA8eBt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-so2YPA8eBt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-so2YPA8eBt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-so2YPA8eBt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-so2YPA8eBt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-so2YPA8eBt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-so2YPA8eBt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-so2YPA8eBt .navbar-dropdown {
  padding: 0 1rem;
}
.cid-so2YPA8eBt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-so2YPA8eBt .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-so2YPA8eBt .navbar {
    height: 70px;
  }
  .cid-so2YPA8eBt .navbar.opened {
    height: auto;
  }
  .cid-so2YPA8eBt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-so2YPxgfZ8 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #161414;
}
.cid-so2YPxgfZ8 .mbr-text {
  color: #ffffff;
}
.cid-so2YPxgfZ8 .mbr-section-subtitle {
  text-align: left;
  color: #ff9966;
}
.cid-so2YPxDAqC {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-so2YPxDAqC .mbr-section-title,
.cid-so2YPxDAqC .mbr-section-subtitle {
  text-align: center;
}
.cid-so2YPxDAqC .cost {
  word-break: normal;
}
.cid-so2YPxDAqC .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #232323;
}
.cid-so2YPxDAqC .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-so2YPxDAqC .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-so2YPxDAqC .card-wrapper {
    padding: 1rem;
  }
}
.cid-so2YPxDAqC P {
  color: #ffffff;
}
.cid-so2YPxDAqC .card-title {
  color: #ff9966;
}
.cid-so2YPxDAqC .mbr-section-title {
  color: #ff9966;
}
.cid-uzjLnDgiod {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uzjLnDgiod .mbr-section-title,
.cid-uzjLnDgiod .mbr-section-subtitle {
  text-align: center;
}
.cid-uzjLnDgiod .cost {
  word-break: normal;
}
.cid-uzjLnDgiod .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #232323;
}
.cid-uzjLnDgiod .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-uzjLnDgiod .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uzjLnDgiod .card-wrapper {
    padding: 1rem;
  }
}
.cid-uzjLnDgiod P {
  color: #ffffff;
}
.cid-uzjLnDgiod .card-title {
  color: #ff9966;
}
.cid-uzjLnDgiod .mbr-section-title {
  color: #ff9966;
}
.cid-tTHQmFb6Nn {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tTHQmFb6Nn .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-u4tF752V97 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u4tF752V97 .item:focus,
.cid-u4tF752V97 span:focus {
  outline: none;
}
.cid-u4tF752V97 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u4tF752V97 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #161414;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u4tF752V97 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u4tF752V97 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4tF752V97 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u4tF752V97 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u4tF752V97 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u4tF752V97 .mbr-section-title {
  color: #fafafa;
}
.cid-u4tF752V97 .mbr-text,
.cid-u4tF752V97 .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-u4tF752V97 .item-title {
  text-align: center;
  color: #bbbbbb;
}
.cid-u4tF752V97 .item-subtitle {
  text-align: center;
  color: #fafafa;
}
.cid-u4tF752V97 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u4thH1VyZp {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-u4thH1VyZp .item:focus,
.cid-u4thH1VyZp span:focus {
  outline: none;
}
.cid-u4thH1VyZp .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u4thH1VyZp .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #161414;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u4thH1VyZp .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u4thH1VyZp .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4thH1VyZp .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u4thH1VyZp .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u4thH1VyZp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u4thH1VyZp .mbr-section-title {
  color: #fafafa;
}
.cid-u4thH1VyZp .mbr-text,
.cid-u4thH1VyZp .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-u4thH1VyZp .item-title {
  text-align: center;
  color: #bbbbbb;
}
.cid-u4thH1VyZp .item-subtitle {
  text-align: center;
  color: #fafafa;
}
.cid-u4thH1VyZp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u6xYKvA8Tw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-u6xYKvA8Tw img,
.cid-u6xYKvA8Tw .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u6xYKvA8Tw .item:focus,
.cid-u6xYKvA8Tw span:focus {
  outline: none;
}
.cid-u6xYKvA8Tw .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u6xYKvA8Tw .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u6xYKvA8Tw .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u6xYKvA8Tw .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u6xYKvA8Tw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u6xYKvA8Tw .mbr-section-title {
  color: #ffffff;
}
.cid-u6xYLZWTUB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-u6xYLZWTUB img,
.cid-u6xYLZWTUB .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u6xYLZWTUB .item:focus,
.cid-u6xYLZWTUB span:focus {
  outline: none;
}
.cid-u6xYLZWTUB .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u6xYLZWTUB .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u6xYLZWTUB .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u6xYLZWTUB .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u6xYLZWTUB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u6xYLZWTUB .mbr-section-title {
  color: #ffffff;
}
.cid-u4ymR8Yfdr {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u4ymR8Yfdr .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-so2YPyV3zp {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-so2YPyV3zp .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #ff9966;
  margin-left: 1rem;
}
.cid-so2YPyV3zp .panel-group {
  border: none;
}
.cid-so2YPyV3zp .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-so2YPyV3zp .panel-body,
.cid-so2YPyV3zp .card-header {
  padding: 1rem 0;
}
.cid-so2YPyV3zp .panel-title-edit {
  color: #ff9966;
}
.cid-so2YPyV3zp .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-so2YPyV3zp .panel-text {
  color: #ffffff;
}
.cid-so2YPyV3zp H3 {
  color: #ff9966;
}
.cid-tstrIKEn91 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tstrIKEn91 .item {
  padding-bottom: 2rem;
}
.cid-tstrIKEn91 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tstrIKEn91 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tstrIKEn91 .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-tstrIKEn91 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tstrIKEn91 .carousel-control,
.cid-tstrIKEn91 .close {
  background: #1b1b1b;
}
.cid-tstrIKEn91 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tstrIKEn91 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tstrIKEn91 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tstrIKEn91 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tstrIKEn91 .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-tstrIKEn91 .close::before {
  content: '\e91a';
}
.cid-tstrIKEn91 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tstrIKEn91 .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-tstrIKEn91 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tstrIKEn91 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tstrIKEn91 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tstrIKEn91 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tstrIKEn91 .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-tstrIKEn91 .carousel-indicators li.active,
.cid-tstrIKEn91 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tstrIKEn91 .carousel-indicators li::after,
.cid-tstrIKEn91 .carousel-indicators li::before {
  content: none;
}
.cid-tstrIKEn91 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tstrIKEn91 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tstrIKEn91 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tstrIKEn91 .carousel-indicators {
    display: none;
  }
}
.cid-tstrIKEn91 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tstrIKEn91 .carousel-inner > .active {
  display: block;
}
.cid-tstrIKEn91 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tstrIKEn91 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tstrIKEn91 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tstrIKEn91 .carousel-control,
  .cid-tstrIKEn91 .carousel-indicators,
  .cid-tstrIKEn91 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tstrIKEn91 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tstrIKEn91 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tstrIKEn91 .carousel-indicators .active,
.cid-tstrIKEn91 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tstrIKEn91 .carousel-indicators .active {
  background: #fff;
}
.cid-tstrIKEn91 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tstrIKEn91 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tstrIKEn91 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tstrIKEn91 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tstrIKEn91 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tstrIKEn91 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tstrIKEn91 .carousel {
  width: 100%;
}
.cid-tstrIKEn91 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tstrIKEn91 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tstrIKEn91 .modal.fade .modal-dialog,
.cid-tstrIKEn91 .modal.in .modal-dialog {
  transform: none;
}
.cid-tstrIKEn91 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tstrIKEn91 H6 {
  text-align: center;
}
.cid-tstrIKEn91 H3 {
  color: #ff9966;
}
.cid-tstrNS0MIc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tstrNS0MIc .item {
  padding-bottom: 2rem;
}
.cid-tstrNS0MIc .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tstrNS0MIc .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tstrNS0MIc .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-tstrNS0MIc .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tstrNS0MIc .carousel-control,
.cid-tstrNS0MIc .close {
  background: #1b1b1b;
}
.cid-tstrNS0MIc .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tstrNS0MIc .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tstrNS0MIc .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tstrNS0MIc .carousel-control-next span {
  margin-left: 5px;
}
.cid-tstrNS0MIc .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-tstrNS0MIc .close::before {
  content: '\e91a';
}
.cid-tstrNS0MIc .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tstrNS0MIc .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-tstrNS0MIc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tstrNS0MIc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tstrNS0MIc .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tstrNS0MIc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tstrNS0MIc .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-tstrNS0MIc .carousel-indicators li.active,
.cid-tstrNS0MIc .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tstrNS0MIc .carousel-indicators li::after,
.cid-tstrNS0MIc .carousel-indicators li::before {
  content: none;
}
.cid-tstrNS0MIc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tstrNS0MIc .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tstrNS0MIc .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tstrNS0MIc .carousel-indicators {
    display: none;
  }
}
.cid-tstrNS0MIc .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tstrNS0MIc .carousel-inner > .active {
  display: block;
}
.cid-tstrNS0MIc .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tstrNS0MIc .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tstrNS0MIc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tstrNS0MIc .carousel-control,
  .cid-tstrNS0MIc .carousel-indicators,
  .cid-tstrNS0MIc .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tstrNS0MIc .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tstrNS0MIc .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tstrNS0MIc .carousel-indicators .active,
.cid-tstrNS0MIc .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tstrNS0MIc .carousel-indicators .active {
  background: #fff;
}
.cid-tstrNS0MIc .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tstrNS0MIc .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tstrNS0MIc .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tstrNS0MIc .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tstrNS0MIc .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tstrNS0MIc .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tstrNS0MIc .carousel {
  width: 100%;
}
.cid-tstrNS0MIc .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tstrNS0MIc .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tstrNS0MIc .modal.fade .modal-dialog,
.cid-tstrNS0MIc .modal.in .modal-dialog {
  transform: none;
}
.cid-tstrNS0MIc .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tstrNS0MIc H6 {
  text-align: center;
}
.cid-tstrNS0MIc H3 {
  color: #ff9966;
}
.cid-tstrOCWcKY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tstrOCWcKY .item {
  padding-bottom: 2rem;
}
.cid-tstrOCWcKY .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tstrOCWcKY .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tstrOCWcKY .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-tstrOCWcKY .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tstrOCWcKY .carousel-control,
.cid-tstrOCWcKY .close {
  background: #1b1b1b;
}
.cid-tstrOCWcKY .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tstrOCWcKY .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tstrOCWcKY .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tstrOCWcKY .carousel-control-next span {
  margin-left: 5px;
}
.cid-tstrOCWcKY .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-tstrOCWcKY .close::before {
  content: '\e91a';
}
.cid-tstrOCWcKY .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tstrOCWcKY .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-tstrOCWcKY .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tstrOCWcKY .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tstrOCWcKY .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tstrOCWcKY .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tstrOCWcKY .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-tstrOCWcKY .carousel-indicators li.active,
.cid-tstrOCWcKY .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tstrOCWcKY .carousel-indicators li::after,
.cid-tstrOCWcKY .carousel-indicators li::before {
  content: none;
}
.cid-tstrOCWcKY .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tstrOCWcKY .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tstrOCWcKY .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tstrOCWcKY .carousel-indicators {
    display: none;
  }
}
.cid-tstrOCWcKY .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tstrOCWcKY .carousel-inner > .active {
  display: block;
}
.cid-tstrOCWcKY .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tstrOCWcKY .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tstrOCWcKY .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tstrOCWcKY .carousel-control,
  .cid-tstrOCWcKY .carousel-indicators,
  .cid-tstrOCWcKY .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tstrOCWcKY .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tstrOCWcKY .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tstrOCWcKY .carousel-indicators .active,
.cid-tstrOCWcKY .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tstrOCWcKY .carousel-indicators .active {
  background: #fff;
}
.cid-tstrOCWcKY .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tstrOCWcKY .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tstrOCWcKY .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tstrOCWcKY .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tstrOCWcKY .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tstrOCWcKY .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tstrOCWcKY .carousel {
  width: 100%;
}
.cid-tstrOCWcKY .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tstrOCWcKY .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tstrOCWcKY .modal.fade .modal-dialog,
.cid-tstrOCWcKY .modal.in .modal-dialog {
  transform: none;
}
.cid-tstrOCWcKY .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tstrOCWcKY H6 {
  text-align: center;
}
.cid-tstrOCWcKY H3 {
  color: #ff9966;
}
.cid-tstrPvdhH7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tstrPvdhH7 .item {
  padding-bottom: 2rem;
}
.cid-tstrPvdhH7 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tstrPvdhH7 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tstrPvdhH7 .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-tstrPvdhH7 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tstrPvdhH7 .carousel-control,
.cid-tstrPvdhH7 .close {
  background: #1b1b1b;
}
.cid-tstrPvdhH7 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tstrPvdhH7 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tstrPvdhH7 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tstrPvdhH7 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tstrPvdhH7 .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-tstrPvdhH7 .close::before {
  content: '\e91a';
}
.cid-tstrPvdhH7 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tstrPvdhH7 .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-tstrPvdhH7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tstrPvdhH7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tstrPvdhH7 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tstrPvdhH7 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tstrPvdhH7 .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-tstrPvdhH7 .carousel-indicators li.active,
.cid-tstrPvdhH7 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tstrPvdhH7 .carousel-indicators li::after,
.cid-tstrPvdhH7 .carousel-indicators li::before {
  content: none;
}
.cid-tstrPvdhH7 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tstrPvdhH7 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tstrPvdhH7 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tstrPvdhH7 .carousel-indicators {
    display: none;
  }
}
.cid-tstrPvdhH7 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tstrPvdhH7 .carousel-inner > .active {
  display: block;
}
.cid-tstrPvdhH7 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tstrPvdhH7 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tstrPvdhH7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tstrPvdhH7 .carousel-control,
  .cid-tstrPvdhH7 .carousel-indicators,
  .cid-tstrPvdhH7 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tstrPvdhH7 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tstrPvdhH7 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tstrPvdhH7 .carousel-indicators .active,
.cid-tstrPvdhH7 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tstrPvdhH7 .carousel-indicators .active {
  background: #fff;
}
.cid-tstrPvdhH7 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tstrPvdhH7 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tstrPvdhH7 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tstrPvdhH7 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tstrPvdhH7 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tstrPvdhH7 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tstrPvdhH7 .carousel {
  width: 100%;
}
.cid-tstrPvdhH7 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tstrPvdhH7 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tstrPvdhH7 .modal.fade .modal-dialog,
.cid-tstrPvdhH7 .modal.in .modal-dialog {
  transform: none;
}
.cid-tstrPvdhH7 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tstrPvdhH7 H6 {
  text-align: center;
}
.cid-tstrPvdhH7 H3 {
  color: #ff9966;
}
.cid-tstsc9UdcL {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tstsc9UdcL .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tstsc9UdcL .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tstsc9UdcL .mbr-section-title {
  color: #ff9966;
}
.cid-tstsc9UdcL .mbr-text {
  color: #ffffff;
}
.cid-tstsc9UdcL .name {
  color: #ffffff;
}
.cid-tstsc9UdcL .position {
  color: #ffffff;
}
.cid-tstscOaYtY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tstscOaYtY .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tstscOaYtY .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tstscOaYtY .mbr-section-title {
  color: #ff9966;
}
.cid-tstscOaYtY .mbr-text {
  color: #ffffff;
}
.cid-tstscOaYtY .name {
  color: #ffffff;
}
.cid-tstscOaYtY .position {
  color: #ffffff;
}
.cid-tstsddIWwE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tstsddIWwE .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tstsddIWwE .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tstsddIWwE .mbr-section-title {
  color: #ff9966;
}
.cid-tstsddIWwE .mbr-text {
  color: #ffffff;
}
.cid-tstsddIWwE .name {
  color: #ffffff;
}
.cid-tstsddIWwE .position {
  color: #ffffff;
}
.cid-tstsdGFMKF {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tstsdGFMKF .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tstsdGFMKF .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tstsdGFMKF .mbr-section-title {
  color: #ff9966;
}
.cid-tstsdGFMKF .mbr-text {
  color: #ffffff;
}
.cid-tstsdGFMKF .name {
  color: #ffffff;
}
.cid-tstsdGFMKF .position {
  color: #ffffff;
}
.cid-so2YPzu1fu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-so2YPzu1fu .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-so2YPzu1fu .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-so2YPzu1fu .row {
    text-align: center;
  }
  .cid-so2YPzu1fu .row > div {
    margin: auto;
  }
  .cid-so2YPzu1fu .social-row {
    justify-content: center;
  }
}
.cid-so2YPzu1fu .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-so2YPzu1fu .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-so2YPzu1fu .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-so2YPzu1fu .list {
    margin-bottom: 0rem;
  }
}
.cid-so2YPzu1fu .mbr-text {
  color: #ffffff;
}
.cid-so2YPzu1fu .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-so2YPzu1fu .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-so2YPzu1fu div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-so2YPzu1fu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-so2YPzu1fu H5 {
  color: #ffffff;
}
.cid-so3UfL1xz2 .navbar-dropdown {
  position: relative !important;
}
.cid-so3UfL1xz2 .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-so3UfL1xz2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-so3UfL1xz2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-so3UfL1xz2 .dropdown-item:hover,
.cid-so3UfL1xz2 .dropdown-item:focus {
  background: #ff9966 !important;
  color: white !important;
}
.cid-so3UfL1xz2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-so3UfL1xz2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-so3UfL1xz2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-so3UfL1xz2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-so3UfL1xz2 .nav-link {
  position: relative;
}
.cid-so3UfL1xz2 .container {
  display: flex;
  margin: auto;
}
.cid-so3UfL1xz2 .iconfont-wrapper {
  color: #e6c63b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-so3UfL1xz2 .dropdown-menu,
.cid-so3UfL1xz2 .navbar.opened {
  background: #000000 !important;
}
.cid-so3UfL1xz2 .nav-item:focus,
.cid-so3UfL1xz2 .nav-link:focus {
  outline: none;
}
.cid-so3UfL1xz2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-so3UfL1xz2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-so3UfL1xz2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-so3UfL1xz2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-so3UfL1xz2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-so3UfL1xz2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-so3UfL1xz2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-so3UfL1xz2 .navbar.opened {
  transition: all 0.3s;
}
.cid-so3UfL1xz2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-so3UfL1xz2 .navbar .navbar-logo img {
  width: auto;
}
.cid-so3UfL1xz2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-so3UfL1xz2 .navbar.collapsed {
  justify-content: center;
}
.cid-so3UfL1xz2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-so3UfL1xz2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-so3UfL1xz2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-so3UfL1xz2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-so3UfL1xz2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-so3UfL1xz2 .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-so3UfL1xz2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-so3UfL1xz2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-so3UfL1xz2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-so3UfL1xz2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-so3UfL1xz2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-so3UfL1xz2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-so3UfL1xz2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-so3UfL1xz2 .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-so3UfL1xz2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-so3UfL1xz2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-so3UfL1xz2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-so3UfL1xz2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-so3UfL1xz2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-so3UfL1xz2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-so3UfL1xz2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-so3UfL1xz2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-so3UfL1xz2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-so3UfL1xz2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-so3UfL1xz2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-so3UfL1xz2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-so3UfL1xz2 .dropdown-item.active,
.cid-so3UfL1xz2 .dropdown-item:active {
  background-color: transparent;
}
.cid-so3UfL1xz2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-so3UfL1xz2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-so3UfL1xz2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-so3UfL1xz2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-so3UfL1xz2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-so3UfL1xz2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-so3UfL1xz2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-so3UfL1xz2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-so3UfL1xz2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-so3UfL1xz2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-so3UfL1xz2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-so3UfL1xz2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-so3UfL1xz2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-so3UfL1xz2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-so3UfL1xz2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-so3UfL1xz2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-so3UfL1xz2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-so3UfL1xz2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-so3UfL1xz2 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-so3UfL1xz2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-so3UfL1xz2 .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-so3UfL1xz2 .navbar {
    height: 70px;
  }
  .cid-so3UfL1xz2 .navbar.opened {
    height: auto;
  }
  .cid-so3UfL1xz2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-so3UfIddg2 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #161414;
}
.cid-so3UfIddg2 .mbr-text {
  color: #ffffff;
}
.cid-so3UfIddg2 .mbr-section-subtitle {
  text-align: left;
  color: #ff9966;
}
.cid-so3UfIzwal {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-so3UfIzwal .mbr-section-title,
.cid-so3UfIzwal .mbr-section-subtitle {
  text-align: center;
}
.cid-so3UfIzwal .cost {
  word-break: normal;
}
.cid-so3UfIzwal .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #232323;
}
.cid-so3UfIzwal .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-so3UfIzwal .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-so3UfIzwal .card-wrapper {
    padding: 1rem;
  }
}
.cid-so3UfIzwal P {
  color: #ffffff;
}
.cid-so3UfIzwal .card-title {
  color: #ff9966;
}
.cid-so3UfIzwal .mbr-section-title {
  color: #ff9966;
}
.cid-tTHQD50Oo9 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tTHQD50Oo9 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-u4tFcyVllm {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-u4tFcyVllm .item:focus,
.cid-u4tFcyVllm span:focus {
  outline: none;
}
.cid-u4tFcyVllm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u4tFcyVllm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #161414;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u4tFcyVllm .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u4tFcyVllm .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4tFcyVllm .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u4tFcyVllm .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u4tFcyVllm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u4tFcyVllm .mbr-section-title {
  color: #fafafa;
}
.cid-u4tFcyVllm .mbr-text,
.cid-u4tFcyVllm .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-u4tFcyVllm .item-title {
  text-align: center;
  color: #bbbbbb;
}
.cid-u4tFcyVllm .item-subtitle {
  text-align: center;
  color: #fafafa;
}
.cid-u4tFcyVllm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u4thMsuKGJ {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-u4thMsuKGJ .item:focus,
.cid-u4thMsuKGJ span:focus {
  outline: none;
}
.cid-u4thMsuKGJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u4thMsuKGJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #161414;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u4thMsuKGJ .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u4thMsuKGJ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4thMsuKGJ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u4thMsuKGJ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u4thMsuKGJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u4thMsuKGJ .mbr-section-title {
  color: #fafafa;
}
.cid-u4thMsuKGJ .mbr-text,
.cid-u4thMsuKGJ .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-u4thMsuKGJ .item-title {
  text-align: center;
  color: #bbbbbb;
}
.cid-u4thMsuKGJ .item-subtitle {
  text-align: center;
  color: #fafafa;
}
.cid-u4thMsuKGJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u4ymUR5RbK {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u4ymUR5RbK .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-so3UfJJkc4 {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-so3UfJJkc4 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #ff9966;
  margin-left: 1rem;
}
.cid-so3UfJJkc4 .panel-group {
  border: none;
}
.cid-so3UfJJkc4 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-so3UfJJkc4 .panel-body,
.cid-so3UfJJkc4 .card-header {
  padding: 1rem 0;
}
.cid-so3UfJJkc4 .panel-title-edit {
  color: #ff9966;
}
.cid-so3UfJJkc4 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-so3UfJJkc4 .panel-text {
  color: #ffffff;
}
.cid-so3UfJJkc4 H3 {
  color: #ff9966;
}
.cid-tCVprF4hVj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tCVprF4hVj .item {
  padding-bottom: 2rem;
}
.cid-tCVprF4hVj .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tCVprF4hVj .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tCVprF4hVj .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-tCVprF4hVj .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tCVprF4hVj .carousel-control,
.cid-tCVprF4hVj .close {
  background: #1b1b1b;
}
.cid-tCVprF4hVj .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tCVprF4hVj .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tCVprF4hVj .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tCVprF4hVj .carousel-control-next span {
  margin-left: 5px;
}
.cid-tCVprF4hVj .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-tCVprF4hVj .close::before {
  content: '\e91a';
}
.cid-tCVprF4hVj .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tCVprF4hVj .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-tCVprF4hVj .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tCVprF4hVj .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tCVprF4hVj .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tCVprF4hVj .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tCVprF4hVj .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-tCVprF4hVj .carousel-indicators li.active,
.cid-tCVprF4hVj .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tCVprF4hVj .carousel-indicators li::after,
.cid-tCVprF4hVj .carousel-indicators li::before {
  content: none;
}
.cid-tCVprF4hVj .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tCVprF4hVj .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tCVprF4hVj .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tCVprF4hVj .carousel-indicators {
    display: none;
  }
}
.cid-tCVprF4hVj .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tCVprF4hVj .carousel-inner > .active {
  display: block;
}
.cid-tCVprF4hVj .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tCVprF4hVj .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tCVprF4hVj .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tCVprF4hVj .carousel-control,
  .cid-tCVprF4hVj .carousel-indicators,
  .cid-tCVprF4hVj .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tCVprF4hVj .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tCVprF4hVj .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tCVprF4hVj .carousel-indicators .active,
.cid-tCVprF4hVj .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tCVprF4hVj .carousel-indicators .active {
  background: #fff;
}
.cid-tCVprF4hVj .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tCVprF4hVj .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tCVprF4hVj .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tCVprF4hVj .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tCVprF4hVj .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tCVprF4hVj .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tCVprF4hVj .carousel {
  width: 100%;
}
.cid-tCVprF4hVj .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tCVprF4hVj .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tCVprF4hVj .modal.fade .modal-dialog,
.cid-tCVprF4hVj .modal.in .modal-dialog {
  transform: none;
}
.cid-tCVprF4hVj .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tCVprF4hVj H6 {
  text-align: center;
  color: #ff9966;
}
.cid-tCVprF4hVj H3 {
  color: #ff9966;
}
.cid-so3UfKiuvw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-so3UfKiuvw .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-so3UfKiuvw .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-so3UfKiuvw .row {
    text-align: center;
  }
  .cid-so3UfKiuvw .row > div {
    margin: auto;
  }
  .cid-so3UfKiuvw .social-row {
    justify-content: center;
  }
}
.cid-so3UfKiuvw .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-so3UfKiuvw .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-so3UfKiuvw .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-so3UfKiuvw .list {
    margin-bottom: 0rem;
  }
}
.cid-so3UfKiuvw .mbr-text {
  color: #ffffff;
}
.cid-so3UfKiuvw .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-so3UfKiuvw .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-so3UfKiuvw div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-so3UfKiuvw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-so3UfKiuvw H5 {
  color: #ffffff;
}
.cid-spbwHSL7Gl .navbar-dropdown {
  position: relative !important;
}
.cid-spbwHSL7Gl .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-spbwHSL7Gl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-spbwHSL7Gl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-spbwHSL7Gl .dropdown-item:hover,
.cid-spbwHSL7Gl .dropdown-item:focus {
  background: #ff9966 !important;
  color: white !important;
}
.cid-spbwHSL7Gl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-spbwHSL7Gl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-spbwHSL7Gl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-spbwHSL7Gl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-spbwHSL7Gl .nav-link {
  position: relative;
}
.cid-spbwHSL7Gl .container {
  display: flex;
  margin: auto;
}
.cid-spbwHSL7Gl .iconfont-wrapper {
  color: #e6c63b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-spbwHSL7Gl .dropdown-menu,
.cid-spbwHSL7Gl .navbar.opened {
  background: #000000 !important;
}
.cid-spbwHSL7Gl .nav-item:focus,
.cid-spbwHSL7Gl .nav-link:focus {
  outline: none;
}
.cid-spbwHSL7Gl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-spbwHSL7Gl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-spbwHSL7Gl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-spbwHSL7Gl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-spbwHSL7Gl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-spbwHSL7Gl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-spbwHSL7Gl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-spbwHSL7Gl .navbar.opened {
  transition: all 0.3s;
}
.cid-spbwHSL7Gl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-spbwHSL7Gl .navbar .navbar-logo img {
  width: auto;
}
.cid-spbwHSL7Gl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-spbwHSL7Gl .navbar.collapsed {
  justify-content: center;
}
.cid-spbwHSL7Gl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-spbwHSL7Gl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-spbwHSL7Gl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-spbwHSL7Gl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-spbwHSL7Gl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-spbwHSL7Gl .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-spbwHSL7Gl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-spbwHSL7Gl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-spbwHSL7Gl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-spbwHSL7Gl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-spbwHSL7Gl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-spbwHSL7Gl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-spbwHSL7Gl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-spbwHSL7Gl .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-spbwHSL7Gl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-spbwHSL7Gl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-spbwHSL7Gl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-spbwHSL7Gl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-spbwHSL7Gl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-spbwHSL7Gl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-spbwHSL7Gl .navbar.navbar-short {
  min-height: 60px;
}
.cid-spbwHSL7Gl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-spbwHSL7Gl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-spbwHSL7Gl .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-spbwHSL7Gl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-spbwHSL7Gl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-spbwHSL7Gl .dropdown-item.active,
.cid-spbwHSL7Gl .dropdown-item:active {
  background-color: transparent;
}
.cid-spbwHSL7Gl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-spbwHSL7Gl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-spbwHSL7Gl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-spbwHSL7Gl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-spbwHSL7Gl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-spbwHSL7Gl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-spbwHSL7Gl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-spbwHSL7Gl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-spbwHSL7Gl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-spbwHSL7Gl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-spbwHSL7Gl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-spbwHSL7Gl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spbwHSL7Gl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-spbwHSL7Gl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-spbwHSL7Gl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-spbwHSL7Gl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-spbwHSL7Gl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-spbwHSL7Gl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-spbwHSL7Gl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-spbwHSL7Gl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-spbwHSL7Gl .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-spbwHSL7Gl .navbar {
    height: 70px;
  }
  .cid-spbwHSL7Gl .navbar.opened {
    height: auto;
  }
  .cid-spbwHSL7Gl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-spbwHTfBqP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  padding: 0 !important;
}
.cid-spbwHTfBqP .image-wrapper {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}
.cid-spbwHTfBqP .row {
  flex-direction: row-reverse;
}
.cid-spbwHTfBqP img {
  width: 100%;
  vertical-align: middle;
  object-fit: cover;
  display: inline-block;
}
.cid-spbwHTfBqP .container-fluid {
  padding: 0 !important;
}
.cid-spbwHTfBqP .mbr-description {
  color: #000000;
  text-align: center;
}
.cid-spbwHTvjDX {
  background-color: #161414;
}
@media (max-width: 991px) {
  .cid-spbwHTvjDX .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-spbwHTvjDX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-spbwHTvjDX .text-wrapper {
    padding: 0 2rem;
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .cid-spbwHTvjDX .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-spbwHTvjDX .mbr-text,
.cid-spbwHTvjDX .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-spbwHTvjDX .mbr-section-title {
  color: #ff9966;
}
.cid-sH70bhSYcm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sH70bhSYcm .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sH70bhSYcm .card-wrapper {
  background-color: #161414;
  border-radius: 4px;
}
.cid-sH70bhSYcm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sH70bhSYcm .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sH70bhSYcm .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sH70bhSYcm .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sH70bhSYcm .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sH70bhSYcm .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sH70bhSYcm .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sH70bhSYcm .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sH70bhSYcm .mbr-text,
.cid-sH70bhSYcm .social-row {
  color: #ffffff;
}
.cid-sH70bhSYcm .card-title {
  color: #ffffff;
}
.cid-spbyBrYMdM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-spbyBrYMdM .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-spbyBrYMdM .card-wrapper {
  background-color: #161414;
  border-radius: 4px;
}
.cid-spbyBrYMdM .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-spbyBrYMdM .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-spbyBrYMdM .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-spbyBrYMdM .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-spbyBrYMdM .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-spbyBrYMdM .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-spbyBrYMdM .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-spbyBrYMdM .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-spbyBrYMdM .mbr-text,
.cid-spbyBrYMdM .social-row {
  color: #ffffff;
}
.cid-spbyBrYMdM .card-title {
  color: #ffffff;
}
.cid-spbyBrYMdM .card-subtitle {
  color: #ffffff;
}
.cid-tVMy38yQH7 {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tVMy38yQH7 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tVMy38yQH7 .card-wrapper {
  background-color: #161414;
  border-radius: 4px;
}
.cid-tVMy38yQH7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tVMy38yQH7 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tVMy38yQH7 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tVMy38yQH7 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tVMy38yQH7 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tVMy38yQH7 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tVMy38yQH7 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVMy38yQH7 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tVMy38yQH7 .mbr-text,
.cid-tVMy38yQH7 .social-row {
  color: #ffffff;
}
.cid-tVMy38yQH7 .card-title {
  color: #ffffff;
}
.cid-spbwHUk60U {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-spbwHUk60U .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-spbwHUk60U .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-spbwHUk60U .row {
    text-align: center;
  }
  .cid-spbwHUk60U .row > div {
    margin: auto;
  }
  .cid-spbwHUk60U .social-row {
    justify-content: center;
  }
}
.cid-spbwHUk60U .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-spbwHUk60U .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-spbwHUk60U .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-spbwHUk60U .list {
    margin-bottom: 0rem;
  }
}
.cid-spbwHUk60U .mbr-text {
  color: #ffffff;
}
.cid-spbwHUk60U .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-spbwHUk60U .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-spbwHUk60U div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-spbwHUk60U .mbr-section-subtitle {
  color: #ffffff;
}
.cid-spbwHUk60U H5 {
  color: #ffffff;
}
.cid-snGsYhQjvi .navbar-dropdown {
  position: relative !important;
}
.cid-snGsYhQjvi .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-snGsYhQjvi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-snGsYhQjvi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-snGsYhQjvi .dropdown-item:hover,
.cid-snGsYhQjvi .dropdown-item:focus {
  background: #ff9966 !important;
  color: white !important;
}
.cid-snGsYhQjvi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-snGsYhQjvi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-snGsYhQjvi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-snGsYhQjvi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-snGsYhQjvi .nav-link {
  position: relative;
}
.cid-snGsYhQjvi .container {
  display: flex;
  margin: auto;
}
.cid-snGsYhQjvi .iconfont-wrapper {
  color: #e6c63b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-snGsYhQjvi .dropdown-menu,
.cid-snGsYhQjvi .navbar.opened {
  background: #000000 !important;
}
.cid-snGsYhQjvi .nav-item:focus,
.cid-snGsYhQjvi .nav-link:focus {
  outline: none;
}
.cid-snGsYhQjvi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-snGsYhQjvi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-snGsYhQjvi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-snGsYhQjvi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-snGsYhQjvi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-snGsYhQjvi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-snGsYhQjvi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-snGsYhQjvi .navbar.opened {
  transition: all 0.3s;
}
.cid-snGsYhQjvi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-snGsYhQjvi .navbar .navbar-logo img {
  width: auto;
}
.cid-snGsYhQjvi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-snGsYhQjvi .navbar.collapsed {
  justify-content: center;
}
.cid-snGsYhQjvi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-snGsYhQjvi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-snGsYhQjvi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-snGsYhQjvi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-snGsYhQjvi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-snGsYhQjvi .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-snGsYhQjvi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-snGsYhQjvi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-snGsYhQjvi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-snGsYhQjvi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-snGsYhQjvi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-snGsYhQjvi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-snGsYhQjvi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-snGsYhQjvi .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-snGsYhQjvi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-snGsYhQjvi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-snGsYhQjvi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-snGsYhQjvi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-snGsYhQjvi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-snGsYhQjvi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-snGsYhQjvi .navbar.navbar-short {
  min-height: 60px;
}
.cid-snGsYhQjvi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-snGsYhQjvi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-snGsYhQjvi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-snGsYhQjvi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-snGsYhQjvi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-snGsYhQjvi .dropdown-item.active,
.cid-snGsYhQjvi .dropdown-item:active {
  background-color: transparent;
}
.cid-snGsYhQjvi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-snGsYhQjvi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-snGsYhQjvi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-snGsYhQjvi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-snGsYhQjvi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-snGsYhQjvi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-snGsYhQjvi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-snGsYhQjvi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-snGsYhQjvi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-snGsYhQjvi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-snGsYhQjvi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-snGsYhQjvi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snGsYhQjvi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snGsYhQjvi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-snGsYhQjvi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snGsYhQjvi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-snGsYhQjvi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-snGsYhQjvi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snGsYhQjvi .navbar-dropdown {
  padding: 0 1rem;
}
.cid-snGsYhQjvi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-snGsYhQjvi .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-snGsYhQjvi .navbar {
    height: 70px;
  }
  .cid-snGsYhQjvi .navbar.opened {
    height: auto;
  }
  .cid-snGsYhQjvi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-snGsYizE1y {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  padding: 0 !important;
}
.cid-snGsYizE1y .image-wrapper {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}
.cid-snGsYizE1y .row {
  flex-direction: row-reverse;
}
.cid-snGsYizE1y img {
  width: 100%;
  vertical-align: middle;
  object-fit: cover;
  display: inline-block;
}
.cid-snGsYizE1y .container-fluid {
  padding: 0 !important;
}
.cid-snGsYizE1y .mbr-description {
  color: #000000;
  text-align: center;
}
.cid-snGsYjdRcY {
  background-color: #161414;
}
@media (max-width: 991px) {
  .cid-snGsYjdRcY .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-snGsYjdRcY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-snGsYjdRcY .text-wrapper {
    padding: 0 2rem;
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .cid-snGsYjdRcY .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-snGsYjdRcY .mbr-text,
.cid-snGsYjdRcY .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-snGsYjdRcY .mbr-section-title {
  color: #ff9966;
}
.cid-soCnP01cWy {
  padding-top: 150px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/background-releases-2021-001-1920x1281px-1920x1281.png");
}
.cid-soCnP01cWy .card-box {
  z-index: 10;
  position: absolute;
  padding: 1rem;
}
.cid-soCnP01cWy .container-fluid {
  padding: 0;
}
.cid-soCnP01cWy h5 {
  margin: 0;
}
.cid-soCnP01cWy h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-soCnP01cWy h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-soCnP01cWy .card {
  margin: auto;
  height: 350px;
  perspective: 800px;
  cursor: pointer;
}
.cid-soCnP01cWy .card:hover {
  z-index: 99;
}
.cid-soCnP01cWy .card-wrapper {
  background-position: center;
  background-size: cover;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transform-origin: top;
  position: relative;
  overflow: hidden;
}
.cid-soCnP01cWy .card-wrapper:hover {
  transform: rotateX(20deg);
}
.cid-soCnP01cWy .card-wrapper:hover:before {
  transform: translateY(-10%);
  opacity: 1;
}
.cid-soCnP01cWy .card-wrapper:before {
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(190deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 90%);
  clip-path: polygon(0 0, 100% 0, 100% 25%, 0 75%);
  opacity: 0;
  position: absolute;
  transition: all 0.3s;
  transform: translateY(-100%);
}
.cid-soCnP01cWy .card-wrapper a {
  height: 100%;
}
.cid-soCnP01cWy .card-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  pointer-events: all;
}
.cid-soCnP01cWy h4 {
  font-weight: 500;
  margin-bottom: 0;
}
.cid-soCnP01cWy .btn {
  margin: 0 !important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-soCnP01cWy .card-box {
    text-align: center;
  }
}
.cid-soCnP01cWy .mbr-text {
  color: #cccccc;
}
.cid-soCnP01cWy .card-date {
  color: #cccccc;
}
.cid-soCnP01cWy .card-wrapper {
  width: 300px;
  height: 300px;
  flex: none;
}
@media (max-width: 1200px) {
  .cid-soCnP01cWy .card-wrapper {
    max-width: 313px;
    max-height: 313px;
  }
}
@media (max-width: 992px) {
  .cid-soCnP01cWy .card-wrapper {
    max-width: 350px;
    max-height: 350px;
  }
}
@media (max-width: 768px) {
  .cid-soCnP01cWy .card-wrapper {
    max-width: 540px;
    max-height: 540px;
  }
}
@media (max-width: 576px) {
  .cid-soCnP01cWy .card-wrapper {
    max-width: 237px;
    max-height: 237px;
  }
}
.cid-soCnP01cWy .card {
  height: 300px;
  margin-bottom: 20px;
  align-items: center;
}
@media (max-width: 1200px) {
  .cid-soCnP01cWy .card {
    max-height: 313px;
  }
}
@media (max-width: 992px) {
  .cid-soCnP01cWy .card {
    max-height: 350px;
  }
}
@media (max-width: 768px) {
  .cid-soCnP01cWy .card {
    max-height: 540px;
  }
}
@media (max-width: 576px) {
  .cid-soCnP01cWy .card {
    max-height: 237px;
  }
}
.cid-soCnP01cWy H1 {
  text-align: center;
  color: #000000;
}
.cid-soCnP01cWy .mbr-section-subtitle,
.cid-soCnP01cWy .title-align {
  text-align: center;
  color: #000000;
}
.cid-snGsYlKSUM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-snGsYlKSUM .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-snGsYlKSUM .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-snGsYlKSUM .row {
    text-align: center;
  }
  .cid-snGsYlKSUM .row > div {
    margin: auto;
  }
  .cid-snGsYlKSUM .social-row {
    justify-content: center;
  }
}
.cid-snGsYlKSUM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-snGsYlKSUM .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-snGsYlKSUM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-snGsYlKSUM .list {
    margin-bottom: 0rem;
  }
}
.cid-snGsYlKSUM .mbr-text {
  color: #ffffff;
}
.cid-snGsYlKSUM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-snGsYlKSUM .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-snGsYlKSUM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-snGsYlKSUM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-snGsYlKSUM H5 {
  color: #ffffff;
}
.cid-snGgQqG4Yw .navbar-dropdown {
  position: relative !important;
}
.cid-snGgQqG4Yw .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-snGgQqG4Yw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-snGgQqG4Yw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-snGgQqG4Yw .dropdown-item:hover,
.cid-snGgQqG4Yw .dropdown-item:focus {
  background: #ff9966 !important;
  color: white !important;
}
.cid-snGgQqG4Yw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-snGgQqG4Yw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-snGgQqG4Yw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-snGgQqG4Yw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-snGgQqG4Yw .nav-link {
  position: relative;
}
.cid-snGgQqG4Yw .container {
  display: flex;
  margin: auto;
}
.cid-snGgQqG4Yw .iconfont-wrapper {
  color: #e6c63b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-snGgQqG4Yw .dropdown-menu,
.cid-snGgQqG4Yw .navbar.opened {
  background: #000000 !important;
}
.cid-snGgQqG4Yw .nav-item:focus,
.cid-snGgQqG4Yw .nav-link:focus {
  outline: none;
}
.cid-snGgQqG4Yw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-snGgQqG4Yw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-snGgQqG4Yw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-snGgQqG4Yw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-snGgQqG4Yw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-snGgQqG4Yw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-snGgQqG4Yw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-snGgQqG4Yw .navbar.opened {
  transition: all 0.3s;
}
.cid-snGgQqG4Yw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-snGgQqG4Yw .navbar .navbar-logo img {
  width: auto;
}
.cid-snGgQqG4Yw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-snGgQqG4Yw .navbar.collapsed {
  justify-content: center;
}
.cid-snGgQqG4Yw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-snGgQqG4Yw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-snGgQqG4Yw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-snGgQqG4Yw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-snGgQqG4Yw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-snGgQqG4Yw .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-snGgQqG4Yw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-snGgQqG4Yw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-snGgQqG4Yw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-snGgQqG4Yw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-snGgQqG4Yw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-snGgQqG4Yw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-snGgQqG4Yw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-snGgQqG4Yw .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-snGgQqG4Yw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-snGgQqG4Yw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-snGgQqG4Yw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-snGgQqG4Yw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-snGgQqG4Yw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-snGgQqG4Yw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-snGgQqG4Yw .navbar.navbar-short {
  min-height: 60px;
}
.cid-snGgQqG4Yw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-snGgQqG4Yw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-snGgQqG4Yw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-snGgQqG4Yw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-snGgQqG4Yw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-snGgQqG4Yw .dropdown-item.active,
.cid-snGgQqG4Yw .dropdown-item:active {
  background-color: transparent;
}
.cid-snGgQqG4Yw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-snGgQqG4Yw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-snGgQqG4Yw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-snGgQqG4Yw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-snGgQqG4Yw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-snGgQqG4Yw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-snGgQqG4Yw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-snGgQqG4Yw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-snGgQqG4Yw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-snGgQqG4Yw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-snGgQqG4Yw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-snGgQqG4Yw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snGgQqG4Yw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snGgQqG4Yw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-snGgQqG4Yw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snGgQqG4Yw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-snGgQqG4Yw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-snGgQqG4Yw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snGgQqG4Yw .navbar-dropdown {
  padding: 0 1rem;
}
.cid-snGgQqG4Yw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-snGgQqG4Yw .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-snGgQqG4Yw .navbar {
    height: 70px;
  }
  .cid-snGgQqG4Yw .navbar.opened {
    height: auto;
  }
  .cid-snGgQqG4Yw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-soHZPyyuv7 {
  background-color: #161414;
}
@media (max-width: 991px) {
  .cid-soHZPyyuv7 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-soHZPyyuv7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-soHZPyyuv7 .text-wrapper {
    padding: 0 2rem;
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .cid-soHZPyyuv7 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-soHZPyyuv7 .mbr-text,
.cid-soHZPyyuv7 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-soHZPyyuv7 .mbr-section-title {
  color: #ff9966;
}
.cid-soHQ9Itmlz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-soHQ9Itmlz img {
  width: 120px;
  margin: auto;
}
.cid-soHQ9Itmlz .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-soHQ9Itmlz .card {
    max-width: 12.5%;
  }
}
.cid-soHQ9Itmlz .mbr-section-title {
  color: #bbbbbb;
}
.cid-u4QeZYx9sK {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-u4QeZYx9sK .item:focus,
.cid-u4QeZYx9sK span:focus {
  outline: none;
}
.cid-u4QeZYx9sK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u4QeZYx9sK .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #161414;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u4QeZYx9sK .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u4QeZYx9sK .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4QeZYx9sK .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u4QeZYx9sK .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u4QeZYx9sK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u4QeZYx9sK .mbr-section-title {
  color: #fafafa;
}
.cid-u4QeZYx9sK .mbr-text,
.cid-u4QeZYx9sK .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-u4QeZYx9sK .item-title {
  text-align: center;
  color: #bbbbbb;
}
.cid-u4QeZYx9sK .item-subtitle {
  text-align: center;
  color: #fafafa;
}
.cid-u4QeZYx9sK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-snGgQpXWmc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-snGgQpXWmc .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-snGgQpXWmc .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-snGgQpXWmc .row {
    text-align: center;
  }
  .cid-snGgQpXWmc .row > div {
    margin: auto;
  }
  .cid-snGgQpXWmc .social-row {
    justify-content: center;
  }
}
.cid-snGgQpXWmc .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-snGgQpXWmc .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-snGgQpXWmc .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-snGgQpXWmc .list {
    margin-bottom: 0rem;
  }
}
.cid-snGgQpXWmc .mbr-text {
  color: #ffffff;
}
.cid-snGgQpXWmc .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-snGgQpXWmc .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-snGgQpXWmc div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-snGgQpXWmc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-snGgQpXWmc H5 {
  color: #ffffff;
}
.cid-so4vrYQ74F .navbar-dropdown {
  position: relative !important;
}
.cid-so4vrYQ74F .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-so4vrYQ74F .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-so4vrYQ74F .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-so4vrYQ74F .dropdown-item:hover,
.cid-so4vrYQ74F .dropdown-item:focus {
  background: #ff9966 !important;
  color: white !important;
}
.cid-so4vrYQ74F .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-so4vrYQ74F .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-so4vrYQ74F .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-so4vrYQ74F .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-so4vrYQ74F .nav-link {
  position: relative;
}
.cid-so4vrYQ74F .container {
  display: flex;
  margin: auto;
}
.cid-so4vrYQ74F .iconfont-wrapper {
  color: #e6c63b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-so4vrYQ74F .dropdown-menu,
.cid-so4vrYQ74F .navbar.opened {
  background: #000000 !important;
}
.cid-so4vrYQ74F .nav-item:focus,
.cid-so4vrYQ74F .nav-link:focus {
  outline: none;
}
.cid-so4vrYQ74F .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-so4vrYQ74F .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-so4vrYQ74F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-so4vrYQ74F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-so4vrYQ74F .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-so4vrYQ74F .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-so4vrYQ74F .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-so4vrYQ74F .navbar.opened {
  transition: all 0.3s;
}
.cid-so4vrYQ74F .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-so4vrYQ74F .navbar .navbar-logo img {
  width: auto;
}
.cid-so4vrYQ74F .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-so4vrYQ74F .navbar.collapsed {
  justify-content: center;
}
.cid-so4vrYQ74F .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-so4vrYQ74F .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-so4vrYQ74F .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-so4vrYQ74F .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-so4vrYQ74F .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-so4vrYQ74F .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-so4vrYQ74F .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-so4vrYQ74F .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-so4vrYQ74F .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-so4vrYQ74F .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-so4vrYQ74F .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-so4vrYQ74F .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-so4vrYQ74F .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-so4vrYQ74F .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-so4vrYQ74F .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-so4vrYQ74F .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-so4vrYQ74F .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-so4vrYQ74F .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-so4vrYQ74F .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-so4vrYQ74F .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-so4vrYQ74F .navbar.navbar-short {
  min-height: 60px;
}
.cid-so4vrYQ74F .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-so4vrYQ74F .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-so4vrYQ74F .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-so4vrYQ74F .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-so4vrYQ74F .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-so4vrYQ74F .dropdown-item.active,
.cid-so4vrYQ74F .dropdown-item:active {
  background-color: transparent;
}
.cid-so4vrYQ74F .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-so4vrYQ74F .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-so4vrYQ74F .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-so4vrYQ74F .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-so4vrYQ74F .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-so4vrYQ74F .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-so4vrYQ74F ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-so4vrYQ74F .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-so4vrYQ74F button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-so4vrYQ74F button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-so4vrYQ74F button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-so4vrYQ74F button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-so4vrYQ74F button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-so4vrYQ74F button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-so4vrYQ74F nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-so4vrYQ74F nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-so4vrYQ74F nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-so4vrYQ74F nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-so4vrYQ74F .navbar-dropdown {
  padding: 0 1rem;
}
.cid-so4vrYQ74F a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-so4vrYQ74F .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-so4vrYQ74F .navbar {
    height: 70px;
  }
  .cid-so4vrYQ74F .navbar.opened {
    height: auto;
  }
  .cid-so4vrYQ74F .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-so4vrWUBd0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #161414;
}
.cid-so4vrWUBd0 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-so4vrWUBd0 .row {
    flex-direction: column-reverse;
  }
  .cid-so4vrWUBd0 .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-so4vrWUBd0 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-so4vrWUBd0 .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-so4vrWUBd0 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-so4vrWUBd0 .card-title {
  color: #ff9966;
}
.cid-so4vrWUBd0 .mbr-text,
.cid-so4vrWUBd0 .mbr-section-btn {
  color: #ffffff;
}
.cid-so8POr8w68 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-so8POr8w68 .mbr-section-title,
.cid-so8POr8w68 .mbr-section-subtitle {
  text-align: center;
}
.cid-so8POr8w68 .cost {
  word-break: normal;
}
.cid-so8POr8w68 .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #232323;
}
.cid-so8POr8w68 .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-so8POr8w68 .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-so8POr8w68 .card-wrapper {
    padding: 1rem;
  }
}
.cid-so8POr8w68 P {
  color: #ffffff;
}
.cid-so8POr8w68 .card-title {
  color: #ff9966;
}
.cid-so8POr8w68 .mbr-section-title {
  color: #ff9966;
}
.cid-tTHQT2a2Dc {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tTHQT2a2Dc .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-v1GCrIDxds {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v1GCrIDxds .item:focus,
.cid-v1GCrIDxds span:focus {
  outline: none;
}
.cid-v1GCrIDxds .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1GCrIDxds .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #161414;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1GCrIDxds .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v1GCrIDxds .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1GCrIDxds .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v1GCrIDxds .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v1GCrIDxds .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1GCrIDxds .mbr-section-title {
  color: #fafafa;
}
.cid-v1GCrIDxds .mbr-text,
.cid-v1GCrIDxds .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-v1GCrIDxds .item-title {
  text-align: center;
  color: #bbbbbb;
}
.cid-v1GCrIDxds .item-subtitle {
  text-align: center;
  color: #fafafa;
}
.cid-v1GCrIDxds .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u4tFjbG1Fc {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-u4tFjbG1Fc .item:focus,
.cid-u4tFjbG1Fc span:focus {
  outline: none;
}
.cid-u4tFjbG1Fc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u4tFjbG1Fc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #161414;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u4tFjbG1Fc .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u4tFjbG1Fc .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4tFjbG1Fc .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u4tFjbG1Fc .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u4tFjbG1Fc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u4tFjbG1Fc .mbr-section-title {
  color: #fafafa;
}
.cid-u4tFjbG1Fc .mbr-text,
.cid-u4tFjbG1Fc .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-u4tFjbG1Fc .item-title {
  text-align: center;
  color: #bbbbbb;
}
.cid-u4tFjbG1Fc .item-subtitle {
  text-align: center;
  color: #fafafa;
}
.cid-u4tFjbG1Fc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u4ymYL06tp {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u4ymYL06tp .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-sFLLeVeSqk {
  background-image: url("../../../assets/images/dj-plus-roger-zeremonie-esm-logo-2025-001-2000x1000px-1-2000x1000.jpg");
}
.cid-so4vrXSEbg {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-so4vrXSEbg .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #ff9966;
  margin-left: 1rem;
}
.cid-so4vrXSEbg .panel-group {
  border: none;
}
.cid-so4vrXSEbg .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-so4vrXSEbg .panel-body,
.cid-so4vrXSEbg .card-header {
  padding: 1rem 0;
}
.cid-so4vrXSEbg .panel-title-edit {
  color: #ff9966;
}
.cid-so4vrXSEbg .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-so4vrXSEbg .panel-text {
  color: #ffffff;
}
.cid-so4vrXSEbg H3 {
  color: #ff9966;
}
.cid-tstsXqxnwB {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tstsXqxnwB .item {
  padding-bottom: 2rem;
}
.cid-tstsXqxnwB .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tstsXqxnwB .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tstsXqxnwB .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-tstsXqxnwB .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tstsXqxnwB .carousel-control,
.cid-tstsXqxnwB .close {
  background: #1b1b1b;
}
.cid-tstsXqxnwB .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tstsXqxnwB .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tstsXqxnwB .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tstsXqxnwB .carousel-control-next span {
  margin-left: 5px;
}
.cid-tstsXqxnwB .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-tstsXqxnwB .close::before {
  content: '\e91a';
}
.cid-tstsXqxnwB .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tstsXqxnwB .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-tstsXqxnwB .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tstsXqxnwB .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tstsXqxnwB .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tstsXqxnwB .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tstsXqxnwB .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-tstsXqxnwB .carousel-indicators li.active,
.cid-tstsXqxnwB .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tstsXqxnwB .carousel-indicators li::after,
.cid-tstsXqxnwB .carousel-indicators li::before {
  content: none;
}
.cid-tstsXqxnwB .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tstsXqxnwB .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tstsXqxnwB .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tstsXqxnwB .carousel-indicators {
    display: none;
  }
}
.cid-tstsXqxnwB .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tstsXqxnwB .carousel-inner > .active {
  display: block;
}
.cid-tstsXqxnwB .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tstsXqxnwB .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tstsXqxnwB .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tstsXqxnwB .carousel-control,
  .cid-tstsXqxnwB .carousel-indicators,
  .cid-tstsXqxnwB .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tstsXqxnwB .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tstsXqxnwB .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tstsXqxnwB .carousel-indicators .active,
.cid-tstsXqxnwB .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tstsXqxnwB .carousel-indicators .active {
  background: #fff;
}
.cid-tstsXqxnwB .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tstsXqxnwB .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tstsXqxnwB .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tstsXqxnwB .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tstsXqxnwB .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tstsXqxnwB .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tstsXqxnwB .carousel {
  width: 100%;
}
.cid-tstsXqxnwB .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tstsXqxnwB .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tstsXqxnwB .modal.fade .modal-dialog,
.cid-tstsXqxnwB .modal.in .modal-dialog {
  transform: none;
}
.cid-tstsXqxnwB .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tstsXqxnwB H6 {
  text-align: center;
}
.cid-tstsXqxnwB H3 {
  color: #ff9966;
}
.cid-tstsYn4HJI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tstsYn4HJI .item {
  padding-bottom: 2rem;
}
.cid-tstsYn4HJI .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tstsYn4HJI .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tstsYn4HJI .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-tstsYn4HJI .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tstsYn4HJI .carousel-control,
.cid-tstsYn4HJI .close {
  background: #1b1b1b;
}
.cid-tstsYn4HJI .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tstsYn4HJI .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tstsYn4HJI .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tstsYn4HJI .carousel-control-next span {
  margin-left: 5px;
}
.cid-tstsYn4HJI .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-tstsYn4HJI .close::before {
  content: '\e91a';
}
.cid-tstsYn4HJI .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tstsYn4HJI .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-tstsYn4HJI .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tstsYn4HJI .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tstsYn4HJI .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tstsYn4HJI .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tstsYn4HJI .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-tstsYn4HJI .carousel-indicators li.active,
.cid-tstsYn4HJI .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tstsYn4HJI .carousel-indicators li::after,
.cid-tstsYn4HJI .carousel-indicators li::before {
  content: none;
}
.cid-tstsYn4HJI .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tstsYn4HJI .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tstsYn4HJI .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tstsYn4HJI .carousel-indicators {
    display: none;
  }
}
.cid-tstsYn4HJI .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tstsYn4HJI .carousel-inner > .active {
  display: block;
}
.cid-tstsYn4HJI .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tstsYn4HJI .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tstsYn4HJI .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tstsYn4HJI .carousel-control,
  .cid-tstsYn4HJI .carousel-indicators,
  .cid-tstsYn4HJI .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tstsYn4HJI .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tstsYn4HJI .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tstsYn4HJI .carousel-indicators .active,
.cid-tstsYn4HJI .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tstsYn4HJI .carousel-indicators .active {
  background: #fff;
}
.cid-tstsYn4HJI .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tstsYn4HJI .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tstsYn4HJI .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tstsYn4HJI .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tstsYn4HJI .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tstsYn4HJI .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tstsYn4HJI .carousel {
  width: 100%;
}
.cid-tstsYn4HJI .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tstsYn4HJI .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tstsYn4HJI .modal.fade .modal-dialog,
.cid-tstsYn4HJI .modal.in .modal-dialog {
  transform: none;
}
.cid-tstsYn4HJI .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tstsYn4HJI H6 {
  text-align: center;
}
.cid-tstsYn4HJI H3 {
  color: #ff9966;
}
.cid-u4zo9ut7yt {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-u4zo9ut7yt .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-u4zo9ut7yt .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-u4zo9ut7yt .mbr-section-title {
  color: #ff9966;
}
.cid-u4zo9ut7yt .mbr-text {
  color: #ffffff;
}
.cid-u4zo9ut7yt .name {
  color: #ffffff;
}
.cid-u4zo9ut7yt .position {
  color: #ffffff;
}
.cid-tstCLd1rdc {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tstCLd1rdc .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tstCLd1rdc .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tstCLd1rdc .mbr-section-title {
  color: #ff9966;
}
.cid-tstCLd1rdc .mbr-text {
  color: #ffffff;
}
.cid-tstCLd1rdc .name {
  color: #ffffff;
}
.cid-tstCLd1rdc .position {
  color: #ffffff;
}
.cid-tstCLLqNYw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tstCLLqNYw .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tstCLLqNYw .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tstCLLqNYw .mbr-section-title {
  color: #ff9966;
}
.cid-tstCLLqNYw .mbr-text {
  color: #ffffff;
}
.cid-tstCLLqNYw .name {
  color: #ffffff;
}
.cid-tstCLLqNYw .position {
  color: #ffffff;
}
.cid-tstCMk0ob6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tstCMk0ob6 .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tstCMk0ob6 .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tstCMk0ob6 .mbr-section-title {
  color: #ff9966;
}
.cid-tstCMk0ob6 .mbr-text {
  color: #ffffff;
}
.cid-tstCMk0ob6 .name {
  color: #ffffff;
}
.cid-tstCMk0ob6 .position {
  color: #ffffff;
}
.cid-tstCMK2gp8 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tstCMK2gp8 .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tstCMK2gp8 .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tstCMK2gp8 .mbr-section-title {
  color: #ff9966;
}
.cid-tstCMK2gp8 .mbr-text {
  color: #ffffff;
}
.cid-tstCMK2gp8 .name {
  color: #ffffff;
}
.cid-tstCMK2gp8 .position {
  color: #ffffff;
}
.cid-so4vrYmk7t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-so4vrYmk7t .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-so4vrYmk7t .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-so4vrYmk7t .row {
    text-align: center;
  }
  .cid-so4vrYmk7t .row > div {
    margin: auto;
  }
  .cid-so4vrYmk7t .social-row {
    justify-content: center;
  }
}
.cid-so4vrYmk7t .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-so4vrYmk7t .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-so4vrYmk7t .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-so4vrYmk7t .list {
    margin-bottom: 0rem;
  }
}
.cid-so4vrYmk7t .mbr-text {
  color: #ffffff;
}
.cid-so4vrYmk7t .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-so4vrYmk7t .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-so4vrYmk7t div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-so4vrYmk7t .mbr-section-subtitle {
  color: #ffffff;
}
.cid-so4vrYmk7t H5 {
  color: #ffffff;
}
.cid-slXspOlfkb .navbar-dropdown {
  position: relative !important;
}
.cid-slXspOlfkb .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-slXspOlfkb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-slXspOlfkb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-slXspOlfkb .dropdown-item:hover,
.cid-slXspOlfkb .dropdown-item:focus {
  background: #ff9966 !important;
  color: white !important;
}
.cid-slXspOlfkb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-slXspOlfkb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-slXspOlfkb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-slXspOlfkb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-slXspOlfkb .nav-link {
  position: relative;
}
.cid-slXspOlfkb .container {
  display: flex;
  margin: auto;
}
.cid-slXspOlfkb .iconfont-wrapper {
  color: #e6c63b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-slXspOlfkb .dropdown-menu,
.cid-slXspOlfkb .navbar.opened {
  background: #000000 !important;
}
.cid-slXspOlfkb .nav-item:focus,
.cid-slXspOlfkb .nav-link:focus {
  outline: none;
}
.cid-slXspOlfkb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-slXspOlfkb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-slXspOlfkb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-slXspOlfkb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-slXspOlfkb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-slXspOlfkb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-slXspOlfkb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-slXspOlfkb .navbar.opened {
  transition: all 0.3s;
}
.cid-slXspOlfkb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-slXspOlfkb .navbar .navbar-logo img {
  width: auto;
}
.cid-slXspOlfkb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-slXspOlfkb .navbar.collapsed {
  justify-content: center;
}
.cid-slXspOlfkb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-slXspOlfkb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-slXspOlfkb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-slXspOlfkb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-slXspOlfkb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-slXspOlfkb .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-slXspOlfkb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-slXspOlfkb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-slXspOlfkb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-slXspOlfkb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-slXspOlfkb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-slXspOlfkb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-slXspOlfkb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-slXspOlfkb .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-slXspOlfkb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-slXspOlfkb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-slXspOlfkb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-slXspOlfkb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-slXspOlfkb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-slXspOlfkb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-slXspOlfkb .navbar.navbar-short {
  min-height: 60px;
}
.cid-slXspOlfkb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-slXspOlfkb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-slXspOlfkb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-slXspOlfkb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-slXspOlfkb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-slXspOlfkb .dropdown-item.active,
.cid-slXspOlfkb .dropdown-item:active {
  background-color: transparent;
}
.cid-slXspOlfkb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-slXspOlfkb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-slXspOlfkb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-slXspOlfkb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-slXspOlfkb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-slXspOlfkb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-slXspOlfkb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-slXspOlfkb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-slXspOlfkb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-slXspOlfkb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-slXspOlfkb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-slXspOlfkb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-slXspOlfkb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-slXspOlfkb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-slXspOlfkb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-slXspOlfkb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-slXspOlfkb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-slXspOlfkb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-slXspOlfkb .navbar-dropdown {
  padding: 0 1rem;
}
.cid-slXspOlfkb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-slXspOlfkb .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-slXspOlfkb .navbar {
    height: 70px;
  }
  .cid-slXspOlfkb .navbar.opened {
    height: auto;
  }
  .cid-slXspOlfkb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-so4kvdRHGL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  padding: 0 !important;
}
.cid-so4kvdRHGL .image-wrapper {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}
.cid-so4kvdRHGL .row {
  flex-direction: row-reverse;
}
.cid-so4kvdRHGL img {
  width: 100%;
  vertical-align: middle;
  object-fit: cover;
  display: inline-block;
}
.cid-so4kvdRHGL .container-fluid {
  padding: 0 !important;
}
.cid-so4kvdRHGL .mbr-description {
  color: #000000;
  text-align: center;
}
.cid-so4fSXYGKj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #161414;
}
.cid-so4fSXYGKj .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-so4fSXYGKj .row {
    flex-direction: column-reverse;
  }
  .cid-so4fSXYGKj .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-so4fSXYGKj .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-so4fSXYGKj .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-so4fSXYGKj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-so4fSXYGKj .card-title {
  color: #ff9966;
}
.cid-so4fSXYGKj .mbr-text,
.cid-so4fSXYGKj .mbr-section-btn {
  color: #ffffff;
}
.cid-so8QWvPene {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-so8QWvPene .mbr-section-title,
.cid-so8QWvPene .mbr-section-subtitle {
  text-align: center;
}
.cid-so8QWvPene .cost {
  word-break: normal;
}
.cid-so8QWvPene .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #232323;
}
.cid-so8QWvPene .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-so8QWvPene .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-so8QWvPene .card-wrapper {
    padding: 1rem;
  }
}
.cid-so8QWvPene P {
  color: #ffffff;
}
.cid-so8QWvPene .card-title {
  color: #ff9966;
}
.cid-so8QWvPene .mbr-section-title {
  color: #ff9966;
}
.cid-tTHR6LQdWT {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tTHR6LQdWT .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-so4pZ3gSq7 {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-so4pZ3gSq7 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #ff9966;
  margin-left: 1rem;
}
.cid-so4pZ3gSq7 .panel-group {
  border: none;
}
.cid-so4pZ3gSq7 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-so4pZ3gSq7 .panel-body,
.cid-so4pZ3gSq7 .card-header {
  padding: 1rem 0;
}
.cid-so4pZ3gSq7 .panel-title-edit {
  color: #ff9966;
}
.cid-so4pZ3gSq7 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-so4pZ3gSq7 .panel-text {
  color: #ffffff;
}
.cid-so4pZ3gSq7 H3 {
  color: #ff9966;
}
.cid-slTl3RY4G4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-slTl3RY4G4 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-slTl3RY4G4 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-slTl3RY4G4 .row {
    text-align: center;
  }
  .cid-slTl3RY4G4 .row > div {
    margin: auto;
  }
  .cid-slTl3RY4G4 .social-row {
    justify-content: center;
  }
}
.cid-slTl3RY4G4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-slTl3RY4G4 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-slTl3RY4G4 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-slTl3RY4G4 .list {
    margin-bottom: 0rem;
  }
}
.cid-slTl3RY4G4 .mbr-text {
  color: #ffffff;
}
.cid-slTl3RY4G4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-slTl3RY4G4 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-slTl3RY4G4 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-slTl3RY4G4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-slTl3RY4G4 H5 {
  color: #ffffff;
}
.cid-sphdVfVm2v .navbar-dropdown {
  position: relative !important;
}
.cid-sphdVfVm2v .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-sphdVfVm2v .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sphdVfVm2v .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sphdVfVm2v .dropdown-item:hover,
.cid-sphdVfVm2v .dropdown-item:focus {
  background: #ff9966 !important;
  color: white !important;
}
.cid-sphdVfVm2v .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sphdVfVm2v .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sphdVfVm2v .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sphdVfVm2v .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sphdVfVm2v .nav-link {
  position: relative;
}
.cid-sphdVfVm2v .container {
  display: flex;
  margin: auto;
}
.cid-sphdVfVm2v .iconfont-wrapper {
  color: #e6c63b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sphdVfVm2v .dropdown-menu,
.cid-sphdVfVm2v .navbar.opened {
  background: #000000 !important;
}
.cid-sphdVfVm2v .nav-item:focus,
.cid-sphdVfVm2v .nav-link:focus {
  outline: none;
}
.cid-sphdVfVm2v .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sphdVfVm2v .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sphdVfVm2v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sphdVfVm2v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sphdVfVm2v .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sphdVfVm2v .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sphdVfVm2v .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-sphdVfVm2v .navbar.opened {
  transition: all 0.3s;
}
.cid-sphdVfVm2v .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sphdVfVm2v .navbar .navbar-logo img {
  width: auto;
}
.cid-sphdVfVm2v .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sphdVfVm2v .navbar.collapsed {
  justify-content: center;
}
.cid-sphdVfVm2v .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sphdVfVm2v .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sphdVfVm2v .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sphdVfVm2v .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sphdVfVm2v .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sphdVfVm2v .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-sphdVfVm2v .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sphdVfVm2v .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sphdVfVm2v .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sphdVfVm2v .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sphdVfVm2v .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sphdVfVm2v .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sphdVfVm2v .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sphdVfVm2v .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-sphdVfVm2v .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sphdVfVm2v .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sphdVfVm2v .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sphdVfVm2v .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sphdVfVm2v .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sphdVfVm2v .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sphdVfVm2v .navbar.navbar-short {
  min-height: 60px;
}
.cid-sphdVfVm2v .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sphdVfVm2v .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sphdVfVm2v .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sphdVfVm2v .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sphdVfVm2v .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sphdVfVm2v .dropdown-item.active,
.cid-sphdVfVm2v .dropdown-item:active {
  background-color: transparent;
}
.cid-sphdVfVm2v .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sphdVfVm2v .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sphdVfVm2v .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sphdVfVm2v .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sphdVfVm2v .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sphdVfVm2v .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sphdVfVm2v ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sphdVfVm2v .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sphdVfVm2v button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sphdVfVm2v button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sphdVfVm2v button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sphdVfVm2v button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sphdVfVm2v button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sphdVfVm2v button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sphdVfVm2v nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sphdVfVm2v nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sphdVfVm2v nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sphdVfVm2v nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sphdVfVm2v .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sphdVfVm2v a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sphdVfVm2v .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-sphdVfVm2v .navbar {
    height: 70px;
  }
  .cid-sphdVfVm2v .navbar.opened {
    height: auto;
  }
  .cid-sphdVfVm2v .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sphdVgsOEU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  padding: 0 !important;
}
.cid-sphdVgsOEU .image-wrapper {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}
.cid-sphdVgsOEU .row {
  flex-direction: row-reverse;
}
.cid-sphdVgsOEU img {
  width: 100%;
  vertical-align: middle;
  object-fit: cover;
  display: inline-block;
}
.cid-sphdVgsOEU .container-fluid {
  padding: 0 !important;
}
.cid-sphdVgsOEU .mbr-description {
  color: #000000;
  text-align: center;
}
.cid-sphh2hlLAK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-sphh2hlLAK .mbr-text {
  color: #ffffff;
}
.cid-sphh2hlLAK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sphdVi8RNi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-sphdVi8RNi .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sphdVi8RNi .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sphdVi8RNi .row {
    text-align: center;
  }
  .cid-sphdVi8RNi .row > div {
    margin: auto;
  }
  .cid-sphdVi8RNi .social-row {
    justify-content: center;
  }
}
.cid-sphdVi8RNi .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sphdVi8RNi .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sphdVi8RNi .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sphdVi8RNi .list {
    margin-bottom: 0rem;
  }
}
.cid-sphdVi8RNi .mbr-text {
  color: #ffffff;
}
.cid-sphdVi8RNi .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sphdVi8RNi .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sphdVi8RNi div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sphdVi8RNi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sphdVi8RNi H5 {
  color: #ffffff;
}
.cid-slXspOlfkb .navbar-dropdown {
  position: relative !important;
}
.cid-slXspOlfkb .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-slXspOlfkb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-slXspOlfkb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-slXspOlfkb .dropdown-item:hover,
.cid-slXspOlfkb .dropdown-item:focus {
  background: #ff9966 !important;
  color: white !important;
}
.cid-slXspOlfkb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-slXspOlfkb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-slXspOlfkb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-slXspOlfkb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-slXspOlfkb .nav-link {
  position: relative;
}
.cid-slXspOlfkb .container {
  display: flex;
  margin: auto;
}
.cid-slXspOlfkb .iconfont-wrapper {
  color: #e6c63b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-slXspOlfkb .dropdown-menu,
.cid-slXspOlfkb .navbar.opened {
  background: #000000 !important;
}
.cid-slXspOlfkb .nav-item:focus,
.cid-slXspOlfkb .nav-link:focus {
  outline: none;
}
.cid-slXspOlfkb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-slXspOlfkb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-slXspOlfkb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-slXspOlfkb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-slXspOlfkb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-slXspOlfkb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-slXspOlfkb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-slXspOlfkb .navbar.opened {
  transition: all 0.3s;
}
.cid-slXspOlfkb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-slXspOlfkb .navbar .navbar-logo img {
  width: auto;
}
.cid-slXspOlfkb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-slXspOlfkb .navbar.collapsed {
  justify-content: center;
}
.cid-slXspOlfkb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-slXspOlfkb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-slXspOlfkb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-slXspOlfkb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-slXspOlfkb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-slXspOlfkb .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-slXspOlfkb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-slXspOlfkb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-slXspOlfkb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-slXspOlfkb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-slXspOlfkb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-slXspOlfkb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-slXspOlfkb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-slXspOlfkb .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-slXspOlfkb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-slXspOlfkb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-slXspOlfkb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-slXspOlfkb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-slXspOlfkb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-slXspOlfkb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-slXspOlfkb .navbar.navbar-short {
  min-height: 60px;
}
.cid-slXspOlfkb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-slXspOlfkb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-slXspOlfkb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-slXspOlfkb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-slXspOlfkb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-slXspOlfkb .dropdown-item.active,
.cid-slXspOlfkb .dropdown-item:active {
  background-color: transparent;
}
.cid-slXspOlfkb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-slXspOlfkb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-slXspOlfkb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-slXspOlfkb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-slXspOlfkb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-slXspOlfkb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-slXspOlfkb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-slXspOlfkb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-slXspOlfkb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-slXspOlfkb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-slXspOlfkb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-slXspOlfkb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-slXspOlfkb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-slXspOlfkb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-slXspOlfkb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-slXspOlfkb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-slXspOlfkb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-slXspOlfkb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-slXspOlfkb .navbar-dropdown {
  padding: 0 1rem;
}
.cid-slXspOlfkb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-slXspOlfkb .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-slXspOlfkb .navbar {
    height: 70px;
  }
  .cid-slXspOlfkb .navbar.opened {
    height: auto;
  }
  .cid-slXspOlfkb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-smaCIJnckS {
  background: #ffffff;
}
.cid-smaCIJnckS .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-smaCIJnckS .mbr-figure {
  margin: 0 auto;
}
.cid-smaCIJnckS figcaption {
  position: relative;
}
.cid-smaCIJnckS figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-smaCIJnckS .image-block {
    width: 100% !important;
  }
}
.cid-trNyp2Dsh2 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #161414;
}
.cid-trNyp2Dsh2 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-trNyp2Dsh2 .mbr-section-title {
  color: #ff9966;
  text-align: left;
}
.cid-trNyHru5nQ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #161414;
}
.cid-trNyHru5nQ .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-trNhPMFReW {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-trNhPMFReW .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-trNhPMFReW H4 {
  color: #ff9966;
}
.cid-trNhPMFReW LABEL {
  color: #ffffff;
}
.cid-slTl3RY4G4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-slTl3RY4G4 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-slTl3RY4G4 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-slTl3RY4G4 .row {
    text-align: center;
  }
  .cid-slTl3RY4G4 .row > div {
    margin: auto;
  }
  .cid-slTl3RY4G4 .social-row {
    justify-content: center;
  }
}
.cid-slTl3RY4G4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-slTl3RY4G4 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-slTl3RY4G4 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-slTl3RY4G4 .list {
    margin-bottom: 0rem;
  }
}
.cid-slTl3RY4G4 .mbr-text {
  color: #ffffff;
}
.cid-slTl3RY4G4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-slTl3RY4G4 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-slTl3RY4G4 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-slTl3RY4G4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-slTl3RY4G4 H5 {
  color: #ffffff;
}
.cid-upRvqoZUKt .navbar-dropdown {
  position: relative !important;
}
.cid-upRvqoZUKt .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-upRvqoZUKt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-upRvqoZUKt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-upRvqoZUKt .dropdown-item:hover,
.cid-upRvqoZUKt .dropdown-item:focus {
  background: #ff9966 !important;
  color: white !important;
}
.cid-upRvqoZUKt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-upRvqoZUKt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-upRvqoZUKt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-upRvqoZUKt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-upRvqoZUKt .nav-link {
  position: relative;
}
.cid-upRvqoZUKt .container {
  display: flex;
  margin: auto;
}
.cid-upRvqoZUKt .iconfont-wrapper {
  color: #e6c63b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-upRvqoZUKt .dropdown-menu,
.cid-upRvqoZUKt .navbar.opened {
  background: #000000 !important;
}
.cid-upRvqoZUKt .nav-item:focus,
.cid-upRvqoZUKt .nav-link:focus {
  outline: none;
}
.cid-upRvqoZUKt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upRvqoZUKt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upRvqoZUKt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upRvqoZUKt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upRvqoZUKt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upRvqoZUKt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upRvqoZUKt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-upRvqoZUKt .navbar.opened {
  transition: all 0.3s;
}
.cid-upRvqoZUKt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-upRvqoZUKt .navbar .navbar-logo img {
  width: auto;
}
.cid-upRvqoZUKt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-upRvqoZUKt .navbar.collapsed {
  justify-content: center;
}
.cid-upRvqoZUKt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upRvqoZUKt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-upRvqoZUKt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-upRvqoZUKt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upRvqoZUKt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upRvqoZUKt .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-upRvqoZUKt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upRvqoZUKt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-upRvqoZUKt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-upRvqoZUKt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upRvqoZUKt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upRvqoZUKt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upRvqoZUKt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-upRvqoZUKt .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-upRvqoZUKt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upRvqoZUKt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-upRvqoZUKt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-upRvqoZUKt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upRvqoZUKt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upRvqoZUKt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-upRvqoZUKt .navbar.navbar-short {
  min-height: 60px;
}
.cid-upRvqoZUKt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-upRvqoZUKt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-upRvqoZUKt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-upRvqoZUKt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-upRvqoZUKt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upRvqoZUKt .dropdown-item.active,
.cid-upRvqoZUKt .dropdown-item:active {
  background-color: transparent;
}
.cid-upRvqoZUKt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upRvqoZUKt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upRvqoZUKt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upRvqoZUKt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-upRvqoZUKt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-upRvqoZUKt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upRvqoZUKt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-upRvqoZUKt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upRvqoZUKt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-upRvqoZUKt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-upRvqoZUKt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upRvqoZUKt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upRvqoZUKt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upRvqoZUKt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upRvqoZUKt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upRvqoZUKt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-upRvqoZUKt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-upRvqoZUKt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upRvqoZUKt .navbar-dropdown {
  padding: 0 1rem;
}
.cid-upRvqoZUKt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-upRvqoZUKt .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-upRvqoZUKt .navbar {
    height: 70px;
  }
  .cid-upRvqoZUKt .navbar.opened {
    height: auto;
  }
  .cid-upRvqoZUKt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upRIPK52YY {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-upRIPK52YY .mbr-fallback-image.disabled {
  display: none;
}
.cid-upRIPK52YY .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-upRIPK52YY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upRIPK52YY img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-upRIPK52YY .text-wrapper {
    padding: 2rem;
  }
}
.cid-upRIPK52YY .mbr-text {
  color: #ffffff;
}
.cid-upRIPK52YY .mbr-section-title {
  color: #ffffff;
}
.cid-upRIPK52YY .mbr-description {
  color: #ffffff;
}
.cid-upRvIFGFoa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-upRvIFGFoa .mbr-fallback-image.disabled {
  display: none;
}
.cid-upRvIFGFoa .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-upRvIFGFoa .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upRvIFGFoa img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-upRvIFGFoa .text-wrapper {
    padding: 2rem;
  }
}
.cid-upRvIFGFoa .mbr-text {
  color: #ffffff;
}
.cid-upRvIFGFoa .mbr-section-title {
  color: #ffffff;
}
.cid-upRvIFGFoa .mbr-description {
  color: #ffffff;
}
.cid-upRHA1DPCL {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-upRHA1DPCL .mbr-fallback-image.disabled {
  display: none;
}
.cid-upRHA1DPCL .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-upRHA1DPCL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upRHA1DPCL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-upRHA1DPCL .text-wrapper {
    padding: 2rem;
  }
}
.cid-upRHA1DPCL .mbr-text {
  color: #ffffff;
}
.cid-upRHA1DPCL .mbr-section-title {
  color: #ffffff;
}
.cid-upRHA1DPCL .mbr-description {
  color: #ffffff;
}
.cid-upRDWNJ3PS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-upRDWNJ3PS .mbr-fallback-image.disabled {
  display: none;
}
.cid-upRDWNJ3PS .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-upRDWNJ3PS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upRDWNJ3PS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-upRDWNJ3PS .text-wrapper {
    padding: 2rem;
  }
}
.cid-upRDWNJ3PS .mbr-text {
  color: #ffffff;
}
.cid-upRDWNJ3PS .mbr-section-title {
  color: #ffffff;
}
.cid-upRDWNJ3PS .mbr-description {
  color: #ffffff;
}
.cid-upRA0xaKHi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-upRA0xaKHi .mbr-fallback-image.disabled {
  display: none;
}
.cid-upRA0xaKHi .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-upRA0xaKHi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upRA0xaKHi img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-upRA0xaKHi .text-wrapper {
    padding: 2rem;
  }
}
.cid-upRA0xaKHi .mbr-text {
  color: #ffffff;
}
.cid-upRA0xaKHi .mbr-section-title {
  color: #ffffff;
}
.cid-upRA0xaKHi .mbr-description {
  color: #ffffff;
}
.cid-upRFI7fiIz {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-upRFI7fiIz .mbr-fallback-image.disabled {
  display: none;
}
.cid-upRFI7fiIz .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-upRFI7fiIz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upRFI7fiIz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-upRFI7fiIz .text-wrapper {
    padding: 2rem;
  }
}
.cid-upRFI7fiIz .mbr-text {
  color: #ffffff;
}
.cid-upRFI7fiIz .mbr-section-title {
  color: #ffffff;
}
.cid-upRFI7fiIz .mbr-description {
  color: #ffffff;
}
.cid-upRvqsWdxT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-upRvqsWdxT .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-upRvqsWdxT .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-upRvqsWdxT .row {
    text-align: center;
  }
  .cid-upRvqsWdxT .row > div {
    margin: auto;
  }
  .cid-upRvqsWdxT .social-row {
    justify-content: center;
  }
}
.cid-upRvqsWdxT .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-upRvqsWdxT .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-upRvqsWdxT .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-upRvqsWdxT .list {
    margin-bottom: 0rem;
  }
}
.cid-upRvqsWdxT .mbr-text {
  color: #ffffff;
}
.cid-upRvqsWdxT .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-upRvqsWdxT .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-upRvqsWdxT div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-upRvqsWdxT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-upRvqsWdxT H5 {
  color: #ffffff;
}
.cid-so4wuVamgz .navbar-dropdown {
  position: relative !important;
}
.cid-so4wuVamgz .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-so4wuVamgz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-so4wuVamgz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-so4wuVamgz .dropdown-item:hover,
.cid-so4wuVamgz .dropdown-item:focus {
  background: #ff9966 !important;
  color: white !important;
}
.cid-so4wuVamgz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-so4wuVamgz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-so4wuVamgz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-so4wuVamgz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-so4wuVamgz .nav-link {
  position: relative;
}
.cid-so4wuVamgz .container {
  display: flex;
  margin: auto;
}
.cid-so4wuVamgz .iconfont-wrapper {
  color: #e6c63b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-so4wuVamgz .dropdown-menu,
.cid-so4wuVamgz .navbar.opened {
  background: #000000 !important;
}
.cid-so4wuVamgz .nav-item:focus,
.cid-so4wuVamgz .nav-link:focus {
  outline: none;
}
.cid-so4wuVamgz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-so4wuVamgz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-so4wuVamgz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-so4wuVamgz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-so4wuVamgz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-so4wuVamgz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-so4wuVamgz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-so4wuVamgz .navbar.opened {
  transition: all 0.3s;
}
.cid-so4wuVamgz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-so4wuVamgz .navbar .navbar-logo img {
  width: auto;
}
.cid-so4wuVamgz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-so4wuVamgz .navbar.collapsed {
  justify-content: center;
}
.cid-so4wuVamgz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-so4wuVamgz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-so4wuVamgz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-so4wuVamgz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-so4wuVamgz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-so4wuVamgz .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-so4wuVamgz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-so4wuVamgz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-so4wuVamgz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-so4wuVamgz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-so4wuVamgz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-so4wuVamgz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-so4wuVamgz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-so4wuVamgz .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-so4wuVamgz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-so4wuVamgz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-so4wuVamgz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-so4wuVamgz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-so4wuVamgz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-so4wuVamgz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-so4wuVamgz .navbar.navbar-short {
  min-height: 60px;
}
.cid-so4wuVamgz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-so4wuVamgz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-so4wuVamgz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-so4wuVamgz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-so4wuVamgz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-so4wuVamgz .dropdown-item.active,
.cid-so4wuVamgz .dropdown-item:active {
  background-color: transparent;
}
.cid-so4wuVamgz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-so4wuVamgz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-so4wuVamgz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-so4wuVamgz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-so4wuVamgz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-so4wuVamgz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-so4wuVamgz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-so4wuVamgz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-so4wuVamgz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-so4wuVamgz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-so4wuVamgz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-so4wuVamgz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-so4wuVamgz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-so4wuVamgz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-so4wuVamgz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-so4wuVamgz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-so4wuVamgz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-so4wuVamgz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-so4wuVamgz .navbar-dropdown {
  padding: 0 1rem;
}
.cid-so4wuVamgz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-so4wuVamgz .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-so4wuVamgz .navbar {
    height: 70px;
  }
  .cid-so4wuVamgz .navbar.opened {
    height: auto;
  }
  .cid-so4wuVamgz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-so4wuS7Ok7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  padding: 0 !important;
}
.cid-so4wuS7Ok7 .image-wrapper {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}
.cid-so4wuS7Ok7 .row {
  flex-direction: row-reverse;
}
.cid-so4wuS7Ok7 img {
  width: 100%;
  vertical-align: middle;
  object-fit: cover;
  display: inline-block;
}
.cid-so4wuS7Ok7 .container-fluid {
  padding: 0 !important;
}
.cid-so4wuS7Ok7 .mbr-description {
  color: #000000;
  text-align: center;
}
.cid-so4wuTaUty {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #161414;
}
.cid-so4wuTaUty .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-so4wuTaUty .row {
    flex-direction: column-reverse;
  }
  .cid-so4wuTaUty .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-so4wuTaUty .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-so4wuTaUty .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-so4wuTaUty .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-so4wuTaUty .card-title {
  color: #ff9966;
}
.cid-so4wuTaUty .mbr-text,
.cid-so4wuTaUty .mbr-section-btn {
  color: #ffffff;
}
.cid-so8QJmQDTL {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-so8QJmQDTL .mbr-section-title,
.cid-so8QJmQDTL .mbr-section-subtitle {
  text-align: center;
}
.cid-so8QJmQDTL .cost {
  word-break: normal;
}
.cid-so8QJmQDTL .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #232323;
}
.cid-so8QJmQDTL .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-so8QJmQDTL .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-so8QJmQDTL .card-wrapper {
    padding: 1rem;
  }
}
.cid-so8QJmQDTL P {
  color: #ffffff;
}
.cid-so8QJmQDTL .card-title {
  color: #ff9966;
}
.cid-so8QJmQDTL .mbr-section-title {
  color: #ff9966;
}
.cid-v4qsRz7ngt {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v4qsRz7ngt .mbr-section-title,
.cid-v4qsRz7ngt .mbr-section-subtitle {
  text-align: center;
}
.cid-v4qsRz7ngt .cost {
  word-break: normal;
}
.cid-v4qsRz7ngt .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #232323;
}
.cid-v4qsRz7ngt .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-v4qsRz7ngt .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4qsRz7ngt .card-wrapper {
    padding: 1rem;
  }
}
.cid-v4qsRz7ngt P {
  color: #ffffff;
}
.cid-v4qsRz7ngt .card-title {
  color: #ff9966;
}
.cid-v4qsRz7ngt .mbr-section-title {
  color: #ff9966;
}
.cid-v4qt94ufkT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v4qt94ufkT .mbr-section-title,
.cid-v4qt94ufkT .mbr-section-subtitle {
  text-align: center;
}
.cid-v4qt94ufkT .cost {
  word-break: normal;
}
.cid-v4qt94ufkT .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #232323;
}
.cid-v4qt94ufkT .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-v4qt94ufkT .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4qt94ufkT .card-wrapper {
    padding: 1rem;
  }
}
.cid-v4qt94ufkT P {
  color: #ffffff;
}
.cid-v4qt94ufkT .card-title {
  color: #ff9966;
}
.cid-v4qt94ufkT .mbr-section-title {
  color: #ff9966;
}
.cid-tTHQY06dVt {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tTHQY06dVt .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-v4qtTfExRv {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v4qtTfExRv .item:focus,
.cid-v4qtTfExRv span:focus {
  outline: none;
}
.cid-v4qtTfExRv .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4qtTfExRv .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #161414;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4qtTfExRv .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4qtTfExRv .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4qtTfExRv .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4qtTfExRv .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4qtTfExRv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4qtTfExRv .mbr-section-title {
  color: #fafafa;
}
.cid-v4qtTfExRv .mbr-text,
.cid-v4qtTfExRv .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-v4qtTfExRv .item-title {
  text-align: center;
  color: #bbbbbb;
}
.cid-v4qtTfExRv .item-subtitle {
  text-align: center;
  color: #fafafa;
}
.cid-v4qtTfExRv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4qu6089om {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v4qu6089om .item:focus,
.cid-v4qu6089om span:focus {
  outline: none;
}
.cid-v4qu6089om .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4qu6089om .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #161414;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4qu6089om .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4qu6089om .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4qu6089om .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4qu6089om .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4qu6089om .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4qu6089om .mbr-section-title {
  color: #fafafa;
}
.cid-v4qu6089om .mbr-text,
.cid-v4qu6089om .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-v4qu6089om .item-title {
  text-align: center;
  color: #bbbbbb;
}
.cid-v4qu6089om .item-subtitle {
  text-align: center;
  color: #fafafa;
}
.cid-v4qu6089om .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4quX25F9a {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v4quX25F9a img,
.cid-v4quX25F9a .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v4quX25F9a .item:focus,
.cid-v4quX25F9a span:focus {
  outline: none;
}
.cid-v4quX25F9a .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v4quX25F9a .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4quX25F9a .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4quX25F9a .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4quX25F9a .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4quX25F9a .mbr-section-title {
  color: #ffffff;
}
.cid-so4wuTVJQQ {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-so4wuTVJQQ .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #ff9966;
  margin-left: 1rem;
}
.cid-so4wuTVJQQ .panel-group {
  border: none;
}
.cid-so4wuTVJQQ .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-so4wuTVJQQ .panel-body,
.cid-so4wuTVJQQ .card-header {
  padding: 1rem 0;
}
.cid-so4wuTVJQQ .panel-title-edit {
  color: #ff9966;
}
.cid-so4wuTVJQQ .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-so4wuTVJQQ .panel-text {
  color: #ffffff;
}
.cid-so4wuTVJQQ H3 {
  color: #ff9966;
}
.cid-tstGmkqhqo {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tstGmkqhqo .item {
  padding-bottom: 2rem;
}
.cid-tstGmkqhqo .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tstGmkqhqo .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tstGmkqhqo .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-tstGmkqhqo .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tstGmkqhqo .carousel-control,
.cid-tstGmkqhqo .close {
  background: #1b1b1b;
}
.cid-tstGmkqhqo .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tstGmkqhqo .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tstGmkqhqo .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tstGmkqhqo .carousel-control-next span {
  margin-left: 5px;
}
.cid-tstGmkqhqo .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-tstGmkqhqo .close::before {
  content: '\e91a';
}
.cid-tstGmkqhqo .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tstGmkqhqo .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-tstGmkqhqo .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tstGmkqhqo .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tstGmkqhqo .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tstGmkqhqo .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tstGmkqhqo .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-tstGmkqhqo .carousel-indicators li.active,
.cid-tstGmkqhqo .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tstGmkqhqo .carousel-indicators li::after,
.cid-tstGmkqhqo .carousel-indicators li::before {
  content: none;
}
.cid-tstGmkqhqo .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tstGmkqhqo .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tstGmkqhqo .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tstGmkqhqo .carousel-indicators {
    display: none;
  }
}
.cid-tstGmkqhqo .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tstGmkqhqo .carousel-inner > .active {
  display: block;
}
.cid-tstGmkqhqo .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tstGmkqhqo .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tstGmkqhqo .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tstGmkqhqo .carousel-control,
  .cid-tstGmkqhqo .carousel-indicators,
  .cid-tstGmkqhqo .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tstGmkqhqo .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tstGmkqhqo .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tstGmkqhqo .carousel-indicators .active,
.cid-tstGmkqhqo .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tstGmkqhqo .carousel-indicators .active {
  background: #fff;
}
.cid-tstGmkqhqo .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tstGmkqhqo .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tstGmkqhqo .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tstGmkqhqo .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tstGmkqhqo .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tstGmkqhqo .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tstGmkqhqo .carousel {
  width: 100%;
}
.cid-tstGmkqhqo .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tstGmkqhqo .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tstGmkqhqo .modal.fade .modal-dialog,
.cid-tstGmkqhqo .modal.in .modal-dialog {
  transform: none;
}
.cid-tstGmkqhqo .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tstGmkqhqo H6 {
  text-align: center;
}
.cid-tstGmkqhqo H3 {
  color: #ff9966;
}
.cid-tstGnbk3lw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tstGnbk3lw .item {
  padding-bottom: 2rem;
}
.cid-tstGnbk3lw .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tstGnbk3lw .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tstGnbk3lw .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-tstGnbk3lw .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tstGnbk3lw .carousel-control,
.cid-tstGnbk3lw .close {
  background: #1b1b1b;
}
.cid-tstGnbk3lw .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tstGnbk3lw .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tstGnbk3lw .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tstGnbk3lw .carousel-control-next span {
  margin-left: 5px;
}
.cid-tstGnbk3lw .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-tstGnbk3lw .close::before {
  content: '\e91a';
}
.cid-tstGnbk3lw .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tstGnbk3lw .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-tstGnbk3lw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tstGnbk3lw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tstGnbk3lw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tstGnbk3lw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tstGnbk3lw .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-tstGnbk3lw .carousel-indicators li.active,
.cid-tstGnbk3lw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tstGnbk3lw .carousel-indicators li::after,
.cid-tstGnbk3lw .carousel-indicators li::before {
  content: none;
}
.cid-tstGnbk3lw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tstGnbk3lw .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tstGnbk3lw .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tstGnbk3lw .carousel-indicators {
    display: none;
  }
}
.cid-tstGnbk3lw .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tstGnbk3lw .carousel-inner > .active {
  display: block;
}
.cid-tstGnbk3lw .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tstGnbk3lw .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tstGnbk3lw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tstGnbk3lw .carousel-control,
  .cid-tstGnbk3lw .carousel-indicators,
  .cid-tstGnbk3lw .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tstGnbk3lw .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tstGnbk3lw .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tstGnbk3lw .carousel-indicators .active,
.cid-tstGnbk3lw .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tstGnbk3lw .carousel-indicators .active {
  background: #fff;
}
.cid-tstGnbk3lw .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tstGnbk3lw .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tstGnbk3lw .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tstGnbk3lw .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tstGnbk3lw .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tstGnbk3lw .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tstGnbk3lw .carousel {
  width: 100%;
}
.cid-tstGnbk3lw .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tstGnbk3lw .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tstGnbk3lw .modal.fade .modal-dialog,
.cid-tstGnbk3lw .modal.in .modal-dialog {
  transform: none;
}
.cid-tstGnbk3lw .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tstGnbk3lw H6 {
  text-align: center;
}
.cid-tstGnbk3lw H3 {
  color: #ff9966;
}
.cid-tstJrZam96 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tstJrZam96 .item {
  padding-bottom: 2rem;
}
.cid-tstJrZam96 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tstJrZam96 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tstJrZam96 .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-tstJrZam96 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tstJrZam96 .carousel-control,
.cid-tstJrZam96 .close {
  background: #1b1b1b;
}
.cid-tstJrZam96 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tstJrZam96 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tstJrZam96 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tstJrZam96 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tstJrZam96 .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-tstJrZam96 .close::before {
  content: '\e91a';
}
.cid-tstJrZam96 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tstJrZam96 .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-tstJrZam96 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tstJrZam96 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tstJrZam96 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tstJrZam96 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tstJrZam96 .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-tstJrZam96 .carousel-indicators li.active,
.cid-tstJrZam96 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tstJrZam96 .carousel-indicators li::after,
.cid-tstJrZam96 .carousel-indicators li::before {
  content: none;
}
.cid-tstJrZam96 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tstJrZam96 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tstJrZam96 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tstJrZam96 .carousel-indicators {
    display: none;
  }
}
.cid-tstJrZam96 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tstJrZam96 .carousel-inner > .active {
  display: block;
}
.cid-tstJrZam96 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tstJrZam96 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tstJrZam96 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tstJrZam96 .carousel-control,
  .cid-tstJrZam96 .carousel-indicators,
  .cid-tstJrZam96 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tstJrZam96 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tstJrZam96 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tstJrZam96 .carousel-indicators .active,
.cid-tstJrZam96 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tstJrZam96 .carousel-indicators .active {
  background: #fff;
}
.cid-tstJrZam96 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tstJrZam96 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tstJrZam96 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tstJrZam96 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tstJrZam96 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tstJrZam96 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tstJrZam96 .carousel {
  width: 100%;
}
.cid-tstJrZam96 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tstJrZam96 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tstJrZam96 .modal.fade .modal-dialog,
.cid-tstJrZam96 .modal.in .modal-dialog {
  transform: none;
}
.cid-tstJrZam96 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tstJrZam96 H6 {
  text-align: center;
}
.cid-tstJrZam96 H3 {
  color: #ff9966;
}
.cid-tstGhe5gjc {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tstGhe5gjc .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tstGhe5gjc .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tstGhe5gjc .mbr-section-title {
  color: #ff9966;
}
.cid-tstGhe5gjc .mbr-text {
  color: #ffffff;
}
.cid-tstGhe5gjc .name {
  color: #ffffff;
}
.cid-tstGhe5gjc .position {
  color: #ffffff;
}
.cid-tstGi02GCN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tstGi02GCN .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tstGi02GCN .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tstGi02GCN .mbr-section-title {
  color: #ff9966;
}
.cid-tstGi02GCN .mbr-text {
  color: #ffffff;
}
.cid-tstGi02GCN .name {
  color: #ffffff;
}
.cid-tstGi02GCN .position {
  color: #ffffff;
}
.cid-tstGiHVBRy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tstGiHVBRy .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tstGiHVBRy .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tstGiHVBRy .mbr-section-title {
  color: #ff9966;
}
.cid-tstGiHVBRy .mbr-text {
  color: #ffffff;
}
.cid-tstGiHVBRy .name {
  color: #ffffff;
}
.cid-tstGiHVBRy .position {
  color: #ffffff;
}
.cid-tstGjiAuBM {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tstGjiAuBM .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tstGjiAuBM .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tstGjiAuBM .mbr-section-title {
  color: #ff9966;
}
.cid-tstGjiAuBM .mbr-text {
  color: #ffffff;
}
.cid-tstGjiAuBM .name {
  color: #ffffff;
}
.cid-tstGjiAuBM .position {
  color: #ffffff;
}
.cid-so4wuUAY8p {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-so4wuUAY8p .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-so4wuUAY8p .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-so4wuUAY8p .row {
    text-align: center;
  }
  .cid-so4wuUAY8p .row > div {
    margin: auto;
  }
  .cid-so4wuUAY8p .social-row {
    justify-content: center;
  }
}
.cid-so4wuUAY8p .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-so4wuUAY8p .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-so4wuUAY8p .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-so4wuUAY8p .list {
    margin-bottom: 0rem;
  }
}
.cid-so4wuUAY8p .mbr-text {
  color: #ffffff;
}
.cid-so4wuUAY8p .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-so4wuUAY8p .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-so4wuUAY8p div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-so4wuUAY8p .mbr-section-subtitle {
  color: #ffffff;
}
.cid-so4wuUAY8p H5 {
  color: #ffffff;
}
