body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-smcz2GMGsH {
  z-index: 1000;
  width: 100%;
}
.cid-smcz2GMGsH nav.navbar {
  position: fixed;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-smcz2GMGsH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-smcz2GMGsH .dropdown-item:hover,
.cid-smcz2GMGsH .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-smcz2GMGsH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-smcz2GMGsH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-smcz2GMGsH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-smcz2GMGsH .nav-link {
  position: relative;
}
.cid-smcz2GMGsH .container {
  display: flex;
  margin: auto;
}
.cid-smcz2GMGsH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-smcz2GMGsH .dropdown-menu,
.cid-smcz2GMGsH .navbar.opened {
  background: #ffffff !important;
}
.cid-smcz2GMGsH .nav-item:focus,
.cid-smcz2GMGsH .nav-link:focus {
  outline: none;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-smcz2GMGsH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-smcz2GMGsH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-smcz2GMGsH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.4);
}
.cid-smcz2GMGsH .navbar.opened {
  transition: all 0.3s;
}
.cid-smcz2GMGsH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-smcz2GMGsH .navbar .navbar-logo img {
  width: auto;
}
.cid-smcz2GMGsH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-smcz2GMGsH .navbar.collapsed {
  justify-content: center;
}
.cid-smcz2GMGsH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-smcz2GMGsH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-smcz2GMGsH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-smcz2GMGsH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-smcz2GMGsH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-smcz2GMGsH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-smcz2GMGsH .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-smcz2GMGsH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-smcz2GMGsH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-smcz2GMGsH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-smcz2GMGsH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-smcz2GMGsH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-smcz2GMGsH .navbar.navbar-short {
  min-height: 60px;
}
.cid-smcz2GMGsH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-smcz2GMGsH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-smcz2GMGsH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-smcz2GMGsH .dropdown-item.active,
.cid-smcz2GMGsH .dropdown-item:active {
  background-color: transparent;
}
.cid-smcz2GMGsH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-smcz2GMGsH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-smcz2GMGsH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-smcz2GMGsH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-smcz2GMGsH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-smcz2GMGsH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-smcz2GMGsH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-smcz2GMGsH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-smcz2GMGsH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar {
    height: 70px;
  }
  .cid-smcz2GMGsH .navbar.opened {
    height: auto;
  }
  .cid-smcz2GMGsH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVrDJV3Epx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #353535;
}
.cid-tVrDJV3Epx .carousel {
  height: 800px;
}
.cid-tVrDJV3Epx .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tVrDJV3Epx .carousel-item,
.cid-tVrDJV3Epx .carousel-inner {
  height: 100%;
}
.cid-tVrDJV3Epx .carousel-caption {
  bottom: 40px;
}
.cid-tVrDJV3Epx .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tVrDJV3Epx .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tVrDJV3Epx .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tVrDJV3Epx .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tVrDJV3Epx .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tVrDJV3Epx .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tVrDJV3Epx .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tVrDJV3Epx .carousel-control {
  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-tVrDJV3Epx .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tVrDJV3Epx .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tVrDJV3Epx .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tVrDJV3Epx .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tVrDJV3Epx .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-tVrDJV3Epx .carousel-indicators li.active,
.cid-tVrDJV3Epx .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tVrDJV3Epx .carousel-indicators li::after,
.cid-tVrDJV3Epx .carousel-indicators li::before {
  content: none;
}
.cid-tVrDJV3Epx .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tVrDJV3Epx .carousel-indicators {
    display: none !important;
  }
}
.cid-tVrDJV3Epx P {
  color: #232323;
}
.cid-tVrDJV3Epx H5 {
  color: #000000;
}
.cid-smcsfGKc5y {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-smcsfGKc5y img,
.cid-smcsfGKc5y .item-img {
  width: 100%;
}
.cid-smcsfGKc5y .item:focus,
.cid-smcsfGKc5y span:focus {
  outline: none;
}
.cid-smcsfGKc5y .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-smcsfGKc5y .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-smcsfGKc5y .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-smcsfGKc5y .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-smcsfGKc5y .mbr-section-btn {
  margin-top: auto !important;
}
.cid-smcsfGKc5y .mbr-section-title {
  color: #232323;
}
.cid-smcsfGKc5y .mbr-text,
.cid-smcsfGKc5y .mbr-section-btn {
  text-align: left;
}
.cid-smcsfGKc5y .item-title {
  text-align: center;
}
.cid-smcsfGKc5y .item-subtitle {
  text-align: center;
}
.cid-smctUxow9a {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-smctUxow9a [class^="socicon-"]:before,
.cid-smctUxow9a [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-smctUxow9a .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #6592e6;
  border-width: 2px;
  transition: all .3s;
  border-color: #6592e6;
}
.cid-smctUxow9a .btn-social:hover {
  background: #6592e6;
}
.cid-smctUxow9a .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-smcDHYJaFy {
  z-index: 1000;
  width: 100%;
}
.cid-smcDHYJaFy nav.navbar {
  position: fixed;
}
.cid-smcDHYJaFy .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-smcDHYJaFy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-smcDHYJaFy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-smcDHYJaFy .dropdown-item:hover,
.cid-smcDHYJaFy .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-smcDHYJaFy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-smcDHYJaFy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-smcDHYJaFy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-smcDHYJaFy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-smcDHYJaFy .nav-link {
  position: relative;
}
.cid-smcDHYJaFy .container {
  display: flex;
  margin: auto;
}
.cid-smcDHYJaFy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-smcDHYJaFy .dropdown-menu,
.cid-smcDHYJaFy .navbar.opened {
  background: #ffffff !important;
}
.cid-smcDHYJaFy .nav-item:focus,
.cid-smcDHYJaFy .nav-link:focus {
  outline: none;
}
.cid-smcDHYJaFy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-smcDHYJaFy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-smcDHYJaFy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-smcDHYJaFy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-smcDHYJaFy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-smcDHYJaFy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-smcDHYJaFy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.4);
}
.cid-smcDHYJaFy .navbar.opened {
  transition: all 0.3s;
}
.cid-smcDHYJaFy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-smcDHYJaFy .navbar .navbar-logo img {
  width: auto;
}
.cid-smcDHYJaFy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-smcDHYJaFy .navbar.collapsed {
  justify-content: center;
}
.cid-smcDHYJaFy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-smcDHYJaFy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-smcDHYJaFy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-smcDHYJaFy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-smcDHYJaFy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-smcDHYJaFy .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-smcDHYJaFy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-smcDHYJaFy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-smcDHYJaFy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-smcDHYJaFy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-smcDHYJaFy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-smcDHYJaFy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-smcDHYJaFy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-smcDHYJaFy .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-smcDHYJaFy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-smcDHYJaFy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-smcDHYJaFy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-smcDHYJaFy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-smcDHYJaFy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-smcDHYJaFy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-smcDHYJaFy .navbar.navbar-short {
  min-height: 60px;
}
.cid-smcDHYJaFy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-smcDHYJaFy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-smcDHYJaFy .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-smcDHYJaFy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-smcDHYJaFy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-smcDHYJaFy .dropdown-item.active,
.cid-smcDHYJaFy .dropdown-item:active {
  background-color: transparent;
}
.cid-smcDHYJaFy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-smcDHYJaFy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-smcDHYJaFy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-smcDHYJaFy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-smcDHYJaFy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-smcDHYJaFy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-smcDHYJaFy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-smcDHYJaFy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-smcDHYJaFy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-smcDHYJaFy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-smcDHYJaFy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-smcDHYJaFy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-smcDHYJaFy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-smcDHYJaFy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-smcDHYJaFy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-smcDHYJaFy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-smcDHYJaFy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-smcDHYJaFy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-smcDHYJaFy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-smcDHYJaFy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-smcDHYJaFy .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-smcDHYJaFy .navbar {
    height: 70px;
  }
  .cid-smcDHYJaFy .navbar.opened {
    height: auto;
  }
  .cid-smcDHYJaFy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxxMZhkBrQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uxxMZhkBrQ .carousel {
  height: 800px;
}
.cid-uxxMZhkBrQ .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uxxMZhkBrQ .carousel-item,
.cid-uxxMZhkBrQ .carousel-inner {
  height: 100%;
}
.cid-uxxMZhkBrQ .carousel-caption {
  bottom: 40px;
}
.cid-uxxMZhkBrQ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uxxMZhkBrQ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uxxMZhkBrQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uxxMZhkBrQ .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uxxMZhkBrQ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uxxMZhkBrQ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uxxMZhkBrQ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uxxMZhkBrQ .carousel-control {
  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-uxxMZhkBrQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uxxMZhkBrQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uxxMZhkBrQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uxxMZhkBrQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uxxMZhkBrQ .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-uxxMZhkBrQ .carousel-indicators li.active,
.cid-uxxMZhkBrQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uxxMZhkBrQ .carousel-indicators li::after,
.cid-uxxMZhkBrQ .carousel-indicators li::before {
  content: none;
}
.cid-uxxMZhkBrQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uxxMZhkBrQ .carousel-indicators {
    display: none !important;
  }
}
.cid-smcDHVattI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-smcDHVattI img,
.cid-smcDHVattI .item-img {
  width: 100%;
}
.cid-smcDHVattI .item:focus,
.cid-smcDHVattI span:focus {
  outline: none;
}
.cid-smcDHVattI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-smcDHVattI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-smcDHVattI .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-smcDHVattI .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-smcDHVattI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-smcDHVattI .mbr-section-title {
  color: #232323;
}
.cid-smcDHVattI .mbr-text,
.cid-smcDHVattI .mbr-section-btn {
  text-align: left;
}
.cid-smcDHVattI .item-title {
  text-align: center;
}
.cid-smcDHVattI .item-subtitle {
  text-align: center;
}
.cid-smcDHXyIfM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-smcDHXyIfM [class^="socicon-"]:before,
.cid-smcDHXyIfM [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-smcDHXyIfM .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #6592e6;
  border-width: 2px;
  transition: all .3s;
  border-color: #6592e6;
}
.cid-smcDHXyIfM .btn-social:hover {
  background: #6592e6;
}
.cid-smcDHXyIfM .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-smcDHXyIfM .mbr-section-title,
.cid-smcDHXyIfM .mbr-social-likes {
  color: #ffe885;
}
.cid-smcz2GMGsH {
  z-index: 1000;
  width: 100%;
}
.cid-smcz2GMGsH nav.navbar {
  position: fixed;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-smcz2GMGsH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-smcz2GMGsH .dropdown-item:hover,
.cid-smcz2GMGsH .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-smcz2GMGsH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-smcz2GMGsH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-smcz2GMGsH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-smcz2GMGsH .nav-link {
  position: relative;
}
.cid-smcz2GMGsH .container {
  display: flex;
  margin: auto;
}
.cid-smcz2GMGsH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-smcz2GMGsH .dropdown-menu,
.cid-smcz2GMGsH .navbar.opened {
  background: #ffffff !important;
}
.cid-smcz2GMGsH .nav-item:focus,
.cid-smcz2GMGsH .nav-link:focus {
  outline: none;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-smcz2GMGsH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-smcz2GMGsH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-smcz2GMGsH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.4);
}
.cid-smcz2GMGsH .navbar.opened {
  transition: all 0.3s;
}
.cid-smcz2GMGsH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-smcz2GMGsH .navbar .navbar-logo img {
  width: auto;
}
.cid-smcz2GMGsH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-smcz2GMGsH .navbar.collapsed {
  justify-content: center;
}
.cid-smcz2GMGsH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-smcz2GMGsH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-smcz2GMGsH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-smcz2GMGsH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-smcz2GMGsH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-smcz2GMGsH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-smcz2GMGsH .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-smcz2GMGsH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-smcz2GMGsH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-smcz2GMGsH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-smcz2GMGsH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-smcz2GMGsH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-smcz2GMGsH .navbar.navbar-short {
  min-height: 60px;
}
.cid-smcz2GMGsH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-smcz2GMGsH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-smcz2GMGsH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-smcz2GMGsH .dropdown-item.active,
.cid-smcz2GMGsH .dropdown-item:active {
  background-color: transparent;
}
.cid-smcz2GMGsH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-smcz2GMGsH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-smcz2GMGsH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-smcz2GMGsH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-smcz2GMGsH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-smcz2GMGsH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-smcz2GMGsH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-smcz2GMGsH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-smcz2GMGsH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar {
    height: 70px;
  }
  .cid-smcz2GMGsH .navbar.opened {
    height: auto;
  }
  .cid-smcz2GMGsH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-smhyYRQ4kM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-smhyYRQ4kM .mbr-text {
  color: #bbbbbb;
}
.cid-smhBWArWVl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
@media (max-width: 991px) {
  .cid-smhBWArWVl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-smhBWArWVl .row {
  flex-direction: row-reverse;
}
.cid-smhBWArWVl img {
  width: 100%;
}
.cid-smhDB8bIgp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #353535;
}
@media (max-width: 767px) {
  .cid-smhDB8bIgp .row {
    flex-direction: column-reverse;
  }
  .cid-smhDB8bIgp .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-smhDB8bIgp .google-map {
  height: 100%;
  position: relative;
}
.cid-smhDB8bIgp .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-smhDB8bIgp .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-smhDB8bIgp .google-map[data-state] {
  background: #e9e5dc;
}
.cid-smhDB8bIgp .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-smhDB8bIgp .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-smhDB8bIgp .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-smhDB8bIgp .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-smhDB8bIgp .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-smhDB8bIgp .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-smhDB8bIgp .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-smcz2GMGsH {
  z-index: 1000;
  width: 100%;
}
.cid-smcz2GMGsH nav.navbar {
  position: fixed;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-smcz2GMGsH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-smcz2GMGsH .dropdown-item:hover,
.cid-smcz2GMGsH .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-smcz2GMGsH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-smcz2GMGsH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-smcz2GMGsH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-smcz2GMGsH .nav-link {
  position: relative;
}
.cid-smcz2GMGsH .container {
  display: flex;
  margin: auto;
}
.cid-smcz2GMGsH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-smcz2GMGsH .dropdown-menu,
.cid-smcz2GMGsH .navbar.opened {
  background: #ffffff !important;
}
.cid-smcz2GMGsH .nav-item:focus,
.cid-smcz2GMGsH .nav-link:focus {
  outline: none;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-smcz2GMGsH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-smcz2GMGsH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-smcz2GMGsH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.4);
}
.cid-smcz2GMGsH .navbar.opened {
  transition: all 0.3s;
}
.cid-smcz2GMGsH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-smcz2GMGsH .navbar .navbar-logo img {
  width: auto;
}
.cid-smcz2GMGsH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-smcz2GMGsH .navbar.collapsed {
  justify-content: center;
}
.cid-smcz2GMGsH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-smcz2GMGsH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-smcz2GMGsH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-smcz2GMGsH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-smcz2GMGsH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-smcz2GMGsH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-smcz2GMGsH .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-smcz2GMGsH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-smcz2GMGsH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-smcz2GMGsH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-smcz2GMGsH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-smcz2GMGsH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-smcz2GMGsH .navbar.navbar-short {
  min-height: 60px;
}
.cid-smcz2GMGsH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-smcz2GMGsH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-smcz2GMGsH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-smcz2GMGsH .dropdown-item.active,
.cid-smcz2GMGsH .dropdown-item:active {
  background-color: transparent;
}
.cid-smcz2GMGsH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-smcz2GMGsH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-smcz2GMGsH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-smcz2GMGsH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-smcz2GMGsH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-smcz2GMGsH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-smcz2GMGsH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-smcz2GMGsH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-smcz2GMGsH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar {
    height: 70px;
  }
  .cid-smcz2GMGsH .navbar.opened {
    height: auto;
  }
  .cid-smcz2GMGsH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-smhuCxzuq1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-smhuCxzuq1 img,
.cid-smhuCxzuq1 .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-smhuCxzuq1 .item:focus,
.cid-smhuCxzuq1 span:focus {
  outline: none;
}
.cid-smhuCxzuq1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-smhuCxzuq1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-smhuCxzuq1 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-smhuCxzuq1 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-smhuCxzuq1 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-smhuCxzuq1 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-smhuCxzuq1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-smhuCxzuq1 .mbr-section-title {
  color: #ffe885;
}
.cid-smhuCxzuq1 .mbr-text,
.cid-smhuCxzuq1 .mbr-section-btn {
  text-align: center;
}
.cid-smhuCxzuq1 .item-title {
  text-align: center;
}
.cid-smhuCxzuq1 .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-smhx9ethO7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
@media (max-width: 991px) {
  .cid-smhx9ethO7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-smhx9ethO7 .row {
  flex-direction: row-reverse;
}
.cid-smhx9ethO7 img {
  width: 100%;
}
.cid-smhxyqso8j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #353535;
}
@media (max-width: 767px) {
  .cid-smhxyqso8j .row {
    flex-direction: column-reverse;
  }
  .cid-smhxyqso8j .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-smhxyqso8j .google-map {
  height: 100%;
  position: relative;
}
.cid-smhxyqso8j .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-smhxyqso8j .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-smhxyqso8j .google-map[data-state] {
  background: #e9e5dc;
}
.cid-smhxyqso8j .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-smhxyqso8j .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-smhxyqso8j .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-smhxyqso8j .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-smhxyqso8j .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-smhxyqso8j .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-smhxyqso8j .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-smcz2GMGsH {
  z-index: 1000;
  width: 100%;
}
.cid-smcz2GMGsH nav.navbar {
  position: fixed;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-smcz2GMGsH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-smcz2GMGsH .dropdown-item:hover,
.cid-smcz2GMGsH .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-smcz2GMGsH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-smcz2GMGsH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-smcz2GMGsH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-smcz2GMGsH .nav-link {
  position: relative;
}
.cid-smcz2GMGsH .container {
  display: flex;
  margin: auto;
}
.cid-smcz2GMGsH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-smcz2GMGsH .dropdown-menu,
.cid-smcz2GMGsH .navbar.opened {
  background: #ffffff !important;
}
.cid-smcz2GMGsH .nav-item:focus,
.cid-smcz2GMGsH .nav-link:focus {
  outline: none;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-smcz2GMGsH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-smcz2GMGsH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-smcz2GMGsH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.4);
}
.cid-smcz2GMGsH .navbar.opened {
  transition: all 0.3s;
}
.cid-smcz2GMGsH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-smcz2GMGsH .navbar .navbar-logo img {
  width: auto;
}
.cid-smcz2GMGsH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-smcz2GMGsH .navbar.collapsed {
  justify-content: center;
}
.cid-smcz2GMGsH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-smcz2GMGsH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-smcz2GMGsH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-smcz2GMGsH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-smcz2GMGsH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-smcz2GMGsH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-smcz2GMGsH .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-smcz2GMGsH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-smcz2GMGsH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-smcz2GMGsH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-smcz2GMGsH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-smcz2GMGsH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-smcz2GMGsH .navbar.navbar-short {
  min-height: 60px;
}
.cid-smcz2GMGsH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-smcz2GMGsH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-smcz2GMGsH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-smcz2GMGsH .dropdown-item.active,
.cid-smcz2GMGsH .dropdown-item:active {
  background-color: transparent;
}
.cid-smcz2GMGsH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-smcz2GMGsH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-smcz2GMGsH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-smcz2GMGsH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-smcz2GMGsH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-smcz2GMGsH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-smcz2GMGsH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-smcz2GMGsH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-smcz2GMGsH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar {
    height: 70px;
  }
  .cid-smcz2GMGsH .navbar.opened {
    height: auto;
  }
  .cid-smcz2GMGsH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-smhkBmHr5X {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
@media (min-width: 992px) {
  .cid-smhkBmHr5X .carousel {
    min-height: 800px;
  }
  .cid-smhkBmHr5X .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-smhkBmHr5X .carousel {
    min-height: 520px;
  }
  .cid-smhkBmHr5X .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-smhkBmHr5X .carousel {
    min-height: 440px;
  }
  .cid-smhkBmHr5X .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-smhkBmHr5X .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-smhkBmHr5X .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-smhkBmHr5X .carousel,
.cid-smhkBmHr5X .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-smhkBmHr5X .item-wrapper {
  width: 100%;
}
.cid-smhkBmHr5X .carousel-caption {
  bottom: 40px;
}
.cid-smhkBmHr5X .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-smhkBmHr5X .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-smhkBmHr5X .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-smhkBmHr5X .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-smhkBmHr5X .carousel-control {
  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-smhkBmHr5X .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smhkBmHr5X .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-smhkBmHr5X .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-smhkBmHr5X .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-smhkBmHr5X .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-smhkBmHr5X .carousel-indicators li.active,
.cid-smhkBmHr5X .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-smhkBmHr5X .carousel-indicators li::after,
.cid-smhkBmHr5X .carousel-indicators li::before {
  content: none;
}
.cid-smhkBmHr5X .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-smhkBmHr5X .carousel-indicators {
    display: none !important;
  }
}
.cid-smcz2GMGsH {
  z-index: 1000;
  width: 100%;
}
.cid-smcz2GMGsH nav.navbar {
  position: fixed;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-smcz2GMGsH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-smcz2GMGsH .dropdown-item:hover,
.cid-smcz2GMGsH .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-smcz2GMGsH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-smcz2GMGsH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-smcz2GMGsH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-smcz2GMGsH .nav-link {
  position: relative;
}
.cid-smcz2GMGsH .container {
  display: flex;
  margin: auto;
}
.cid-smcz2GMGsH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-smcz2GMGsH .dropdown-menu,
.cid-smcz2GMGsH .navbar.opened {
  background: #ffffff !important;
}
.cid-smcz2GMGsH .nav-item:focus,
.cid-smcz2GMGsH .nav-link:focus {
  outline: none;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-smcz2GMGsH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-smcz2GMGsH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-smcz2GMGsH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.4);
}
.cid-smcz2GMGsH .navbar.opened {
  transition: all 0.3s;
}
.cid-smcz2GMGsH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-smcz2GMGsH .navbar .navbar-logo img {
  width: auto;
}
.cid-smcz2GMGsH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-smcz2GMGsH .navbar.collapsed {
  justify-content: center;
}
.cid-smcz2GMGsH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-smcz2GMGsH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-smcz2GMGsH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-smcz2GMGsH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-smcz2GMGsH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-smcz2GMGsH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-smcz2GMGsH .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-smcz2GMGsH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-smcz2GMGsH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-smcz2GMGsH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-smcz2GMGsH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-smcz2GMGsH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-smcz2GMGsH .navbar.navbar-short {
  min-height: 60px;
}
.cid-smcz2GMGsH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-smcz2GMGsH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-smcz2GMGsH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-smcz2GMGsH .dropdown-item.active,
.cid-smcz2GMGsH .dropdown-item:active {
  background-color: transparent;
}
.cid-smcz2GMGsH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-smcz2GMGsH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-smcz2GMGsH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-smcz2GMGsH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-smcz2GMGsH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-smcz2GMGsH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-smcz2GMGsH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-smcz2GMGsH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-smcz2GMGsH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar {
    height: 70px;
  }
  .cid-smcz2GMGsH .navbar.opened {
    height: auto;
  }
  .cid-smcz2GMGsH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-smgEZ6JPUn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-smgEZ6JPUn img,
.cid-smgEZ6JPUn .item-img {
  width: 100%;
}
.cid-smgEZ6JPUn .item:focus,
.cid-smgEZ6JPUn span:focus {
  outline: none;
}
.cid-smgEZ6JPUn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-smgEZ6JPUn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-smgEZ6JPUn .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-smgEZ6JPUn .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-smgEZ6JPUn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-smgEZ6JPUn .mbr-section-title {
  color: #ffe885;
}
.cid-smgEZ6JPUn .mbr-text,
.cid-smgEZ6JPUn .mbr-section-btn {
  text-align: center;
}
.cid-smgEZ6JPUn .item-title {
  text-align: center;
}
.cid-smgEZ6JPUn .item-subtitle {
  text-align: center;
}
.cid-t1QLhLLelf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-t1QLhLLelf img,
.cid-t1QLhLLelf .item-img {
  width: 100%;
}
.cid-t1QLhLLelf .item:focus,
.cid-t1QLhLLelf span:focus {
  outline: none;
}
.cid-t1QLhLLelf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t1QLhLLelf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t1QLhLLelf .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t1QLhLLelf .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-t1QLhLLelf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t1QLhLLelf .mbr-section-title {
  color: #ffe885;
}
.cid-t1QLhLLelf .mbr-text,
.cid-t1QLhLLelf .mbr-section-btn {
  text-align: left;
}
.cid-t1QLhLLelf .item-title {
  text-align: left;
}
.cid-t1QLhLLelf .item-subtitle {
  text-align: center;
}
.cid-t1QLhLLelf .mbr-section-subtitle {
  color: #ffe885;
}
.cid-t1QNsEXGjr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-t1QNsEXGjr img,
.cid-t1QNsEXGjr .item-img {
  width: 100%;
}
.cid-t1QNsEXGjr .item:focus,
.cid-t1QNsEXGjr span:focus {
  outline: none;
}
.cid-t1QNsEXGjr .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t1QNsEXGjr .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t1QNsEXGjr .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t1QNsEXGjr .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-t1QNsEXGjr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t1QNsEXGjr .mbr-section-title {
  color: #ffe885;
}
.cid-t1QNsEXGjr .mbr-text,
.cid-t1QNsEXGjr .mbr-section-btn {
  text-align: left;
}
.cid-t1QNsEXGjr .item-title {
  text-align: left;
}
.cid-t1QNsEXGjr .item-subtitle {
  text-align: center;
}
.cid-t1QNsEXGjr .mbr-section-subtitle {
  color: #ffe885;
}
.cid-tjJ0Jq3LvN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-tjJ0Jq3LvN .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tjJ0Jq3LvN .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tjJ0Jq3LvN .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tjJ0Jq3LvN .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tjJ0Jq3LvN .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-tjJ0Jq3LvN .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tjJ0Jq3LvN .carousel-control,
.cid-tjJ0Jq3LvN .close {
  background: #1b1b1b;
}
.cid-tjJ0Jq3LvN .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tjJ0Jq3LvN .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tjJ0Jq3LvN .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tjJ0Jq3LvN .carousel-control-next span {
  margin-left: 5px;
}
.cid-tjJ0Jq3LvN .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-tjJ0Jq3LvN .close::before {
  content: '\e91a';
}
.cid-tjJ0Jq3LvN .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tjJ0Jq3LvN .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-tjJ0Jq3LvN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tjJ0Jq3LvN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tjJ0Jq3LvN .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tjJ0Jq3LvN .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tjJ0Jq3LvN .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-tjJ0Jq3LvN .carousel-indicators li.active,
.cid-tjJ0Jq3LvN .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tjJ0Jq3LvN .carousel-indicators li::after,
.cid-tjJ0Jq3LvN .carousel-indicators li::before {
  content: none;
}
.cid-tjJ0Jq3LvN .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tjJ0Jq3LvN .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tjJ0Jq3LvN .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tjJ0Jq3LvN .carousel-indicators {
    display: none;
  }
}
.cid-tjJ0Jq3LvN .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tjJ0Jq3LvN .carousel-inner > .active {
  display: block;
}
.cid-tjJ0Jq3LvN .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tjJ0Jq3LvN .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tjJ0Jq3LvN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tjJ0Jq3LvN .carousel-control,
  .cid-tjJ0Jq3LvN .carousel-indicators,
  .cid-tjJ0Jq3LvN .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tjJ0Jq3LvN .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tjJ0Jq3LvN .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tjJ0Jq3LvN .carousel-indicators .active,
.cid-tjJ0Jq3LvN .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tjJ0Jq3LvN .carousel-indicators .active {
  background: #fff;
}
.cid-tjJ0Jq3LvN .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tjJ0Jq3LvN .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tjJ0Jq3LvN .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tjJ0Jq3LvN .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tjJ0Jq3LvN .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tjJ0Jq3LvN .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tjJ0Jq3LvN .carousel {
  width: 100%;
}
.cid-tjJ0Jq3LvN .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tjJ0Jq3LvN .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tjJ0Jq3LvN .modal.fade .modal-dialog,
.cid-tjJ0Jq3LvN .modal.in .modal-dialog {
  transform: none;
}
.cid-tjJ0Jq3LvN .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tjJ0Jq3LvN H6 {
  text-align: center;
}
.cid-tjJ0Jq3LvN H3 {
  color: #ffe885;
}
.cid-tjJ0Jq3LvN H4 {
  color: #ffe885;
}
.cid-tjJ2iNpFcS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tjJ2iNpFcS ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tjJ2iNpFcS li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tjJ2iNpFcS ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tjJ2iNpFcS H3 {
  color: #bbbbbb;
}
.cid-uYAdA4G3DY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-uYAdA4G3DY img,
.cid-uYAdA4G3DY .item-img {
  width: 100%;
}
.cid-uYAdA4G3DY .item:focus,
.cid-uYAdA4G3DY span:focus {
  outline: none;
}
.cid-uYAdA4G3DY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uYAdA4G3DY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYAdA4G3DY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYAdA4G3DY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYAdA4G3DY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYAdA4G3DY .mbr-section-title {
  color: #ffe161;
}
.cid-uYAdA4G3DY .mbr-text,
.cid-uYAdA4G3DY .mbr-section-btn {
  text-align: left;
}
.cid-uYAdA4G3DY .item-title {
  text-align: left;
}
.cid-uYAdA4G3DY .item-subtitle {
  text-align: center;
}
.cid-smgUFoIKkC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-smgUFoIKkC .mbr-text {
  text-align: center;
  color: #bbbbbb;
}
.cid-smgVnSK5ZA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
@media (max-width: 991px) {
  .cid-smgVnSK5ZA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-smgVnSK5ZA .row {
  flex-direction: row-reverse;
}
.cid-smgVnSK5ZA img {
  width: 100%;
}
.cid-smhFTlMSd8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-smhFTlMSd8 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-smhFTlMSd8 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-smhFTlMSd8 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-smhFTlMSd8 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-smhFTlMSd8 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-smcz2GMGsH {
  z-index: 1000;
  width: 100%;
}
.cid-smcz2GMGsH nav.navbar {
  position: fixed;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-smcz2GMGsH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-smcz2GMGsH .dropdown-item:hover,
.cid-smcz2GMGsH .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-smcz2GMGsH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-smcz2GMGsH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-smcz2GMGsH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-smcz2GMGsH .nav-link {
  position: relative;
}
.cid-smcz2GMGsH .container {
  display: flex;
  margin: auto;
}
.cid-smcz2GMGsH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-smcz2GMGsH .dropdown-menu,
.cid-smcz2GMGsH .navbar.opened {
  background: #ffffff !important;
}
.cid-smcz2GMGsH .nav-item:focus,
.cid-smcz2GMGsH .nav-link:focus {
  outline: none;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-smcz2GMGsH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-smcz2GMGsH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-smcz2GMGsH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.4);
}
.cid-smcz2GMGsH .navbar.opened {
  transition: all 0.3s;
}
.cid-smcz2GMGsH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-smcz2GMGsH .navbar .navbar-logo img {
  width: auto;
}
.cid-smcz2GMGsH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-smcz2GMGsH .navbar.collapsed {
  justify-content: center;
}
.cid-smcz2GMGsH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-smcz2GMGsH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-smcz2GMGsH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-smcz2GMGsH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-smcz2GMGsH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-smcz2GMGsH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-smcz2GMGsH .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-smcz2GMGsH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-smcz2GMGsH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-smcz2GMGsH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-smcz2GMGsH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-smcz2GMGsH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-smcz2GMGsH .navbar.navbar-short {
  min-height: 60px;
}
.cid-smcz2GMGsH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-smcz2GMGsH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-smcz2GMGsH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-smcz2GMGsH .dropdown-item.active,
.cid-smcz2GMGsH .dropdown-item:active {
  background-color: transparent;
}
.cid-smcz2GMGsH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-smcz2GMGsH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-smcz2GMGsH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-smcz2GMGsH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-smcz2GMGsH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-smcz2GMGsH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-smcz2GMGsH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-smcz2GMGsH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-smcz2GMGsH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar {
    height: 70px;
  }
  .cid-smcz2GMGsH .navbar.opened {
    height: auto;
  }
  .cid-smcz2GMGsH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-smcP2K8rEy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
@media (max-width: 767px) {
  .cid-smcP2K8rEy .row {
    flex-direction: column-reverse;
  }
  .cid-smcP2K8rEy .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-smcP2K8rEy .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-smcP2K8rEy .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-smcP2K8rEy .media-content,
.cid-smcP2K8rEy .mbr-figure {
  align-self: center;
}
.cid-smcP2K8rEy .mbr-figure iframe {
  width: 100%;
}
.cid-smcP2K8rEy .mbr-text,
.cid-smcP2K8rEy .mbr-section-btn {
  color: #bbbbbb;
}
.cid-smcPXAIEIa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-smcPXAIEIa .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-smcPXAIEIa .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-smcPXAIEIa .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-smcPXAIEIa .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-smcPXAIEIa .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-smcQWQYKje {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #353535;
}
@media (max-width: 767px) {
  .cid-smcQWQYKje .row {
    flex-direction: column-reverse;
  }
  .cid-smcQWQYKje .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-smcQWQYKje .google-map {
  height: 100%;
  position: relative;
}
.cid-smcQWQYKje .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-smcQWQYKje .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-smcQWQYKje .google-map[data-state] {
  background: #e9e5dc;
}
.cid-smcQWQYKje .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-smcQWQYKje .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-smcQWQYKje .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-smcQWQYKje .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-smcQWQYKje .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-smcQWQYKje .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-smcQWQYKje .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-smcz2GMGsH {
  z-index: 1000;
  width: 100%;
}
.cid-smcz2GMGsH nav.navbar {
  position: fixed;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-smcz2GMGsH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-smcz2GMGsH .dropdown-item:hover,
.cid-smcz2GMGsH .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-smcz2GMGsH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-smcz2GMGsH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-smcz2GMGsH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-smcz2GMGsH .nav-link {
  position: relative;
}
.cid-smcz2GMGsH .container {
  display: flex;
  margin: auto;
}
.cid-smcz2GMGsH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-smcz2GMGsH .dropdown-menu,
.cid-smcz2GMGsH .navbar.opened {
  background: #ffffff !important;
}
.cid-smcz2GMGsH .nav-item:focus,
.cid-smcz2GMGsH .nav-link:focus {
  outline: none;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-smcz2GMGsH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-smcz2GMGsH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-smcz2GMGsH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.4);
}
.cid-smcz2GMGsH .navbar.opened {
  transition: all 0.3s;
}
.cid-smcz2GMGsH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-smcz2GMGsH .navbar .navbar-logo img {
  width: auto;
}
.cid-smcz2GMGsH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-smcz2GMGsH .navbar.collapsed {
  justify-content: center;
}
.cid-smcz2GMGsH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-smcz2GMGsH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-smcz2GMGsH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-smcz2GMGsH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-smcz2GMGsH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-smcz2GMGsH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-smcz2GMGsH .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-smcz2GMGsH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-smcz2GMGsH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-smcz2GMGsH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-smcz2GMGsH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-smcz2GMGsH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-smcz2GMGsH .navbar.navbar-short {
  min-height: 60px;
}
.cid-smcz2GMGsH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-smcz2GMGsH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-smcz2GMGsH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-smcz2GMGsH .dropdown-item.active,
.cid-smcz2GMGsH .dropdown-item:active {
  background-color: transparent;
}
.cid-smcz2GMGsH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-smcz2GMGsH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-smcz2GMGsH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-smcz2GMGsH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-smcz2GMGsH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-smcz2GMGsH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-smcz2GMGsH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-smcz2GMGsH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-smcz2GMGsH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar {
    height: 70px;
  }
  .cid-smcz2GMGsH .navbar.opened {
    height: auto;
  }
  .cid-smcz2GMGsH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-smdw3F9O6L {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-smdw3F9O6L .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-smdw3F9O6L .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-smdw3F9O6L .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-smdw3F9O6L .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-smdw3F9O6L .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-smdw3F9O6L .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-smdw3F9O6L .carousel-control,
.cid-smdw3F9O6L .close {
  background: #1b1b1b;
}
.cid-smdw3F9O6L .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-smdw3F9O6L .carousel-control-prev span {
  margin-right: 5px;
}
.cid-smdw3F9O6L .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-smdw3F9O6L .carousel-control-next span {
  margin-left: 5px;
}
.cid-smdw3F9O6L .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-smdw3F9O6L .close::before {
  content: '\e91a';
}
.cid-smdw3F9O6L .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-smdw3F9O6L .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-smdw3F9O6L .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smdw3F9O6L .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-smdw3F9O6L .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-smdw3F9O6L .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-smdw3F9O6L .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-smdw3F9O6L .carousel-indicators li.active,
.cid-smdw3F9O6L .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-smdw3F9O6L .carousel-indicators li::after,
.cid-smdw3F9O6L .carousel-indicators li::before {
  content: none;
}
.cid-smdw3F9O6L .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-smdw3F9O6L .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-smdw3F9O6L .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-smdw3F9O6L .carousel-indicators {
    display: none;
  }
}
.cid-smdw3F9O6L .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-smdw3F9O6L .carousel-inner > .active {
  display: block;
}
.cid-smdw3F9O6L .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smdw3F9O6L .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smdw3F9O6L .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-smdw3F9O6L .carousel-control,
  .cid-smdw3F9O6L .carousel-indicators,
  .cid-smdw3F9O6L .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-smdw3F9O6L .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-smdw3F9O6L .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-smdw3F9O6L .carousel-indicators .active,
.cid-smdw3F9O6L .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-smdw3F9O6L .carousel-indicators .active {
  background: #fff;
}
.cid-smdw3F9O6L .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-smdw3F9O6L .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-smdw3F9O6L .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-smdw3F9O6L .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-smdw3F9O6L .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-smdw3F9O6L .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-smdw3F9O6L .carousel {
  width: 100%;
}
.cid-smdw3F9O6L .modal-backdrop.in {
  opacity: 0.8;
}
.cid-smdw3F9O6L .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-smdw3F9O6L .modal.fade .modal-dialog,
.cid-smdw3F9O6L .modal.in .modal-dialog {
  transform: none;
}
.cid-smdw3F9O6L .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-smdw3F9O6L H6 {
  text-align: center;
}
.cid-smdw3F9O6L H3 {
  color: #ffe885;
}
.cid-smdyeZRWJ6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-smdyeZRWJ6 img,
.cid-smdyeZRWJ6 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-smdyeZRWJ6 .item:focus,
.cid-smdyeZRWJ6 span:focus {
  outline: none;
}
.cid-smdyeZRWJ6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-smdyeZRWJ6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-smdyeZRWJ6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-smdyeZRWJ6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-smdyeZRWJ6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-smdyeZRWJ6 .mbr-section-title {
  color: #ffe885;
}
.cid-smdzDjdmml {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-smdzDjdmml .card-wrapper {
  background-color: #bbbbbb;
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #bbbbbb;
  transition: all 0.3s;
  padding: 2rem;
  padding-top: 3rem;
}
.cid-smdzDjdmml .mbr-section-title,
.cid-smdzDjdmml .mbr-section-subtitle {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-smdzDjdmml .card-wrapper {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-smdzDjdmml .card-wrapper {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-smdzDjdmml .mbr-section-title {
  color: #ffe885;
}
.cid-smdNddNTbn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-smdNddNTbn .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-smdNddNTbn form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-smdNddNTbn form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-smdNddNTbn form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-smcz2GMGsH {
  z-index: 1000;
  width: 100%;
}
.cid-smcz2GMGsH nav.navbar {
  position: fixed;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-smcz2GMGsH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-smcz2GMGsH .dropdown-item:hover,
.cid-smcz2GMGsH .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-smcz2GMGsH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-smcz2GMGsH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-smcz2GMGsH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-smcz2GMGsH .nav-link {
  position: relative;
}
.cid-smcz2GMGsH .container {
  display: flex;
  margin: auto;
}
.cid-smcz2GMGsH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-smcz2GMGsH .dropdown-menu,
.cid-smcz2GMGsH .navbar.opened {
  background: #ffffff !important;
}
.cid-smcz2GMGsH .nav-item:focus,
.cid-smcz2GMGsH .nav-link:focus {
  outline: none;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-smcz2GMGsH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-smcz2GMGsH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-smcz2GMGsH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.4);
}
.cid-smcz2GMGsH .navbar.opened {
  transition: all 0.3s;
}
.cid-smcz2GMGsH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-smcz2GMGsH .navbar .navbar-logo img {
  width: auto;
}
.cid-smcz2GMGsH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-smcz2GMGsH .navbar.collapsed {
  justify-content: center;
}
.cid-smcz2GMGsH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-smcz2GMGsH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-smcz2GMGsH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-smcz2GMGsH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-smcz2GMGsH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-smcz2GMGsH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-smcz2GMGsH .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-smcz2GMGsH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-smcz2GMGsH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-smcz2GMGsH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-smcz2GMGsH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-smcz2GMGsH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-smcz2GMGsH .navbar.navbar-short {
  min-height: 60px;
}
.cid-smcz2GMGsH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-smcz2GMGsH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-smcz2GMGsH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-smcz2GMGsH .dropdown-item.active,
.cid-smcz2GMGsH .dropdown-item:active {
  background-color: transparent;
}
.cid-smcz2GMGsH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-smcz2GMGsH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-smcz2GMGsH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-smcz2GMGsH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-smcz2GMGsH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-smcz2GMGsH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-smcz2GMGsH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-smcz2GMGsH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-smcz2GMGsH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar {
    height: 70px;
  }
  .cid-smcz2GMGsH .navbar.opened {
    height: auto;
  }
  .cid-smcz2GMGsH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-smgZ8J0W2I {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-smgZ8J0W2I .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-smgZ8J0W2I .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-smgZ8J0W2I .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-smgZ8J0W2I .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-smgZ8J0W2I .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-smgZ8J0W2I .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-smgZ8J0W2I .carousel-control,
.cid-smgZ8J0W2I .close {
  background: #1b1b1b;
}
.cid-smgZ8J0W2I .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-smgZ8J0W2I .carousel-control-prev span {
  margin-right: 5px;
}
.cid-smgZ8J0W2I .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-smgZ8J0W2I .carousel-control-next span {
  margin-left: 5px;
}
.cid-smgZ8J0W2I .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-smgZ8J0W2I .close::before {
  content: '\e91a';
}
.cid-smgZ8J0W2I .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-smgZ8J0W2I .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-smgZ8J0W2I .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smgZ8J0W2I .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-smgZ8J0W2I .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-smgZ8J0W2I .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-smgZ8J0W2I .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-smgZ8J0W2I .carousel-indicators li.active,
.cid-smgZ8J0W2I .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-smgZ8J0W2I .carousel-indicators li::after,
.cid-smgZ8J0W2I .carousel-indicators li::before {
  content: none;
}
.cid-smgZ8J0W2I .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-smgZ8J0W2I .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-smgZ8J0W2I .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-smgZ8J0W2I .carousel-indicators {
    display: none;
  }
}
.cid-smgZ8J0W2I .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-smgZ8J0W2I .carousel-inner > .active {
  display: block;
}
.cid-smgZ8J0W2I .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smgZ8J0W2I .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smgZ8J0W2I .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-smgZ8J0W2I .carousel-control,
  .cid-smgZ8J0W2I .carousel-indicators,
  .cid-smgZ8J0W2I .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-smgZ8J0W2I .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-smgZ8J0W2I .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-smgZ8J0W2I .carousel-indicators .active,
.cid-smgZ8J0W2I .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-smgZ8J0W2I .carousel-indicators .active {
  background: #fff;
}
.cid-smgZ8J0W2I .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-smgZ8J0W2I .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-smgZ8J0W2I .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-smgZ8J0W2I .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-smgZ8J0W2I .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-smgZ8J0W2I .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-smgZ8J0W2I .carousel {
  width: 100%;
}
.cid-smgZ8J0W2I .modal-backdrop.in {
  opacity: 0.8;
}
.cid-smgZ8J0W2I .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-smgZ8J0W2I .modal.fade .modal-dialog,
.cid-smgZ8J0W2I .modal.in .modal-dialog {
  transform: none;
}
.cid-smgZ8J0W2I .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-smgZ8J0W2I H6 {
  text-align: center;
}
.cid-smgZ8J0W2I H3 {
  color: #ffe885;
}
.cid-smh0kAYy6F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-smh0kAYy6F .mbr-section-subtitle {
  text-align: center;
  color: #ffe885;
}
.cid-smh1VWsyfQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-smh1VWsyfQ .mbr-text {
  color: #bbbbbb;
}
.cid-smh1VWsyfQ .mbr-section-subtitle {
  color: #ffe885;
}
.cid-smh3ctgWaW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-smh3ctgWaW .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-smh3spckOb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-smh3spckOb .mbr-section-subtitle {
  color: #ffe885;
}
.cid-smh3spckOb .mbr-text {
  color: #bbbbbb;
}
.cid-smh5frTjko {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-smh5frTjko .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-smh5zzoPsR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-smh5zzoPsR .mbr-text {
  color: #bbbbbb;
}
.cid-smh5zzoPsR .mbr-section-subtitle {
  color: #ffe885;
}
.cid-smhaJvQSR8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-smhaJvQSR8 .video-wrapper iframe {
  width: 100%;
}
.cid-smhaJvQSR8 .mbr-section-title,
.cid-smhaJvQSR8 .mbr-section-subtitle,
.cid-smhaJvQSR8 .mbr-text {
  text-align: center;
}
.cid-smhaJvQSR8 .mbr-section-title {
  color: #ffe885;
}
.cid-smhaJvQSR8 .mbr-section-subtitle {
  color: #ffe885;
}
.cid-smhca71Ph8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-smhca71Ph8 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-smhca71Ph8 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-smhca71Ph8 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-smhca71Ph8 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-smhca71Ph8 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-smcz2GMGsH {
  z-index: 1000;
  width: 100%;
}
.cid-smcz2GMGsH nav.navbar {
  position: fixed;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-smcz2GMGsH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-smcz2GMGsH .dropdown-item:hover,
.cid-smcz2GMGsH .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-smcz2GMGsH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-smcz2GMGsH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-smcz2GMGsH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-smcz2GMGsH .nav-link {
  position: relative;
}
.cid-smcz2GMGsH .container {
  display: flex;
  margin: auto;
}
.cid-smcz2GMGsH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-smcz2GMGsH .dropdown-menu,
.cid-smcz2GMGsH .navbar.opened {
  background: #ffffff !important;
}
.cid-smcz2GMGsH .nav-item:focus,
.cid-smcz2GMGsH .nav-link:focus {
  outline: none;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-smcz2GMGsH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-smcz2GMGsH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-smcz2GMGsH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-smcz2GMGsH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.4);
}
.cid-smcz2GMGsH .navbar.opened {
  transition: all 0.3s;
}
.cid-smcz2GMGsH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-smcz2GMGsH .navbar .navbar-logo img {
  width: auto;
}
.cid-smcz2GMGsH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-smcz2GMGsH .navbar.collapsed {
  justify-content: center;
}
.cid-smcz2GMGsH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-smcz2GMGsH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-smcz2GMGsH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-smcz2GMGsH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-smcz2GMGsH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-smcz2GMGsH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-smcz2GMGsH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-smcz2GMGsH .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-smcz2GMGsH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-smcz2GMGsH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-smcz2GMGsH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-smcz2GMGsH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-smcz2GMGsH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-smcz2GMGsH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-smcz2GMGsH .navbar.navbar-short {
  min-height: 60px;
}
.cid-smcz2GMGsH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-smcz2GMGsH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-smcz2GMGsH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-smcz2GMGsH .dropdown-item.active,
.cid-smcz2GMGsH .dropdown-item:active {
  background-color: transparent;
}
.cid-smcz2GMGsH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-smcz2GMGsH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-smcz2GMGsH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-smcz2GMGsH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-smcz2GMGsH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-smcz2GMGsH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-smcz2GMGsH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-smcz2GMGsH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-smcz2GMGsH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-smcz2GMGsH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-smcz2GMGsH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-smcz2GMGsH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-smcz2GMGsH .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-smcz2GMGsH .navbar {
    height: 70px;
  }
  .cid-smcz2GMGsH .navbar.opened {
    height: auto;
  }
  .cid-smcz2GMGsH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-smhr0WVqiN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-smhr0WVqiN .mbr-section-subtitle {
  color: #ffe885;
}
.cid-smhr0WVqiN .mbr-text {
  color: #ffe885;
}
.cid-symNpL00jr {
  z-index: 1000;
  width: 100%;
}
.cid-symNpL00jr nav.navbar {
  position: fixed;
}
.cid-symNpL00jr .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-symNpL00jr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-symNpL00jr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-symNpL00jr .dropdown-item:hover,
.cid-symNpL00jr .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-symNpL00jr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-symNpL00jr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-symNpL00jr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-symNpL00jr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-symNpL00jr .nav-link {
  position: relative;
}
.cid-symNpL00jr .container {
  display: flex;
  margin: auto;
}
.cid-symNpL00jr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-symNpL00jr .dropdown-menu,
.cid-symNpL00jr .navbar.opened {
  background: #ffffff !important;
}
.cid-symNpL00jr .nav-item:focus,
.cid-symNpL00jr .nav-link:focus {
  outline: none;
}
.cid-symNpL00jr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-symNpL00jr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-symNpL00jr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-symNpL00jr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-symNpL00jr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-symNpL00jr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-symNpL00jr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.4);
}
.cid-symNpL00jr .navbar.opened {
  transition: all 0.3s;
}
.cid-symNpL00jr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-symNpL00jr .navbar .navbar-logo img {
  width: auto;
}
.cid-symNpL00jr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-symNpL00jr .navbar.collapsed {
  justify-content: center;
}
.cid-symNpL00jr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-symNpL00jr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-symNpL00jr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-symNpL00jr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-symNpL00jr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-symNpL00jr .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-symNpL00jr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-symNpL00jr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-symNpL00jr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-symNpL00jr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-symNpL00jr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-symNpL00jr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-symNpL00jr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-symNpL00jr .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-symNpL00jr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-symNpL00jr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-symNpL00jr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-symNpL00jr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-symNpL00jr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-symNpL00jr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-symNpL00jr .navbar.navbar-short {
  min-height: 60px;
}
.cid-symNpL00jr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-symNpL00jr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-symNpL00jr .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-symNpL00jr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-symNpL00jr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-symNpL00jr .dropdown-item.active,
.cid-symNpL00jr .dropdown-item:active {
  background-color: transparent;
}
.cid-symNpL00jr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-symNpL00jr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-symNpL00jr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-symNpL00jr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-symNpL00jr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-symNpL00jr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-symNpL00jr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-symNpL00jr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-symNpL00jr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-symNpL00jr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-symNpL00jr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-symNpL00jr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-symNpL00jr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-symNpL00jr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-symNpL00jr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-symNpL00jr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-symNpL00jr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-symNpL00jr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-symNpL00jr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-symNpL00jr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-symNpL00jr .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-symNpL00jr .navbar {
    height: 70px;
  }
  .cid-symNpL00jr .navbar.opened {
    height: auto;
  }
  .cid-symNpL00jr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-symNpOFpCX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-symNpOFpCX img,
.cid-symNpOFpCX .item-img {
  width: 100%;
}
.cid-symNpOFpCX .item:focus,
.cid-symNpOFpCX span:focus {
  outline: none;
}
.cid-symNpOFpCX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-symNpOFpCX .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-symNpOFpCX .item {
  padding: 0;
  margin: 0;
}
.cid-symNpOFpCX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-symNpOFpCX .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-symNpOFpCX .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-symNpOFpCX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-symNpOFpCX .mbr-section-title {
  color: #ffe885;
}
.cid-symNpUlqec {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-symNpUlqec .video-wrapper iframe {
  width: 100%;
}
.cid-symNpUlqec .mbr-section-title,
.cid-symNpUlqec .mbr-section-subtitle,
.cid-symNpUlqec .mbr-text {
  text-align: center;
}
.cid-symNpUlqec .mbr-section-title {
  color: #ffe885;
}
.cid-symNpUlqec .mbr-section-subtitle {
  color: #ffe885;
}
.cid-symNpW0pet {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-symNpW0pet .video-wrapper iframe {
  width: 100%;
}
.cid-symNpW0pet .mbr-section-title,
.cid-symNpW0pet .mbr-section-subtitle,
.cid-symNpW0pet .mbr-text {
  text-align: center;
}
.cid-symNpW0pet .mbr-section-title {
  color: #ffe885;
}
.cid-symNpW0pet .mbr-section-subtitle {
  color: #ffe885;
}
.cid-tjJ4n5ebh3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-tjJ4n5ebh3 img,
.cid-tjJ4n5ebh3 .item-img {
  width: 100%;
}
.cid-tjJ4n5ebh3 .item:focus,
.cid-tjJ4n5ebh3 span:focus {
  outline: none;
}
.cid-tjJ4n5ebh3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tjJ4n5ebh3 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tjJ4n5ebh3 .item {
  padding: 0;
  margin: 0;
}
.cid-tjJ4n5ebh3 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tjJ4n5ebh3 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tjJ4n5ebh3 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tjJ4n5ebh3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tjJ4n5ebh3 .mbr-section-title {
  color: #ffe885;
}
.cid-symNpXuHsO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-symNpXuHsO .mbr-section-subtitle {
  color: #ffe885;
}
.cid-symNpXuHsO .mbr-text {
  color: #bbbbbb;
}
.cid-symNpYAZJy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-symNpYAZJy .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-symNpYAZJy .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-symNpYAZJy .mbr-section-title {
  color: #ffe885;
}
.cid-symNpYAZJy .position {
  color: #bbbbbb;
}
.cid-symNpYAZJy .name {
  color: #bbbbbb;
}
.cid-symNpYAZJy .mbr-text {
  color: #bbbbbb;
}
.cid-symNpZYpUz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-symNpZYpUz .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-symNpZYpUz .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-symNpZYpUz .mbr-text {
  color: #bbbbbb;
}
.cid-symNpZYpUz .name {
  color: #bbbbbb;
}
.cid-symNpZYpUz .position {
  color: #bbbbbb;
}
.cid-symNq1rnwt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-symNq1rnwt blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-symNq2r2CH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-symNq2r2CH [class^="socicon-"]:before,
.cid-symNq2r2CH [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-symNq2r2CH .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #6592e6;
  border-width: 2px;
  transition: all .3s;
  border-color: #6592e6;
}
.cid-symNq2r2CH .btn-social:hover {
  background: #6592e6;
}
.cid-symNq2r2CH .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-symNq2r2CH .mbr-section-title,
.cid-symNq2r2CH .mbr-social-likes {
  color: #ffe885;
}
.cid-tjSdod42TI {
  z-index: 1000;
  width: 100%;
}
.cid-tjSdod42TI nav.navbar {
  position: fixed;
}
.cid-tjSdod42TI .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-tjSdod42TI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tjSdod42TI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tjSdod42TI .dropdown-item:hover,
.cid-tjSdod42TI .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tjSdod42TI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tjSdod42TI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tjSdod42TI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tjSdod42TI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tjSdod42TI .nav-link {
  position: relative;
}
.cid-tjSdod42TI .container {
  display: flex;
  margin: auto;
}
.cid-tjSdod42TI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tjSdod42TI .dropdown-menu,
.cid-tjSdod42TI .navbar.opened {
  background: #ffffff !important;
}
.cid-tjSdod42TI .nav-item:focus,
.cid-tjSdod42TI .nav-link:focus {
  outline: none;
}
.cid-tjSdod42TI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tjSdod42TI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tjSdod42TI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tjSdod42TI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tjSdod42TI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tjSdod42TI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tjSdod42TI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.4);
}
.cid-tjSdod42TI .navbar.opened {
  transition: all 0.3s;
}
.cid-tjSdod42TI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tjSdod42TI .navbar .navbar-logo img {
  width: auto;
}
.cid-tjSdod42TI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tjSdod42TI .navbar.collapsed {
  justify-content: center;
}
.cid-tjSdod42TI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tjSdod42TI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tjSdod42TI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tjSdod42TI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tjSdod42TI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tjSdod42TI .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-tjSdod42TI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tjSdod42TI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tjSdod42TI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tjSdod42TI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tjSdod42TI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tjSdod42TI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tjSdod42TI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tjSdod42TI .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-tjSdod42TI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tjSdod42TI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tjSdod42TI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tjSdod42TI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tjSdod42TI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tjSdod42TI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tjSdod42TI .navbar.navbar-short {
  min-height: 60px;
}
.cid-tjSdod42TI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tjSdod42TI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tjSdod42TI .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-tjSdod42TI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tjSdod42TI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tjSdod42TI .dropdown-item.active,
.cid-tjSdod42TI .dropdown-item:active {
  background-color: transparent;
}
.cid-tjSdod42TI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tjSdod42TI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tjSdod42TI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tjSdod42TI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tjSdod42TI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tjSdod42TI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tjSdod42TI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tjSdod42TI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tjSdod42TI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tjSdod42TI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tjSdod42TI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tjSdod42TI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjSdod42TI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjSdod42TI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tjSdod42TI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjSdod42TI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tjSdod42TI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tjSdod42TI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjSdod42TI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tjSdod42TI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tjSdod42TI .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-tjSdod42TI .navbar {
    height: 70px;
  }
  .cid-tjSdod42TI .navbar.opened {
    height: auto;
  }
  .cid-tjSdod42TI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tjSdofahCi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-tjSdofahCi .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tjSdofahCi .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tjSdofahCi .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tjSdofahCi .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tjSdofahCi .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-tjSdofahCi .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tjSdofahCi .carousel-control,
.cid-tjSdofahCi .close {
  background: #1b1b1b;
}
.cid-tjSdofahCi .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tjSdofahCi .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tjSdofahCi .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tjSdofahCi .carousel-control-next span {
  margin-left: 5px;
}
.cid-tjSdofahCi .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-tjSdofahCi .close::before {
  content: '\e91a';
}
.cid-tjSdofahCi .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tjSdofahCi .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-tjSdofahCi .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tjSdofahCi .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tjSdofahCi .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tjSdofahCi .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tjSdofahCi .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-tjSdofahCi .carousel-indicators li.active,
.cid-tjSdofahCi .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tjSdofahCi .carousel-indicators li::after,
.cid-tjSdofahCi .carousel-indicators li::before {
  content: none;
}
.cid-tjSdofahCi .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tjSdofahCi .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tjSdofahCi .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tjSdofahCi .carousel-indicators {
    display: none;
  }
}
.cid-tjSdofahCi .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tjSdofahCi .carousel-inner > .active {
  display: block;
}
.cid-tjSdofahCi .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tjSdofahCi .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tjSdofahCi .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tjSdofahCi .carousel-control,
  .cid-tjSdofahCi .carousel-indicators,
  .cid-tjSdofahCi .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tjSdofahCi .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tjSdofahCi .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tjSdofahCi .carousel-indicators .active,
.cid-tjSdofahCi .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tjSdofahCi .carousel-indicators .active {
  background: #fff;
}
.cid-tjSdofahCi .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tjSdofahCi .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tjSdofahCi .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tjSdofahCi .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tjSdofahCi .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tjSdofahCi .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tjSdofahCi .carousel {
  width: 100%;
}
.cid-tjSdofahCi .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tjSdofahCi .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tjSdofahCi .modal.fade .modal-dialog,
.cid-tjSdofahCi .modal.in .modal-dialog {
  transform: none;
}
.cid-tjSdofahCi .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tjSdofahCi H6 {
  text-align: center;
}
.cid-tjSdofahCi H3 {
  color: #ffe885;
}
.cid-tjSdofahCi H4 {
  color: #ffe885;
}
.cid-tjSdomiyqj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-tjSdomiyqj .card-wrapper {
  background-color: #bbbbbb;
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #bbbbbb;
  transition: all 0.3s;
  padding: 2rem;
  padding-top: 3rem;
}
.cid-tjSdomiyqj .mbr-section-title,
.cid-tjSdomiyqj .mbr-section-subtitle {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tjSdomiyqj .card-wrapper {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tjSdomiyqj .card-wrapper {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-tjSdooAgRG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-tjSdooAgRG .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tjSdooAgRG form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tjSdooAgRG form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tjSdooAgRG form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tjSdooAgRG .mbr-section-title {
  color: #ffe885;
}
.cid-tjSrRqNGeu {
  z-index: 1000;
  width: 100%;
}
.cid-tjSrRqNGeu nav.navbar {
  position: fixed;
}
.cid-tjSrRqNGeu .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-tjSrRqNGeu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tjSrRqNGeu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tjSrRqNGeu .dropdown-item:hover,
.cid-tjSrRqNGeu .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tjSrRqNGeu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tjSrRqNGeu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tjSrRqNGeu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tjSrRqNGeu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tjSrRqNGeu .nav-link {
  position: relative;
}
.cid-tjSrRqNGeu .container {
  display: flex;
  margin: auto;
}
.cid-tjSrRqNGeu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tjSrRqNGeu .dropdown-menu,
.cid-tjSrRqNGeu .navbar.opened {
  background: #ffffff !important;
}
.cid-tjSrRqNGeu .nav-item:focus,
.cid-tjSrRqNGeu .nav-link:focus {
  outline: none;
}
.cid-tjSrRqNGeu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tjSrRqNGeu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tjSrRqNGeu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tjSrRqNGeu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tjSrRqNGeu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tjSrRqNGeu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tjSrRqNGeu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.4);
}
.cid-tjSrRqNGeu .navbar.opened {
  transition: all 0.3s;
}
.cid-tjSrRqNGeu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tjSrRqNGeu .navbar .navbar-logo img {
  width: auto;
}
.cid-tjSrRqNGeu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tjSrRqNGeu .navbar.collapsed {
  justify-content: center;
}
.cid-tjSrRqNGeu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tjSrRqNGeu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tjSrRqNGeu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tjSrRqNGeu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tjSrRqNGeu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tjSrRqNGeu .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-tjSrRqNGeu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tjSrRqNGeu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tjSrRqNGeu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tjSrRqNGeu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tjSrRqNGeu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tjSrRqNGeu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tjSrRqNGeu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tjSrRqNGeu .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-tjSrRqNGeu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tjSrRqNGeu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tjSrRqNGeu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tjSrRqNGeu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tjSrRqNGeu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tjSrRqNGeu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tjSrRqNGeu .navbar.navbar-short {
  min-height: 60px;
}
.cid-tjSrRqNGeu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tjSrRqNGeu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tjSrRqNGeu .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-tjSrRqNGeu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tjSrRqNGeu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tjSrRqNGeu .dropdown-item.active,
.cid-tjSrRqNGeu .dropdown-item:active {
  background-color: transparent;
}
.cid-tjSrRqNGeu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tjSrRqNGeu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tjSrRqNGeu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tjSrRqNGeu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tjSrRqNGeu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tjSrRqNGeu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tjSrRqNGeu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tjSrRqNGeu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tjSrRqNGeu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tjSrRqNGeu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tjSrRqNGeu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tjSrRqNGeu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjSrRqNGeu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjSrRqNGeu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tjSrRqNGeu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjSrRqNGeu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tjSrRqNGeu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tjSrRqNGeu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjSrRqNGeu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tjSrRqNGeu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tjSrRqNGeu .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-tjSrRqNGeu .navbar {
    height: 70px;
  }
  .cid-tjSrRqNGeu .navbar.opened {
    height: auto;
  }
  .cid-tjSrRqNGeu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tjSrRvcdXG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-tjSrRvcdXG .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tjSrRvcdXG .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tjSrRvcdXG .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tjSrRvcdXG .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tjSrRvcdXG .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-tjSrRvcdXG .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tjSrRvcdXG .carousel-control,
.cid-tjSrRvcdXG .close {
  background: #1b1b1b;
}
.cid-tjSrRvcdXG .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tjSrRvcdXG .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tjSrRvcdXG .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tjSrRvcdXG .carousel-control-next span {
  margin-left: 5px;
}
.cid-tjSrRvcdXG .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-tjSrRvcdXG .close::before {
  content: '\e91a';
}
.cid-tjSrRvcdXG .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tjSrRvcdXG .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-tjSrRvcdXG .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tjSrRvcdXG .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tjSrRvcdXG .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tjSrRvcdXG .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tjSrRvcdXG .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-tjSrRvcdXG .carousel-indicators li.active,
.cid-tjSrRvcdXG .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tjSrRvcdXG .carousel-indicators li::after,
.cid-tjSrRvcdXG .carousel-indicators li::before {
  content: none;
}
.cid-tjSrRvcdXG .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tjSrRvcdXG .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tjSrRvcdXG .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tjSrRvcdXG .carousel-indicators {
    display: none;
  }
}
.cid-tjSrRvcdXG .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tjSrRvcdXG .carousel-inner > .active {
  display: block;
}
.cid-tjSrRvcdXG .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tjSrRvcdXG .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tjSrRvcdXG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tjSrRvcdXG .carousel-control,
  .cid-tjSrRvcdXG .carousel-indicators,
  .cid-tjSrRvcdXG .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tjSrRvcdXG .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tjSrRvcdXG .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tjSrRvcdXG .carousel-indicators .active,
.cid-tjSrRvcdXG .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tjSrRvcdXG .carousel-indicators .active {
  background: #fff;
}
.cid-tjSrRvcdXG .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tjSrRvcdXG .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tjSrRvcdXG .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tjSrRvcdXG .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tjSrRvcdXG .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tjSrRvcdXG .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tjSrRvcdXG .carousel {
  width: 100%;
}
.cid-tjSrRvcdXG .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tjSrRvcdXG .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tjSrRvcdXG .modal.fade .modal-dialog,
.cid-tjSrRvcdXG .modal.in .modal-dialog {
  transform: none;
}
.cid-tjSrRvcdXG .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tjSrRvcdXG H6 {
  text-align: center;
}
.cid-tjSrRvcdXG H3 {
  color: #ffe885;
}
.cid-tjSrRCtbrT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tjSrRCtbrT .mbr-section-subtitle {
  text-align: center;
  color: #bbbbbb;
}
.cid-tjSrRDL6M5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tjSrRDL6M5 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tjSrRDL6M5 .mbr-text {
  color: #bbbbbb;
}
.cid-tjSrRETst2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tjSrRETst2 .mbr-text {
  text-align: center;
  color: #bbbbbb;
}
.cid-tjSrRFZmm2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tjSrRFZmm2 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tjSrRFZmm2 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tjSrRFZmm2 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tjSrRFZmm2 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tjSrRFZmm2 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-tjSrRHSlES {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #353535;
}
.cid-tjSrRHSlES .media-container-row {
  justify-content: space-between;
}
.cid-tjSrRHSlES .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-tjSrRHSlES .text-content {
    max-width: none;
  }
}
.cid-tjSrRHSlES .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tjSrRHSlES .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-tjSrRHSlES .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-tjSrRHSlES .icons {
    justify-content: center !important;
  }
  .cid-tjSrRHSlES .text-content * {
    text-align: center;
  }
}
.cid-tjSrRHSlES P {
  color: #bbbbbb;
}
.cid-tjSrRHSlES .mbr-section-title {
  color: #ffe885;
}
