body {
  font-family: Jost;
}
.display-1 {
  font-family: 'CenturyGothic';
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'CenturyGothic';
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'CenturyGothic';
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'CenturyGothic';
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'CenturyGothic';
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1rem;
}
/* ---- 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.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((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: #bbbbbb !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: #bbbbbb !important;
  border-color: #bbbbbb !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: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !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: #bbbbbb;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #909090 !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: #bbbbbb !important;
  border-color: #bbbbbb !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: #bbbbbb !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: #888888 !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: #bbbbbb;
}
.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: #bbbbbb;
  border-color: #bbbbbb;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #bbbbbb;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fbfbfb;
}
.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: 'CenturyGothic';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #bbbbbb !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'CenturyGothic';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #bbbbbb;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #bbbbbb;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #bbbbbb;
}
.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: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #bbbbbb !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='%23bbbbbb' %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-t1RLbpMCbD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t1RLbpMCbD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t1RLbpMCbD .row {
  flex-direction: row-reverse;
}
.cid-t1RLbpMCbD img {
  width: 100%;
}
.cid-t1RLbpMCbD .mbr-description {
  color: #bbbbbb;
}
.cid-t1RRmZ6ePD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t1RRmZ6ePD img,
.cid-t1RRmZ6ePD .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-t1RRmZ6ePD .item:focus,
.cid-t1RRmZ6ePD span:focus {
  outline: none;
}
.cid-t1RRmZ6ePD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t1RRmZ6ePD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t1RRmZ6ePD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t1RRmZ6ePD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-t1RRmZ6ePD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t1RRmZ6ePD .mbr-section-title {
  color: #232323;
}
.cid-t1RRmZ6ePD .mbr-text,
.cid-t1RRmZ6ePD .mbr-section-btn {
  text-align: center;
}
.cid-t1RRmZ6ePD .item-title {
  text-align: center;
  color: #00abff;
}
.cid-t1RRmZ6ePD .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-t1ROQP4zH7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s48P1Icc8J {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-s48P1Icc8J .row-links {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .social-row {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-s48P1Icc8J .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-s48P1Icc8J .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-s48P1Icc8J .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-s48P1Icc8J .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s48P1Icc8J .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-s48P1Icc8J .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s48P1Icc8J .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s48P1Icc8J .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-s48P1Icc8J .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-s48P1Icc8J .media-container-row .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-t231Rj018P {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t231Rj018P nav.navbar {
  position: fixed;
}
.cid-t231Rj018P .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-t231Rj018P .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t231Rj018P .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t231Rj018P .dropdown-item:hover,
.cid-t231Rj018P .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-t231Rj018P .dropdown-item:hover span {
  color: white;
}
.cid-t231Rj018P .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t231Rj018P .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t231Rj018P .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t231Rj018P .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t231Rj018P .nav-link {
  position: relative;
}
.cid-t231Rj018P .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t231Rj018P .container {
    flex-wrap: nowrap;
  }
}
.cid-t231Rj018P .iconfont-wrapper {
  color: #bbbbbb !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t231Rj018P .dropdown-menu,
.cid-t231Rj018P .navbar.opened {
  background: #ffffff !important;
}
.cid-t231Rj018P .nav-item:focus,
.cid-t231Rj018P .nav-link:focus {
  outline: none;
}
.cid-t231Rj018P .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t231Rj018P .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t231Rj018P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t231Rj018P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t231Rj018P .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t231Rj018P .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t231Rj018P .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t231Rj018P .navbar.opened {
  transition: all 0.3s;
}
.cid-t231Rj018P .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t231Rj018P .navbar .navbar-logo img {
  width: auto;
}
.cid-t231Rj018P .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t231Rj018P .navbar.collapsed {
  justify-content: center;
}
.cid-t231Rj018P .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t231Rj018P .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t231Rj018P .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t231Rj018P .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t231Rj018P .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t231Rj018P .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-t231Rj018P .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t231Rj018P .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t231Rj018P .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t231Rj018P .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t231Rj018P .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t231Rj018P .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t231Rj018P .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t231Rj018P .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-t231Rj018P .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t231Rj018P .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t231Rj018P .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t231Rj018P .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t231Rj018P .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t231Rj018P .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t231Rj018P .navbar.navbar-short {
  min-height: 60px;
}
.cid-t231Rj018P .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t231Rj018P .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t231Rj018P .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t231Rj018P .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t231Rj018P .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t231Rj018P .dropdown-item.active,
.cid-t231Rj018P .dropdown-item:active {
  background-color: transparent;
}
.cid-t231Rj018P .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t231Rj018P .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t231Rj018P .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t231Rj018P .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t231Rj018P .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t231Rj018P .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t231Rj018P ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t231Rj018P .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t231Rj018P button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t231Rj018P button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t231Rj018P button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t231Rj018P button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t231Rj018P button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t231Rj018P button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t231Rj018P nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t231Rj018P nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t231Rj018P nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t231Rj018P nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t231Rj018P .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t231Rj018P a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t231Rj018P .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-t231Rj018P .navbar {
    height: 70px;
  }
  .cid-t231Rj018P .navbar.opened {
    height: auto;
  }
  .cid-t231Rj018P .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRMQsRAzEX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sRMQsRAzEX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sRMQsRAzEX .row {
  flex-direction: row-reverse;
}
.cid-sRMQsRAzEX img {
  width: 100%;
}
.cid-sRMQsRAzEX .mbr-description {
  color: #bbbbbb;
}
.cid-sRMQOHFNWm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sRMQOHFNWm .mbr-section-title {
  text-align: left;
}
.cid-sRMRffdBca {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sRMTsef1Gh {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sRMQsS4xig {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sRMQsS4xig .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sRMQsS4xig .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sRMQsS4xig .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sRMQsS4xig .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sRMQsS4xig .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sRMQsS4xig .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sRMQsS4xig .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sRMQsS4xig .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sRMQsS4xig .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sRMQsS4xig .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sRMQsS4xig .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sRMQsS4xig .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sRMQsS4xig .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sRMQsS4xig .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sRMQsS4xig .media-container-row .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-t1SkPq3qtF {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t1SkPq3qtF .item {
  padding-bottom: 2rem;
}
.cid-t1SkPq3qtF .item-wrapper {
  height: 400px;
  position: relative;
}
.cid-t1SkPq3qtF .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t1SkPq3qtF .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-t1SkPq3qtF .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t1SkPq3qtF .carousel-control,
.cid-t1SkPq3qtF .close {
  background: #1b1b1b;
}
.cid-t1SkPq3qtF .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t1SkPq3qtF .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t1SkPq3qtF .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t1SkPq3qtF .carousel-control-next span {
  margin-left: 5px;
}
.cid-t1SkPq3qtF .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-t1SkPq3qtF .close::before {
  content: '\e91a';
}
.cid-t1SkPq3qtF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t1SkPq3qtF .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-t1SkPq3qtF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t1SkPq3qtF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t1SkPq3qtF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t1SkPq3qtF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t1SkPq3qtF .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-t1SkPq3qtF .carousel-indicators li.active,
.cid-t1SkPq3qtF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t1SkPq3qtF .carousel-indicators li::after,
.cid-t1SkPq3qtF .carousel-indicators li::before {
  content: none;
}
.cid-t1SkPq3qtF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t1SkPq3qtF .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t1SkPq3qtF .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t1SkPq3qtF .carousel-indicators {
    display: none;
  }
}
.cid-t1SkPq3qtF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t1SkPq3qtF .carousel-inner > .active {
  display: block;
}
.cid-t1SkPq3qtF .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t1SkPq3qtF .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t1SkPq3qtF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t1SkPq3qtF .carousel-control,
  .cid-t1SkPq3qtF .carousel-indicators,
  .cid-t1SkPq3qtF .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t1SkPq3qtF .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t1SkPq3qtF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t1SkPq3qtF .carousel-indicators .active,
.cid-t1SkPq3qtF .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t1SkPq3qtF .carousel-indicators .active {
  background: #fff;
}
.cid-t1SkPq3qtF .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t1SkPq3qtF .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t1SkPq3qtF .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t1SkPq3qtF .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t1SkPq3qtF .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t1SkPq3qtF .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t1SkPq3qtF .carousel {
  width: 100%;
}
.cid-t1SkPq3qtF .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t1SkPq3qtF .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t1SkPq3qtF .modal.fade .modal-dialog,
.cid-t1SkPq3qtF .modal.in .modal-dialog {
  transform: none;
}
.cid-t1SkPq3qtF .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t1SkPq3qtF H6 {
  text-align: center;
}
.cid-t1SkPq3qtF H3 {
  text-align: center;
}
.cid-t1SkPq3qtF H4 {
  color: #bbbbbb;
}
.cid-t1SmATmCbA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t1SmATmCbA .item {
  padding-bottom: 2rem;
}
.cid-t1SmATmCbA .item-wrapper {
  height: 400px;
  position: relative;
}
.cid-t1SmATmCbA .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t1SmATmCbA .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-t1SmATmCbA .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t1SmATmCbA .carousel-control,
.cid-t1SmATmCbA .close {
  background: #1b1b1b;
}
.cid-t1SmATmCbA .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t1SmATmCbA .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t1SmATmCbA .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t1SmATmCbA .carousel-control-next span {
  margin-left: 5px;
}
.cid-t1SmATmCbA .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-t1SmATmCbA .close::before {
  content: '\e91a';
}
.cid-t1SmATmCbA .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t1SmATmCbA .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-t1SmATmCbA .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t1SmATmCbA .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t1SmATmCbA .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t1SmATmCbA .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t1SmATmCbA .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-t1SmATmCbA .carousel-indicators li.active,
.cid-t1SmATmCbA .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t1SmATmCbA .carousel-indicators li::after,
.cid-t1SmATmCbA .carousel-indicators li::before {
  content: none;
}
.cid-t1SmATmCbA .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t1SmATmCbA .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t1SmATmCbA .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t1SmATmCbA .carousel-indicators {
    display: none;
  }
}
.cid-t1SmATmCbA .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t1SmATmCbA .carousel-inner > .active {
  display: block;
}
.cid-t1SmATmCbA .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t1SmATmCbA .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t1SmATmCbA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t1SmATmCbA .carousel-control,
  .cid-t1SmATmCbA .carousel-indicators,
  .cid-t1SmATmCbA .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t1SmATmCbA .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t1SmATmCbA .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t1SmATmCbA .carousel-indicators .active,
.cid-t1SmATmCbA .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t1SmATmCbA .carousel-indicators .active {
  background: #fff;
}
.cid-t1SmATmCbA .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t1SmATmCbA .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t1SmATmCbA .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t1SmATmCbA .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t1SmATmCbA .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t1SmATmCbA .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t1SmATmCbA .carousel {
  width: 100%;
}
.cid-t1SmATmCbA .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t1SmATmCbA .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t1SmATmCbA .modal.fade .modal-dialog,
.cid-t1SmATmCbA .modal.in .modal-dialog {
  transform: none;
}
.cid-t1SmATmCbA .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t1SmATmCbA H6 {
  text-align: center;
}
.cid-t1SmATmCbA H3 {
  text-align: center;
}
.cid-t1SmATmCbA H4 {
  color: #bbbbbb;
}
.cid-t23BuHp9He {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t23BuHp9He .item {
  padding-bottom: 2rem;
}
.cid-t23BuHp9He .item-wrapper {
  height: 400px;
  position: relative;
}
.cid-t23BuHp9He .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t23BuHp9He .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-t23BuHp9He .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t23BuHp9He .carousel-control,
.cid-t23BuHp9He .close {
  background: #1b1b1b;
}
.cid-t23BuHp9He .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t23BuHp9He .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t23BuHp9He .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t23BuHp9He .carousel-control-next span {
  margin-left: 5px;
}
.cid-t23BuHp9He .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-t23BuHp9He .close::before {
  content: '\e91a';
}
.cid-t23BuHp9He .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t23BuHp9He .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-t23BuHp9He .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t23BuHp9He .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t23BuHp9He .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t23BuHp9He .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t23BuHp9He .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-t23BuHp9He .carousel-indicators li.active,
.cid-t23BuHp9He .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t23BuHp9He .carousel-indicators li::after,
.cid-t23BuHp9He .carousel-indicators li::before {
  content: none;
}
.cid-t23BuHp9He .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t23BuHp9He .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t23BuHp9He .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t23BuHp9He .carousel-indicators {
    display: none;
  }
}
.cid-t23BuHp9He .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t23BuHp9He .carousel-inner > .active {
  display: block;
}
.cid-t23BuHp9He .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t23BuHp9He .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t23BuHp9He .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t23BuHp9He .carousel-control,
  .cid-t23BuHp9He .carousel-indicators,
  .cid-t23BuHp9He .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t23BuHp9He .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t23BuHp9He .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t23BuHp9He .carousel-indicators .active,
.cid-t23BuHp9He .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t23BuHp9He .carousel-indicators .active {
  background: #fff;
}
.cid-t23BuHp9He .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t23BuHp9He .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t23BuHp9He .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t23BuHp9He .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t23BuHp9He .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t23BuHp9He .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t23BuHp9He .carousel {
  width: 100%;
}
.cid-t23BuHp9He .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t23BuHp9He .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t23BuHp9He .modal.fade .modal-dialog,
.cid-t23BuHp9He .modal.in .modal-dialog {
  transform: none;
}
.cid-t23BuHp9He .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t23BuHp9He H6 {
  text-align: center;
}
.cid-t23BuHp9He H3 {
  text-align: center;
}
.cid-t23BuHp9He H4 {
  color: #bbbbbb;
}
.cid-t1S5aJyZvD {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t1S5aJyZvD .mbr-section-subtitle {
  text-align: center;
}
.cid-t2332lVg62 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t2332lVg62 .mbr-section-title {
  text-align: center;
  color: #00abff;
}
.cid-t2332lVg62 .mbr-section-subtitle {
  color: #00abff;
}
.cid-t1S2DyN7YU {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-t1S2DyN7YU .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t1S2DyN7YU .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t1S2DyN7YU .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t1S2DyN7YU .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t1S2DyN7YU .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t1S2DyN7YU .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t1S2DyN7YU .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t1S2DyN7YU .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t1S2DyN7YU .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t1S2DyN7YU .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t1S2DyN7YU .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t1S2DyN7YU .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1S2DyN7YU .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t1S2DyN7YU .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t1S2DyN7YU .media-container-row .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-t1S2DzsekS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t1S2DzsekS nav.navbar {
  position: fixed;
}
.cid-t1S2DzsekS .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-t1S2DzsekS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t1S2DzsekS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t1S2DzsekS .dropdown-item:hover,
.cid-t1S2DzsekS .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-t1S2DzsekS .dropdown-item:hover span {
  color: white;
}
.cid-t1S2DzsekS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t1S2DzsekS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t1S2DzsekS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t1S2DzsekS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t1S2DzsekS .nav-link {
  position: relative;
}
.cid-t1S2DzsekS .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t1S2DzsekS .container {
    flex-wrap: nowrap;
  }
}
.cid-t1S2DzsekS .iconfont-wrapper {
  color: #bbbbbb !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t1S2DzsekS .dropdown-menu,
.cid-t1S2DzsekS .navbar.opened {
  background: #ffffff !important;
}
.cid-t1S2DzsekS .nav-item:focus,
.cid-t1S2DzsekS .nav-link:focus {
  outline: none;
}
.cid-t1S2DzsekS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t1S2DzsekS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t1S2DzsekS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t1S2DzsekS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t1S2DzsekS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t1S2DzsekS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t1S2DzsekS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t1S2DzsekS .navbar.opened {
  transition: all 0.3s;
}
.cid-t1S2DzsekS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t1S2DzsekS .navbar .navbar-logo img {
  width: auto;
}
.cid-t1S2DzsekS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t1S2DzsekS .navbar.collapsed {
  justify-content: center;
}
.cid-t1S2DzsekS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t1S2DzsekS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t1S2DzsekS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t1S2DzsekS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t1S2DzsekS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t1S2DzsekS .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-t1S2DzsekS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t1S2DzsekS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t1S2DzsekS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t1S2DzsekS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t1S2DzsekS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t1S2DzsekS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t1S2DzsekS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t1S2DzsekS .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-t1S2DzsekS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t1S2DzsekS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t1S2DzsekS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t1S2DzsekS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t1S2DzsekS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t1S2DzsekS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t1S2DzsekS .navbar.navbar-short {
  min-height: 60px;
}
.cid-t1S2DzsekS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t1S2DzsekS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t1S2DzsekS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t1S2DzsekS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t1S2DzsekS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t1S2DzsekS .dropdown-item.active,
.cid-t1S2DzsekS .dropdown-item:active {
  background-color: transparent;
}
.cid-t1S2DzsekS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t1S2DzsekS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t1S2DzsekS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t1S2DzsekS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t1S2DzsekS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t1S2DzsekS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t1S2DzsekS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t1S2DzsekS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t1S2DzsekS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t1S2DzsekS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t1S2DzsekS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t1S2DzsekS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t1S2DzsekS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t1S2DzsekS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t1S2DzsekS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t1S2DzsekS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t1S2DzsekS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t1S2DzsekS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t1S2DzsekS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t1S2DzsekS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t1S2DzsekS .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-t1S2DzsekS .navbar {
    height: 70px;
  }
  .cid-t1S2DzsekS .navbar.opened {
    height: auto;
  }
  .cid-t1S2DzsekS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXmNNp4tnf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tXmNNp4tnf .mbr-text {
  text-align: center;
}
.cid-uudcH6hW6E {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uudcH6hW6E .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uudcH6hW6E img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uudcH6hW6E .text-wrapper {
    padding: 2rem;
  }
}
.cid-uudcH6hW6E .mbr-text {
  text-align: left;
}
.cid-uudcH6hW6E .mbr-section-title {
  text-align: left;
}
.cid-uudcH6hW6E .mbr-description {
  color: #000000;
  text-align: left;
}
.cid-t23FCRbBKG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t23FCRbBKG .item {
  padding-bottom: 2rem;
}
.cid-t23FCRbBKG .item-wrapper {
  height: 200px;
  position: relative;
}
.cid-t23FCRbBKG .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t23FCRbBKG .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-t23FCRbBKG .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t23FCRbBKG .carousel-control,
.cid-t23FCRbBKG .close {
  background: #1b1b1b;
}
.cid-t23FCRbBKG .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t23FCRbBKG .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t23FCRbBKG .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t23FCRbBKG .carousel-control-next span {
  margin-left: 5px;
}
.cid-t23FCRbBKG .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-t23FCRbBKG .close::before {
  content: '\e91a';
}
.cid-t23FCRbBKG .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t23FCRbBKG .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-t23FCRbBKG .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t23FCRbBKG .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t23FCRbBKG .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t23FCRbBKG .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t23FCRbBKG .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-t23FCRbBKG .carousel-indicators li.active,
.cid-t23FCRbBKG .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t23FCRbBKG .carousel-indicators li::after,
.cid-t23FCRbBKG .carousel-indicators li::before {
  content: none;
}
.cid-t23FCRbBKG .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t23FCRbBKG .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t23FCRbBKG .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t23FCRbBKG .carousel-indicators {
    display: none;
  }
}
.cid-t23FCRbBKG .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t23FCRbBKG .carousel-inner > .active {
  display: block;
}
.cid-t23FCRbBKG .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t23FCRbBKG .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t23FCRbBKG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t23FCRbBKG .carousel-control,
  .cid-t23FCRbBKG .carousel-indicators,
  .cid-t23FCRbBKG .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t23FCRbBKG .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t23FCRbBKG .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t23FCRbBKG .carousel-indicators .active,
.cid-t23FCRbBKG .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t23FCRbBKG .carousel-indicators .active {
  background: #fff;
}
.cid-t23FCRbBKG .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t23FCRbBKG .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t23FCRbBKG .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t23FCRbBKG .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t23FCRbBKG .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t23FCRbBKG .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t23FCRbBKG .carousel {
  width: 100%;
}
.cid-t23FCRbBKG .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t23FCRbBKG .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t23FCRbBKG .modal.fade .modal-dialog,
.cid-t23FCRbBKG .modal.in .modal-dialog {
  transform: none;
}
.cid-t23FCRbBKG .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t23FCRbBKG H6 {
  text-align: center;
}
.cid-t23FCRbBKG H3 {
  text-align: center;
}
.cid-t23FCRbBKG H4 {
  color: #bbbbbb;
}
.cid-t23G4cl2yP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t23G4cl2yP .item {
  padding-bottom: 2rem;
}
.cid-t23G4cl2yP .item-wrapper {
  height: 200px;
  position: relative;
}
.cid-t23G4cl2yP .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t23G4cl2yP .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-t23G4cl2yP .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t23G4cl2yP .carousel-control,
.cid-t23G4cl2yP .close {
  background: #1b1b1b;
}
.cid-t23G4cl2yP .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t23G4cl2yP .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t23G4cl2yP .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t23G4cl2yP .carousel-control-next span {
  margin-left: 5px;
}
.cid-t23G4cl2yP .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-t23G4cl2yP .close::before {
  content: '\e91a';
}
.cid-t23G4cl2yP .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t23G4cl2yP .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-t23G4cl2yP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t23G4cl2yP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t23G4cl2yP .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t23G4cl2yP .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t23G4cl2yP .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-t23G4cl2yP .carousel-indicators li.active,
.cid-t23G4cl2yP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t23G4cl2yP .carousel-indicators li::after,
.cid-t23G4cl2yP .carousel-indicators li::before {
  content: none;
}
.cid-t23G4cl2yP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t23G4cl2yP .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t23G4cl2yP .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t23G4cl2yP .carousel-indicators {
    display: none;
  }
}
.cid-t23G4cl2yP .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t23G4cl2yP .carousel-inner > .active {
  display: block;
}
.cid-t23G4cl2yP .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t23G4cl2yP .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t23G4cl2yP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t23G4cl2yP .carousel-control,
  .cid-t23G4cl2yP .carousel-indicators,
  .cid-t23G4cl2yP .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t23G4cl2yP .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t23G4cl2yP .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t23G4cl2yP .carousel-indicators .active,
.cid-t23G4cl2yP .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t23G4cl2yP .carousel-indicators .active {
  background: #fff;
}
.cid-t23G4cl2yP .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t23G4cl2yP .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t23G4cl2yP .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t23G4cl2yP .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t23G4cl2yP .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t23G4cl2yP .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t23G4cl2yP .carousel {
  width: 100%;
}
.cid-t23G4cl2yP .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t23G4cl2yP .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t23G4cl2yP .modal.fade .modal-dialog,
.cid-t23G4cl2yP .modal.in .modal-dialog {
  transform: none;
}
.cid-t23G4cl2yP .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t23G4cl2yP H6 {
  text-align: center;
}
.cid-t23G4cl2yP H3 {
  text-align: center;
}
.cid-t23G4cl2yP H4 {
  color: #bbbbbb;
}
.cid-t1S54vH6Ve {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t1S54vH6Ve .mbr-section-subtitle {
  text-align: center;
}
.cid-tWEucjpbgq {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tWEucjpbgq img,
.cid-tWEucjpbgq .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tWEucjpbgq .item:focus,
.cid-tWEucjpbgq span:focus {
  outline: none;
}
.cid-tWEucjpbgq .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tWEucjpbgq .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tWEucjpbgq .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tWEucjpbgq .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tWEucjpbgq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tWEucjpbgq .mbr-section-title {
  color: #232323;
}
.cid-tWEucjpbgq .mbr-text,
.cid-tWEucjpbgq .mbr-section-btn {
  text-align: center;
}
.cid-tWEucjpbgq .item-title {
  text-align: center;
  color: #00abff;
}
.cid-tWEucjpbgq .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-t1S2KQkGnh {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-t1S2KQkGnh .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t1S2KQkGnh .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t1S2KQkGnh .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t1S2KQkGnh .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t1S2KQkGnh .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t1S2KQkGnh .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t1S2KQkGnh .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t1S2KQkGnh .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t1S2KQkGnh .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t1S2KQkGnh .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t1S2KQkGnh .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t1S2KQkGnh .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1S2KQkGnh .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t1S2KQkGnh .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t1S2KQkGnh .media-container-row .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-t1S2KQU3BH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t1S2KQU3BH nav.navbar {
  position: fixed;
}
.cid-t1S2KQU3BH .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-t1S2KQU3BH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t1S2KQU3BH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t1S2KQU3BH .dropdown-item:hover,
.cid-t1S2KQU3BH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-t1S2KQU3BH .dropdown-item:hover span {
  color: white;
}
.cid-t1S2KQU3BH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t1S2KQU3BH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t1S2KQU3BH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t1S2KQU3BH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t1S2KQU3BH .nav-link {
  position: relative;
}
.cid-t1S2KQU3BH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t1S2KQU3BH .container {
    flex-wrap: nowrap;
  }
}
.cid-t1S2KQU3BH .iconfont-wrapper {
  color: #bbbbbb !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t1S2KQU3BH .dropdown-menu,
.cid-t1S2KQU3BH .navbar.opened {
  background: #ffffff !important;
}
.cid-t1S2KQU3BH .nav-item:focus,
.cid-t1S2KQU3BH .nav-link:focus {
  outline: none;
}
.cid-t1S2KQU3BH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t1S2KQU3BH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t1S2KQU3BH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t1S2KQU3BH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t1S2KQU3BH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t1S2KQU3BH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t1S2KQU3BH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t1S2KQU3BH .navbar.opened {
  transition: all 0.3s;
}
.cid-t1S2KQU3BH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t1S2KQU3BH .navbar .navbar-logo img {
  width: auto;
}
.cid-t1S2KQU3BH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t1S2KQU3BH .navbar.collapsed {
  justify-content: center;
}
.cid-t1S2KQU3BH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t1S2KQU3BH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t1S2KQU3BH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t1S2KQU3BH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t1S2KQU3BH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t1S2KQU3BH .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-t1S2KQU3BH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t1S2KQU3BH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t1S2KQU3BH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t1S2KQU3BH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t1S2KQU3BH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t1S2KQU3BH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t1S2KQU3BH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t1S2KQU3BH .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-t1S2KQU3BH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t1S2KQU3BH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t1S2KQU3BH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t1S2KQU3BH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t1S2KQU3BH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t1S2KQU3BH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t1S2KQU3BH .navbar.navbar-short {
  min-height: 60px;
}
.cid-t1S2KQU3BH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t1S2KQU3BH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t1S2KQU3BH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t1S2KQU3BH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t1S2KQU3BH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t1S2KQU3BH .dropdown-item.active,
.cid-t1S2KQU3BH .dropdown-item:active {
  background-color: transparent;
}
.cid-t1S2KQU3BH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t1S2KQU3BH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t1S2KQU3BH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t1S2KQU3BH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t1S2KQU3BH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t1S2KQU3BH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t1S2KQU3BH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t1S2KQU3BH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t1S2KQU3BH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t1S2KQU3BH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t1S2KQU3BH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t1S2KQU3BH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t1S2KQU3BH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t1S2KQU3BH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t1S2KQU3BH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t1S2KQU3BH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t1S2KQU3BH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t1S2KQU3BH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t1S2KQU3BH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t1S2KQU3BH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t1S2KQU3BH .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-t1S2KQU3BH .navbar {
    height: 70px;
  }
  .cid-t1S2KQU3BH .navbar.opened {
    height: auto;
  }
  .cid-t1S2KQU3BH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t1S4VN2KY6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t1S4VN2KY6 .mbr-text {
  text-align: center;
}
.cid-t1S25QIlHw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t1S25QIlHw nav.navbar {
  position: fixed;
}
.cid-t1S25QIlHw .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-t1S25QIlHw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t1S25QIlHw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t1S25QIlHw .dropdown-item:hover,
.cid-t1S25QIlHw .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-t1S25QIlHw .dropdown-item:hover span {
  color: white;
}
.cid-t1S25QIlHw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t1S25QIlHw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t1S25QIlHw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t1S25QIlHw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t1S25QIlHw .nav-link {
  position: relative;
}
.cid-t1S25QIlHw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t1S25QIlHw .container {
    flex-wrap: nowrap;
  }
}
.cid-t1S25QIlHw .iconfont-wrapper {
  color: #bbbbbb !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t1S25QIlHw .dropdown-menu,
.cid-t1S25QIlHw .navbar.opened {
  background: #ffffff !important;
}
.cid-t1S25QIlHw .nav-item:focus,
.cid-t1S25QIlHw .nav-link:focus {
  outline: none;
}
.cid-t1S25QIlHw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t1S25QIlHw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t1S25QIlHw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t1S25QIlHw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t1S25QIlHw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t1S25QIlHw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t1S25QIlHw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t1S25QIlHw .navbar.opened {
  transition: all 0.3s;
}
.cid-t1S25QIlHw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t1S25QIlHw .navbar .navbar-logo img {
  width: auto;
}
.cid-t1S25QIlHw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t1S25QIlHw .navbar.collapsed {
  justify-content: center;
}
.cid-t1S25QIlHw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t1S25QIlHw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t1S25QIlHw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t1S25QIlHw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t1S25QIlHw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t1S25QIlHw .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-t1S25QIlHw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t1S25QIlHw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t1S25QIlHw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t1S25QIlHw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t1S25QIlHw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t1S25QIlHw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t1S25QIlHw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t1S25QIlHw .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-t1S25QIlHw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t1S25QIlHw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t1S25QIlHw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t1S25QIlHw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t1S25QIlHw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t1S25QIlHw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t1S25QIlHw .navbar.navbar-short {
  min-height: 60px;
}
.cid-t1S25QIlHw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t1S25QIlHw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t1S25QIlHw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t1S25QIlHw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t1S25QIlHw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t1S25QIlHw .dropdown-item.active,
.cid-t1S25QIlHw .dropdown-item:active {
  background-color: transparent;
}
.cid-t1S25QIlHw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t1S25QIlHw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t1S25QIlHw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t1S25QIlHw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t1S25QIlHw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t1S25QIlHw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t1S25QIlHw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t1S25QIlHw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t1S25QIlHw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t1S25QIlHw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t1S25QIlHw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t1S25QIlHw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t1S25QIlHw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t1S25QIlHw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t1S25QIlHw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t1S25QIlHw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t1S25QIlHw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t1S25QIlHw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t1S25QIlHw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t1S25QIlHw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t1S25QIlHw .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-t1S25QIlHw .navbar {
    height: 70px;
  }
  .cid-t1S25QIlHw .navbar.opened {
    height: auto;
  }
  .cid-t1S25QIlHw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFgeujH18v {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFgeujH18v .item {
  padding-bottom: 2rem;
}
.cid-uFgeujH18v .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uFgeujH18v .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uFgeujH18v .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-uFgeujH18v .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uFgeujH18v .carousel-control,
.cid-uFgeujH18v .close {
  background: #1b1b1b;
}
.cid-uFgeujH18v .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uFgeujH18v .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uFgeujH18v .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uFgeujH18v .carousel-control-next span {
  margin-left: 5px;
}
.cid-uFgeujH18v .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-uFgeujH18v .close::before {
  content: '\e91a';
}
.cid-uFgeujH18v .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uFgeujH18v .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-uFgeujH18v .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uFgeujH18v .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uFgeujH18v .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uFgeujH18v .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uFgeujH18v .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-uFgeujH18v .carousel-indicators li.active,
.cid-uFgeujH18v .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uFgeujH18v .carousel-indicators li::after,
.cid-uFgeujH18v .carousel-indicators li::before {
  content: none;
}
.cid-uFgeujH18v .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uFgeujH18v .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uFgeujH18v .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uFgeujH18v .carousel-indicators {
    display: none;
  }
}
.cid-uFgeujH18v .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uFgeujH18v .carousel-inner > .active {
  display: block;
}
.cid-uFgeujH18v .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uFgeujH18v .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uFgeujH18v .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uFgeujH18v .carousel-control,
  .cid-uFgeujH18v .carousel-indicators,
  .cid-uFgeujH18v .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uFgeujH18v .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uFgeujH18v .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uFgeujH18v .carousel-indicators .active,
.cid-uFgeujH18v .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uFgeujH18v .carousel-indicators .active {
  background: #fff;
}
.cid-uFgeujH18v .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uFgeujH18v .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uFgeujH18v .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uFgeujH18v .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uFgeujH18v .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uFgeujH18v .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uFgeujH18v .carousel {
  width: 100%;
}
.cid-uFgeujH18v .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uFgeujH18v .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uFgeujH18v .modal.fade .modal-dialog,
.cid-uFgeujH18v .modal.in .modal-dialog {
  transform: none;
}
.cid-uFgeujH18v .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uFgeujH18v H6 {
  text-align: center;
}
.cid-uFgeujH18v H3 {
  text-align: center;
}
.cid-uFgeujH18v H4 {
  color: #bbbbbb;
}
.cid-uFgew9S81r {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uudfbKVMAv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uudfbKVMAv .item {
  padding-bottom: 2rem;
}
.cid-uudfbKVMAv .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uudfbKVMAv .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uudfbKVMAv .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-uudfbKVMAv .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uudfbKVMAv .carousel-control,
.cid-uudfbKVMAv .close {
  background: #1b1b1b;
}
.cid-uudfbKVMAv .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uudfbKVMAv .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uudfbKVMAv .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uudfbKVMAv .carousel-control-next span {
  margin-left: 5px;
}
.cid-uudfbKVMAv .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-uudfbKVMAv .close::before {
  content: '\e91a';
}
.cid-uudfbKVMAv .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uudfbKVMAv .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-uudfbKVMAv .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uudfbKVMAv .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uudfbKVMAv .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uudfbKVMAv .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uudfbKVMAv .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-uudfbKVMAv .carousel-indicators li.active,
.cid-uudfbKVMAv .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uudfbKVMAv .carousel-indicators li::after,
.cid-uudfbKVMAv .carousel-indicators li::before {
  content: none;
}
.cid-uudfbKVMAv .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uudfbKVMAv .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uudfbKVMAv .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uudfbKVMAv .carousel-indicators {
    display: none;
  }
}
.cid-uudfbKVMAv .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uudfbKVMAv .carousel-inner > .active {
  display: block;
}
.cid-uudfbKVMAv .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uudfbKVMAv .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uudfbKVMAv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uudfbKVMAv .carousel-control,
  .cid-uudfbKVMAv .carousel-indicators,
  .cid-uudfbKVMAv .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uudfbKVMAv .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uudfbKVMAv .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uudfbKVMAv .carousel-indicators .active,
.cid-uudfbKVMAv .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uudfbKVMAv .carousel-indicators .active {
  background: #fff;
}
.cid-uudfbKVMAv .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uudfbKVMAv .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uudfbKVMAv .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uudfbKVMAv .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uudfbKVMAv .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uudfbKVMAv .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uudfbKVMAv .carousel {
  width: 100%;
}
.cid-uudfbKVMAv .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uudfbKVMAv .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uudfbKVMAv .modal.fade .modal-dialog,
.cid-uudfbKVMAv .modal.in .modal-dialog {
  transform: none;
}
.cid-uudfbKVMAv .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uudfbKVMAv H6 {
  text-align: center;
}
.cid-uudfbKVMAv H3 {
  text-align: center;
}
.cid-uudfbKVMAv H4 {
  color: #bbbbbb;
}
.cid-uudfd8Toyi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u57NRhLH0Y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u57NRhLH0Y .item {
  padding-bottom: 2rem;
}
.cid-u57NRhLH0Y .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u57NRhLH0Y .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u57NRhLH0Y .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-u57NRhLH0Y .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u57NRhLH0Y .carousel-control,
.cid-u57NRhLH0Y .close {
  background: #1b1b1b;
}
.cid-u57NRhLH0Y .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u57NRhLH0Y .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u57NRhLH0Y .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u57NRhLH0Y .carousel-control-next span {
  margin-left: 5px;
}
.cid-u57NRhLH0Y .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-u57NRhLH0Y .close::before {
  content: '\e91a';
}
.cid-u57NRhLH0Y .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u57NRhLH0Y .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-u57NRhLH0Y .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u57NRhLH0Y .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u57NRhLH0Y .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u57NRhLH0Y .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u57NRhLH0Y .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-u57NRhLH0Y .carousel-indicators li.active,
.cid-u57NRhLH0Y .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u57NRhLH0Y .carousel-indicators li::after,
.cid-u57NRhLH0Y .carousel-indicators li::before {
  content: none;
}
.cid-u57NRhLH0Y .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u57NRhLH0Y .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u57NRhLH0Y .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u57NRhLH0Y .carousel-indicators {
    display: none;
  }
}
.cid-u57NRhLH0Y .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u57NRhLH0Y .carousel-inner > .active {
  display: block;
}
.cid-u57NRhLH0Y .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u57NRhLH0Y .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u57NRhLH0Y .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u57NRhLH0Y .carousel-control,
  .cid-u57NRhLH0Y .carousel-indicators,
  .cid-u57NRhLH0Y .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u57NRhLH0Y .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u57NRhLH0Y .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u57NRhLH0Y .carousel-indicators .active,
.cid-u57NRhLH0Y .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u57NRhLH0Y .carousel-indicators .active {
  background: #fff;
}
.cid-u57NRhLH0Y .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u57NRhLH0Y .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u57NRhLH0Y .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u57NRhLH0Y .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u57NRhLH0Y .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u57NRhLH0Y .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u57NRhLH0Y .carousel {
  width: 100%;
}
.cid-u57NRhLH0Y .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u57NRhLH0Y .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u57NRhLH0Y .modal.fade .modal-dialog,
.cid-u57NRhLH0Y .modal.in .modal-dialog {
  transform: none;
}
.cid-u57NRhLH0Y .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u57NRhLH0Y H6 {
  text-align: center;
}
.cid-u57NRhLH0Y H3 {
  text-align: center;
}
.cid-u57NRhLH0Y H4 {
  color: #bbbbbb;
}
.cid-u57NSDfJPu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tRb5VdYZN6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tRb5VdYZN6 .item {
  padding-bottom: 2rem;
}
.cid-tRb5VdYZN6 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tRb5VdYZN6 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tRb5VdYZN6 .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-tRb5VdYZN6 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tRb5VdYZN6 .carousel-control,
.cid-tRb5VdYZN6 .close {
  background: #1b1b1b;
}
.cid-tRb5VdYZN6 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tRb5VdYZN6 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tRb5VdYZN6 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tRb5VdYZN6 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tRb5VdYZN6 .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-tRb5VdYZN6 .close::before {
  content: '\e91a';
}
.cid-tRb5VdYZN6 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tRb5VdYZN6 .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-tRb5VdYZN6 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tRb5VdYZN6 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tRb5VdYZN6 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tRb5VdYZN6 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tRb5VdYZN6 .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-tRb5VdYZN6 .carousel-indicators li.active,
.cid-tRb5VdYZN6 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tRb5VdYZN6 .carousel-indicators li::after,
.cid-tRb5VdYZN6 .carousel-indicators li::before {
  content: none;
}
.cid-tRb5VdYZN6 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tRb5VdYZN6 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tRb5VdYZN6 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tRb5VdYZN6 .carousel-indicators {
    display: none;
  }
}
.cid-tRb5VdYZN6 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tRb5VdYZN6 .carousel-inner > .active {
  display: block;
}
.cid-tRb5VdYZN6 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tRb5VdYZN6 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tRb5VdYZN6 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tRb5VdYZN6 .carousel-control,
  .cid-tRb5VdYZN6 .carousel-indicators,
  .cid-tRb5VdYZN6 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tRb5VdYZN6 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tRb5VdYZN6 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tRb5VdYZN6 .carousel-indicators .active,
.cid-tRb5VdYZN6 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tRb5VdYZN6 .carousel-indicators .active {
  background: #fff;
}
.cid-tRb5VdYZN6 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tRb5VdYZN6 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tRb5VdYZN6 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tRb5VdYZN6 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tRb5VdYZN6 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tRb5VdYZN6 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tRb5VdYZN6 .carousel {
  width: 100%;
}
.cid-tRb5VdYZN6 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tRb5VdYZN6 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tRb5VdYZN6 .modal.fade .modal-dialog,
.cid-tRb5VdYZN6 .modal.in .modal-dialog {
  transform: none;
}
.cid-tRb5VdYZN6 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tRb5VdYZN6 H6 {
  text-align: center;
}
.cid-tRb5VdYZN6 H3 {
  text-align: center;
}
.cid-tRb5VdYZN6 H4 {
  color: #bbbbbb;
}
.cid-tRb5TA61fZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tRb5TA61fZ .mbr-text {
  text-align: left;
}
.cid-tRb3xWTUiz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tRb3xWTUiz .item {
  padding-bottom: 2rem;
}
.cid-tRb3xWTUiz .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tRb3xWTUiz .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tRb3xWTUiz .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-tRb3xWTUiz .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tRb3xWTUiz .carousel-control,
.cid-tRb3xWTUiz .close {
  background: #1b1b1b;
}
.cid-tRb3xWTUiz .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tRb3xWTUiz .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tRb3xWTUiz .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tRb3xWTUiz .carousel-control-next span {
  margin-left: 5px;
}
.cid-tRb3xWTUiz .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-tRb3xWTUiz .close::before {
  content: '\e91a';
}
.cid-tRb3xWTUiz .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tRb3xWTUiz .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-tRb3xWTUiz .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tRb3xWTUiz .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tRb3xWTUiz .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tRb3xWTUiz .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tRb3xWTUiz .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-tRb3xWTUiz .carousel-indicators li.active,
.cid-tRb3xWTUiz .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tRb3xWTUiz .carousel-indicators li::after,
.cid-tRb3xWTUiz .carousel-indicators li::before {
  content: none;
}
.cid-tRb3xWTUiz .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tRb3xWTUiz .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tRb3xWTUiz .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tRb3xWTUiz .carousel-indicators {
    display: none;
  }
}
.cid-tRb3xWTUiz .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tRb3xWTUiz .carousel-inner > .active {
  display: block;
}
.cid-tRb3xWTUiz .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tRb3xWTUiz .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tRb3xWTUiz .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tRb3xWTUiz .carousel-control,
  .cid-tRb3xWTUiz .carousel-indicators,
  .cid-tRb3xWTUiz .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tRb3xWTUiz .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tRb3xWTUiz .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tRb3xWTUiz .carousel-indicators .active,
.cid-tRb3xWTUiz .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tRb3xWTUiz .carousel-indicators .active {
  background: #fff;
}
.cid-tRb3xWTUiz .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tRb3xWTUiz .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tRb3xWTUiz .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tRb3xWTUiz .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tRb3xWTUiz .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tRb3xWTUiz .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tRb3xWTUiz .carousel {
  width: 100%;
}
.cid-tRb3xWTUiz .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tRb3xWTUiz .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tRb3xWTUiz .modal.fade .modal-dialog,
.cid-tRb3xWTUiz .modal.in .modal-dialog {
  transform: none;
}
.cid-tRb3xWTUiz .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tRb3xWTUiz H6 {
  text-align: center;
}
.cid-tRb3xWTUiz H3 {
  text-align: center;
}
.cid-tRb3xWTUiz H4 {
  color: #bbbbbb;
}
.cid-tRb3wAymK0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tRb3wAymK0 .mbr-text {
  text-align: left;
}
.cid-tnQRf2wSxb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnQRf2wSxb .item {
  padding-bottom: 2rem;
}
.cid-tnQRf2wSxb .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tnQRf2wSxb .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tnQRf2wSxb .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-tnQRf2wSxb .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tnQRf2wSxb .carousel-control,
.cid-tnQRf2wSxb .close {
  background: #1b1b1b;
}
.cid-tnQRf2wSxb .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tnQRf2wSxb .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tnQRf2wSxb .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tnQRf2wSxb .carousel-control-next span {
  margin-left: 5px;
}
.cid-tnQRf2wSxb .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-tnQRf2wSxb .close::before {
  content: '\e91a';
}
.cid-tnQRf2wSxb .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tnQRf2wSxb .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-tnQRf2wSxb .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnQRf2wSxb .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tnQRf2wSxb .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tnQRf2wSxb .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tnQRf2wSxb .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-tnQRf2wSxb .carousel-indicators li.active,
.cid-tnQRf2wSxb .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tnQRf2wSxb .carousel-indicators li::after,
.cid-tnQRf2wSxb .carousel-indicators li::before {
  content: none;
}
.cid-tnQRf2wSxb .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tnQRf2wSxb .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tnQRf2wSxb .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tnQRf2wSxb .carousel-indicators {
    display: none;
  }
}
.cid-tnQRf2wSxb .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tnQRf2wSxb .carousel-inner > .active {
  display: block;
}
.cid-tnQRf2wSxb .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnQRf2wSxb .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tnQRf2wSxb .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tnQRf2wSxb .carousel-control,
  .cid-tnQRf2wSxb .carousel-indicators,
  .cid-tnQRf2wSxb .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tnQRf2wSxb .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tnQRf2wSxb .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tnQRf2wSxb .carousel-indicators .active,
.cid-tnQRf2wSxb .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tnQRf2wSxb .carousel-indicators .active {
  background: #fff;
}
.cid-tnQRf2wSxb .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tnQRf2wSxb .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tnQRf2wSxb .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tnQRf2wSxb .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tnQRf2wSxb .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tnQRf2wSxb .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tnQRf2wSxb .carousel {
  width: 100%;
}
.cid-tnQRf2wSxb .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tnQRf2wSxb .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tnQRf2wSxb .modal.fade .modal-dialog,
.cid-tnQRf2wSxb .modal.in .modal-dialog {
  transform: none;
}
.cid-tnQRf2wSxb .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tnQRf2wSxb H6 {
  text-align: center;
}
.cid-tnQRf2wSxb H3 {
  text-align: center;
}
.cid-tnQRf2wSxb H4 {
  color: #bbbbbb;
}
.cid-tnQROv7v5o {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnQROv7v5o .item {
  padding-bottom: 2rem;
}
.cid-tnQROv7v5o .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tnQROv7v5o .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tnQROv7v5o .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-tnQROv7v5o .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tnQROv7v5o .carousel-control,
.cid-tnQROv7v5o .close {
  background: #1b1b1b;
}
.cid-tnQROv7v5o .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tnQROv7v5o .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tnQROv7v5o .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tnQROv7v5o .carousel-control-next span {
  margin-left: 5px;
}
.cid-tnQROv7v5o .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-tnQROv7v5o .close::before {
  content: '\e91a';
}
.cid-tnQROv7v5o .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tnQROv7v5o .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-tnQROv7v5o .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnQROv7v5o .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tnQROv7v5o .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tnQROv7v5o .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tnQROv7v5o .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-tnQROv7v5o .carousel-indicators li.active,
.cid-tnQROv7v5o .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tnQROv7v5o .carousel-indicators li::after,
.cid-tnQROv7v5o .carousel-indicators li::before {
  content: none;
}
.cid-tnQROv7v5o .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tnQROv7v5o .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tnQROv7v5o .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tnQROv7v5o .carousel-indicators {
    display: none;
  }
}
.cid-tnQROv7v5o .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tnQROv7v5o .carousel-inner > .active {
  display: block;
}
.cid-tnQROv7v5o .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnQROv7v5o .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tnQROv7v5o .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tnQROv7v5o .carousel-control,
  .cid-tnQROv7v5o .carousel-indicators,
  .cid-tnQROv7v5o .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tnQROv7v5o .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tnQROv7v5o .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tnQROv7v5o .carousel-indicators .active,
.cid-tnQROv7v5o .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tnQROv7v5o .carousel-indicators .active {
  background: #fff;
}
.cid-tnQROv7v5o .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tnQROv7v5o .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tnQROv7v5o .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tnQROv7v5o .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tnQROv7v5o .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tnQROv7v5o .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tnQROv7v5o .carousel {
  width: 100%;
}
.cid-tnQROv7v5o .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tnQROv7v5o .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tnQROv7v5o .modal.fade .modal-dialog,
.cid-tnQROv7v5o .modal.in .modal-dialog {
  transform: none;
}
.cid-tnQROv7v5o .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tnQROv7v5o H6 {
  text-align: center;
}
.cid-tnQROv7v5o H3 {
  text-align: center;
}
.cid-tnQROv7v5o H4 {
  color: #bbbbbb;
}
.cid-tnQRnlcPPe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8NunRhYfs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8NunRhYfs .item {
  padding-bottom: 2rem;
}
.cid-t8NunRhYfs .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-t8NunRhYfs .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t8NunRhYfs .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-t8NunRhYfs .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t8NunRhYfs .carousel-control,
.cid-t8NunRhYfs .close {
  background: #1b1b1b;
}
.cid-t8NunRhYfs .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t8NunRhYfs .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t8NunRhYfs .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t8NunRhYfs .carousel-control-next span {
  margin-left: 5px;
}
.cid-t8NunRhYfs .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-t8NunRhYfs .close::before {
  content: '\e91a';
}
.cid-t8NunRhYfs .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t8NunRhYfs .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-t8NunRhYfs .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8NunRhYfs .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t8NunRhYfs .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8NunRhYfs .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t8NunRhYfs .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-t8NunRhYfs .carousel-indicators li.active,
.cid-t8NunRhYfs .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t8NunRhYfs .carousel-indicators li::after,
.cid-t8NunRhYfs .carousel-indicators li::before {
  content: none;
}
.cid-t8NunRhYfs .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t8NunRhYfs .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t8NunRhYfs .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t8NunRhYfs .carousel-indicators {
    display: none;
  }
}
.cid-t8NunRhYfs .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t8NunRhYfs .carousel-inner > .active {
  display: block;
}
.cid-t8NunRhYfs .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8NunRhYfs .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8NunRhYfs .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t8NunRhYfs .carousel-control,
  .cid-t8NunRhYfs .carousel-indicators,
  .cid-t8NunRhYfs .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t8NunRhYfs .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t8NunRhYfs .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8NunRhYfs .carousel-indicators .active,
.cid-t8NunRhYfs .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t8NunRhYfs .carousel-indicators .active {
  background: #fff;
}
.cid-t8NunRhYfs .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t8NunRhYfs .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t8NunRhYfs .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t8NunRhYfs .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t8NunRhYfs .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t8NunRhYfs .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t8NunRhYfs .carousel {
  width: 100%;
}
.cid-t8NunRhYfs .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t8NunRhYfs .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t8NunRhYfs .modal.fade .modal-dialog,
.cid-t8NunRhYfs .modal.in .modal-dialog {
  transform: none;
}
.cid-t8NunRhYfs .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t8NunRhYfs H6 {
  text-align: center;
}
.cid-t8NunRhYfs H3 {
  text-align: center;
}
.cid-t8NunRhYfs H4 {
  color: #bbbbbb;
}
.cid-t8NuozPWND {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t1SaEI9Xfi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t1SaEI9Xfi .item {
  padding-bottom: 2rem;
}
.cid-t1SaEI9Xfi .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-t1SaEI9Xfi .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t1SaEI9Xfi .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-t1SaEI9Xfi .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t1SaEI9Xfi .carousel-control,
.cid-t1SaEI9Xfi .close {
  background: #1b1b1b;
}
.cid-t1SaEI9Xfi .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t1SaEI9Xfi .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t1SaEI9Xfi .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t1SaEI9Xfi .carousel-control-next span {
  margin-left: 5px;
}
.cid-t1SaEI9Xfi .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-t1SaEI9Xfi .close::before {
  content: '\e91a';
}
.cid-t1SaEI9Xfi .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t1SaEI9Xfi .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-t1SaEI9Xfi .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t1SaEI9Xfi .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t1SaEI9Xfi .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t1SaEI9Xfi .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t1SaEI9Xfi .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-t1SaEI9Xfi .carousel-indicators li.active,
.cid-t1SaEI9Xfi .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t1SaEI9Xfi .carousel-indicators li::after,
.cid-t1SaEI9Xfi .carousel-indicators li::before {
  content: none;
}
.cid-t1SaEI9Xfi .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t1SaEI9Xfi .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t1SaEI9Xfi .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t1SaEI9Xfi .carousel-indicators {
    display: none;
  }
}
.cid-t1SaEI9Xfi .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t1SaEI9Xfi .carousel-inner > .active {
  display: block;
}
.cid-t1SaEI9Xfi .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t1SaEI9Xfi .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t1SaEI9Xfi .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t1SaEI9Xfi .carousel-control,
  .cid-t1SaEI9Xfi .carousel-indicators,
  .cid-t1SaEI9Xfi .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t1SaEI9Xfi .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t1SaEI9Xfi .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t1SaEI9Xfi .carousel-indicators .active,
.cid-t1SaEI9Xfi .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t1SaEI9Xfi .carousel-indicators .active {
  background: #fff;
}
.cid-t1SaEI9Xfi .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t1SaEI9Xfi .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t1SaEI9Xfi .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t1SaEI9Xfi .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t1SaEI9Xfi .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t1SaEI9Xfi .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t1SaEI9Xfi .carousel {
  width: 100%;
}
.cid-t1SaEI9Xfi .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t1SaEI9Xfi .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t1SaEI9Xfi .modal.fade .modal-dialog,
.cid-t1SaEI9Xfi .modal.in .modal-dialog {
  transform: none;
}
.cid-t1SaEI9Xfi .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t1SaEI9Xfi H6 {
  text-align: center;
}
.cid-t1SaEI9Xfi H3 {
  text-align: center;
}
.cid-t1SaEI9Xfi H4 {
  color: #bbbbbb;
}
.cid-t1Se80wd0l {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t1SezXUQ3F {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t1SezXUQ3F .item {
  padding-bottom: 2rem;
}
.cid-t1SezXUQ3F .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-t1SezXUQ3F .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t1SezXUQ3F .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-t1SezXUQ3F .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t1SezXUQ3F .carousel-control,
.cid-t1SezXUQ3F .close {
  background: #1b1b1b;
}
.cid-t1SezXUQ3F .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t1SezXUQ3F .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t1SezXUQ3F .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t1SezXUQ3F .carousel-control-next span {
  margin-left: 5px;
}
.cid-t1SezXUQ3F .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-t1SezXUQ3F .close::before {
  content: '\e91a';
}
.cid-t1SezXUQ3F .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t1SezXUQ3F .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-t1SezXUQ3F .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t1SezXUQ3F .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t1SezXUQ3F .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t1SezXUQ3F .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t1SezXUQ3F .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-t1SezXUQ3F .carousel-indicators li.active,
.cid-t1SezXUQ3F .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t1SezXUQ3F .carousel-indicators li::after,
.cid-t1SezXUQ3F .carousel-indicators li::before {
  content: none;
}
.cid-t1SezXUQ3F .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t1SezXUQ3F .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t1SezXUQ3F .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t1SezXUQ3F .carousel-indicators {
    display: none;
  }
}
.cid-t1SezXUQ3F .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t1SezXUQ3F .carousel-inner > .active {
  display: block;
}
.cid-t1SezXUQ3F .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t1SezXUQ3F .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t1SezXUQ3F .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t1SezXUQ3F .carousel-control,
  .cid-t1SezXUQ3F .carousel-indicators,
  .cid-t1SezXUQ3F .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t1SezXUQ3F .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t1SezXUQ3F .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t1SezXUQ3F .carousel-indicators .active,
.cid-t1SezXUQ3F .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t1SezXUQ3F .carousel-indicators .active {
  background: #fff;
}
.cid-t1SezXUQ3F .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t1SezXUQ3F .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t1SezXUQ3F .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t1SezXUQ3F .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t1SezXUQ3F .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t1SezXUQ3F .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t1SezXUQ3F .carousel {
  width: 100%;
}
.cid-t1SezXUQ3F .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t1SezXUQ3F .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t1SezXUQ3F .modal.fade .modal-dialog,
.cid-t1SezXUQ3F .modal.in .modal-dialog {
  transform: none;
}
.cid-t1SezXUQ3F .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t1SezXUQ3F H6 {
  text-align: center;
}
.cid-t1SezXUQ3F H3 {
  text-align: center;
}
.cid-t1SezXUQ3F H4 {
  color: #bbbbbb;
}
.cid-t1SeBR5OrH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t1Sgkp24Mh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t1Sgkp24Mh .item {
  padding-bottom: 2rem;
}
.cid-t1Sgkp24Mh .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-t1Sgkp24Mh .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t1Sgkp24Mh .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-t1Sgkp24Mh .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t1Sgkp24Mh .carousel-control,
.cid-t1Sgkp24Mh .close {
  background: #1b1b1b;
}
.cid-t1Sgkp24Mh .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t1Sgkp24Mh .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t1Sgkp24Mh .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t1Sgkp24Mh .carousel-control-next span {
  margin-left: 5px;
}
.cid-t1Sgkp24Mh .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-t1Sgkp24Mh .close::before {
  content: '\e91a';
}
.cid-t1Sgkp24Mh .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t1Sgkp24Mh .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-t1Sgkp24Mh .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t1Sgkp24Mh .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t1Sgkp24Mh .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t1Sgkp24Mh .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t1Sgkp24Mh .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-t1Sgkp24Mh .carousel-indicators li.active,
.cid-t1Sgkp24Mh .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t1Sgkp24Mh .carousel-indicators li::after,
.cid-t1Sgkp24Mh .carousel-indicators li::before {
  content: none;
}
.cid-t1Sgkp24Mh .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t1Sgkp24Mh .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t1Sgkp24Mh .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t1Sgkp24Mh .carousel-indicators {
    display: none;
  }
}
.cid-t1Sgkp24Mh .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t1Sgkp24Mh .carousel-inner > .active {
  display: block;
}
.cid-t1Sgkp24Mh .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t1Sgkp24Mh .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t1Sgkp24Mh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t1Sgkp24Mh .carousel-control,
  .cid-t1Sgkp24Mh .carousel-indicators,
  .cid-t1Sgkp24Mh .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t1Sgkp24Mh .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t1Sgkp24Mh .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t1Sgkp24Mh .carousel-indicators .active,
.cid-t1Sgkp24Mh .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t1Sgkp24Mh .carousel-indicators .active {
  background: #fff;
}
.cid-t1Sgkp24Mh .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t1Sgkp24Mh .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t1Sgkp24Mh .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t1Sgkp24Mh .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t1Sgkp24Mh .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t1Sgkp24Mh .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t1Sgkp24Mh .carousel {
  width: 100%;
}
.cid-t1Sgkp24Mh .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t1Sgkp24Mh .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t1Sgkp24Mh .modal.fade .modal-dialog,
.cid-t1Sgkp24Mh .modal.in .modal-dialog {
  transform: none;
}
.cid-t1Sgkp24Mh .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t1Sgkp24Mh H6 {
  text-align: center;
}
.cid-t1Sgkp24Mh H3 {
  text-align: center;
}
.cid-t1Sgkp24Mh H4 {
  color: #bbbbbb;
}
.cid-s48P1Icc8J {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-s48P1Icc8J .row-links {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .social-row {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-s48P1Icc8J .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-s48P1Icc8J .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-s48P1Icc8J .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-s48P1Icc8J .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s48P1Icc8J .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-s48P1Icc8J .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s48P1Icc8J .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s48P1Icc8J .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-s48P1Icc8J .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-s48P1Icc8J .media-container-row .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-tXmNdZeQUh {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tXmNdZeQUh .mbr-text {
  text-align: center;
}
.cid-u6gUv3aLoQ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u6gUv3aLoQ .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-tVwfODzHPn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVwfODzHPn .item {
  padding-bottom: 2rem;
}
.cid-tVwfODzHPn .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tVwfODzHPn .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tVwfODzHPn .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-tVwfODzHPn .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tVwfODzHPn .carousel-control,
.cid-tVwfODzHPn .close {
  background: #1b1b1b;
}
.cid-tVwfODzHPn .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tVwfODzHPn .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tVwfODzHPn .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tVwfODzHPn .carousel-control-next span {
  margin-left: 5px;
}
.cid-tVwfODzHPn .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-tVwfODzHPn .close::before {
  content: '\e91a';
}
.cid-tVwfODzHPn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tVwfODzHPn .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-tVwfODzHPn .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tVwfODzHPn .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tVwfODzHPn .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tVwfODzHPn .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tVwfODzHPn .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-tVwfODzHPn .carousel-indicators li.active,
.cid-tVwfODzHPn .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tVwfODzHPn .carousel-indicators li::after,
.cid-tVwfODzHPn .carousel-indicators li::before {
  content: none;
}
.cid-tVwfODzHPn .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tVwfODzHPn .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tVwfODzHPn .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tVwfODzHPn .carousel-indicators {
    display: none;
  }
}
.cid-tVwfODzHPn .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tVwfODzHPn .carousel-inner > .active {
  display: block;
}
.cid-tVwfODzHPn .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tVwfODzHPn .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tVwfODzHPn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tVwfODzHPn .carousel-control,
  .cid-tVwfODzHPn .carousel-indicators,
  .cid-tVwfODzHPn .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tVwfODzHPn .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tVwfODzHPn .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tVwfODzHPn .carousel-indicators .active,
.cid-tVwfODzHPn .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tVwfODzHPn .carousel-indicators .active {
  background: #fff;
}
.cid-tVwfODzHPn .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tVwfODzHPn .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tVwfODzHPn .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tVwfODzHPn .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tVwfODzHPn .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tVwfODzHPn .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tVwfODzHPn .carousel {
  width: 100%;
}
.cid-tVwfODzHPn .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tVwfODzHPn .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tVwfODzHPn .modal.fade .modal-dialog,
.cid-tVwfODzHPn .modal.in .modal-dialog {
  transform: none;
}
.cid-tVwfODzHPn .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tVwfODzHPn H6 {
  text-align: center;
}
.cid-tVwfODzHPn H3 {
  text-align: center;
}
.cid-tVwfODzHPn H4 {
  color: #bbbbbb;
}
.cid-tVwfOERY63 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVwfOFaRUA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tVwfOFaRUA nav.navbar {
  position: fixed;
}
.cid-tVwfOFaRUA .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-tVwfOFaRUA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tVwfOFaRUA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tVwfOFaRUA .dropdown-item:hover,
.cid-tVwfOFaRUA .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tVwfOFaRUA .dropdown-item:hover span {
  color: white;
}
.cid-tVwfOFaRUA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tVwfOFaRUA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tVwfOFaRUA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tVwfOFaRUA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tVwfOFaRUA .nav-link {
  position: relative;
}
.cid-tVwfOFaRUA .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tVwfOFaRUA .container {
    flex-wrap: nowrap;
  }
}
.cid-tVwfOFaRUA .iconfont-wrapper {
  color: #bbbbbb !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tVwfOFaRUA .dropdown-menu,
.cid-tVwfOFaRUA .navbar.opened {
  background: #ffffff !important;
}
.cid-tVwfOFaRUA .nav-item:focus,
.cid-tVwfOFaRUA .nav-link:focus {
  outline: none;
}
.cid-tVwfOFaRUA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVwfOFaRUA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVwfOFaRUA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVwfOFaRUA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVwfOFaRUA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVwfOFaRUA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVwfOFaRUA .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tVwfOFaRUA .navbar.opened {
  transition: all 0.3s;
}
.cid-tVwfOFaRUA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tVwfOFaRUA .navbar .navbar-logo img {
  width: auto;
}
.cid-tVwfOFaRUA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tVwfOFaRUA .navbar.collapsed {
  justify-content: center;
}
.cid-tVwfOFaRUA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVwfOFaRUA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tVwfOFaRUA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tVwfOFaRUA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVwfOFaRUA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVwfOFaRUA .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-tVwfOFaRUA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVwfOFaRUA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tVwfOFaRUA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tVwfOFaRUA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVwfOFaRUA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVwfOFaRUA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVwfOFaRUA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tVwfOFaRUA .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-tVwfOFaRUA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVwfOFaRUA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tVwfOFaRUA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tVwfOFaRUA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tVwfOFaRUA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVwfOFaRUA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tVwfOFaRUA .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVwfOFaRUA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVwfOFaRUA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVwfOFaRUA .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tVwfOFaRUA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tVwfOFaRUA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVwfOFaRUA .dropdown-item.active,
.cid-tVwfOFaRUA .dropdown-item:active {
  background-color: transparent;
}
.cid-tVwfOFaRUA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tVwfOFaRUA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVwfOFaRUA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVwfOFaRUA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tVwfOFaRUA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVwfOFaRUA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVwfOFaRUA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tVwfOFaRUA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVwfOFaRUA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tVwfOFaRUA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tVwfOFaRUA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVwfOFaRUA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVwfOFaRUA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVwfOFaRUA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVwfOFaRUA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVwfOFaRUA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVwfOFaRUA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVwfOFaRUA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVwfOFaRUA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tVwfOFaRUA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tVwfOFaRUA .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-tVwfOFaRUA .navbar {
    height: 70px;
  }
  .cid-tVwfOFaRUA .navbar.opened {
    height: auto;
  }
  .cid-tVwfOFaRUA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVwfOFFBKI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVwfOFFBKI .item {
  padding-bottom: 2rem;
}
.cid-tVwfOFFBKI .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tVwfOFFBKI .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tVwfOFFBKI .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-tVwfOFFBKI .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tVwfOFFBKI .carousel-control,
.cid-tVwfOFFBKI .close {
  background: #1b1b1b;
}
.cid-tVwfOFFBKI .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tVwfOFFBKI .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tVwfOFFBKI .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tVwfOFFBKI .carousel-control-next span {
  margin-left: 5px;
}
.cid-tVwfOFFBKI .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-tVwfOFFBKI .close::before {
  content: '\e91a';
}
.cid-tVwfOFFBKI .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tVwfOFFBKI .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-tVwfOFFBKI .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tVwfOFFBKI .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tVwfOFFBKI .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tVwfOFFBKI .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tVwfOFFBKI .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-tVwfOFFBKI .carousel-indicators li.active,
.cid-tVwfOFFBKI .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tVwfOFFBKI .carousel-indicators li::after,
.cid-tVwfOFFBKI .carousel-indicators li::before {
  content: none;
}
.cid-tVwfOFFBKI .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tVwfOFFBKI .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tVwfOFFBKI .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tVwfOFFBKI .carousel-indicators {
    display: none;
  }
}
.cid-tVwfOFFBKI .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tVwfOFFBKI .carousel-inner > .active {
  display: block;
}
.cid-tVwfOFFBKI .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tVwfOFFBKI .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tVwfOFFBKI .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tVwfOFFBKI .carousel-control,
  .cid-tVwfOFFBKI .carousel-indicators,
  .cid-tVwfOFFBKI .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tVwfOFFBKI .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tVwfOFFBKI .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tVwfOFFBKI .carousel-indicators .active,
.cid-tVwfOFFBKI .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tVwfOFFBKI .carousel-indicators .active {
  background: #fff;
}
.cid-tVwfOFFBKI .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tVwfOFFBKI .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tVwfOFFBKI .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tVwfOFFBKI .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tVwfOFFBKI .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tVwfOFFBKI .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tVwfOFFBKI .carousel {
  width: 100%;
}
.cid-tVwfOFFBKI .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tVwfOFFBKI .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tVwfOFFBKI .modal.fade .modal-dialog,
.cid-tVwfOFFBKI .modal.in .modal-dialog {
  transform: none;
}
.cid-tVwfOFFBKI .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tVwfOFFBKI H6 {
  text-align: center;
}
.cid-tVwfOFFBKI H3 {
  text-align: center;
}
.cid-tVwfOFFBKI H4 {
  color: #bbbbbb;
}
.cid-tVwfOGmkic {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVwfOGmkic .mbr-text {
  text-align: left;
}
.cid-tVwfOObqsc {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tVwfOObqsc .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tVwfOObqsc .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tVwfOObqsc .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tVwfOObqsc .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tVwfOObqsc .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tVwfOObqsc .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tVwfOObqsc .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tVwfOObqsc .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tVwfOObqsc .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tVwfOObqsc .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tVwfOObqsc .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tVwfOObqsc .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tVwfOObqsc .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tVwfOObqsc .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tVwfOObqsc .media-container-row .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-uudmE9DQF6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uudmE9DQF6 .mbr-text {
  text-align: center;
}
.cid-uudmLkbAZa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uudmLkbAZa .item {
  padding-bottom: 2rem;
}
.cid-uudmLkbAZa .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uudmLkbAZa .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uudmLkbAZa .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-uudmLkbAZa .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uudmLkbAZa .carousel-control,
.cid-uudmLkbAZa .close {
  background: #1b1b1b;
}
.cid-uudmLkbAZa .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uudmLkbAZa .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uudmLkbAZa .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uudmLkbAZa .carousel-control-next span {
  margin-left: 5px;
}
.cid-uudmLkbAZa .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-uudmLkbAZa .close::before {
  content: '\e91a';
}
.cid-uudmLkbAZa .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uudmLkbAZa .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-uudmLkbAZa .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uudmLkbAZa .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uudmLkbAZa .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uudmLkbAZa .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uudmLkbAZa .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-uudmLkbAZa .carousel-indicators li.active,
.cid-uudmLkbAZa .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uudmLkbAZa .carousel-indicators li::after,
.cid-uudmLkbAZa .carousel-indicators li::before {
  content: none;
}
.cid-uudmLkbAZa .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uudmLkbAZa .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uudmLkbAZa .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uudmLkbAZa .carousel-indicators {
    display: none;
  }
}
.cid-uudmLkbAZa .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uudmLkbAZa .carousel-inner > .active {
  display: block;
}
.cid-uudmLkbAZa .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uudmLkbAZa .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uudmLkbAZa .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uudmLkbAZa .carousel-control,
  .cid-uudmLkbAZa .carousel-indicators,
  .cid-uudmLkbAZa .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uudmLkbAZa .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uudmLkbAZa .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uudmLkbAZa .carousel-indicators .active,
.cid-uudmLkbAZa .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uudmLkbAZa .carousel-indicators .active {
  background: #fff;
}
.cid-uudmLkbAZa .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uudmLkbAZa .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uudmLkbAZa .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uudmLkbAZa .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uudmLkbAZa .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uudmLkbAZa .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uudmLkbAZa .carousel {
  width: 100%;
}
.cid-uudmLkbAZa .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uudmLkbAZa .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uudmLkbAZa .modal.fade .modal-dialog,
.cid-uudmLkbAZa .modal.in .modal-dialog {
  transform: none;
}
.cid-uudmLkbAZa .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uudmLkbAZa H6 {
  text-align: center;
}
.cid-uudmLkbAZa H3 {
  text-align: center;
}
.cid-uudmLkbAZa H4 {
  color: #bbbbbb;
}
.cid-uudqBGEZoI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uudqBGEZoI ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uudqBGEZoI li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uudqBGEZoI ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #bbbbbb;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uudqtWaI5n {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uudqtWaI5n .mbr-text {
  text-align: left;
}
.cid-tXmNBtseKi {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tXmNBtseKi .mbr-text {
  text-align: center;
}
.cid-tXmNG4cJsU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWz5OLvaiS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWz5OLvaiS .item {
  padding-bottom: 2rem;
}
.cid-tWz5OLvaiS .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tWz5OLvaiS .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tWz5OLvaiS .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-tWz5OLvaiS .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tWz5OLvaiS .carousel-control,
.cid-tWz5OLvaiS .close {
  background: #1b1b1b;
}
.cid-tWz5OLvaiS .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWz5OLvaiS .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWz5OLvaiS .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWz5OLvaiS .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWz5OLvaiS .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-tWz5OLvaiS .close::before {
  content: '\e91a';
}
.cid-tWz5OLvaiS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWz5OLvaiS .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-tWz5OLvaiS .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWz5OLvaiS .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWz5OLvaiS .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWz5OLvaiS .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWz5OLvaiS .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-tWz5OLvaiS .carousel-indicators li.active,
.cid-tWz5OLvaiS .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWz5OLvaiS .carousel-indicators li::after,
.cid-tWz5OLvaiS .carousel-indicators li::before {
  content: none;
}
.cid-tWz5OLvaiS .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWz5OLvaiS .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWz5OLvaiS .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWz5OLvaiS .carousel-indicators {
    display: none;
  }
}
.cid-tWz5OLvaiS .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWz5OLvaiS .carousel-inner > .active {
  display: block;
}
.cid-tWz5OLvaiS .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWz5OLvaiS .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWz5OLvaiS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWz5OLvaiS .carousel-control,
  .cid-tWz5OLvaiS .carousel-indicators,
  .cid-tWz5OLvaiS .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWz5OLvaiS .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWz5OLvaiS .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWz5OLvaiS .carousel-indicators .active,
.cid-tWz5OLvaiS .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWz5OLvaiS .carousel-indicators .active {
  background: #fff;
}
.cid-tWz5OLvaiS .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWz5OLvaiS .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWz5OLvaiS .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWz5OLvaiS .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWz5OLvaiS .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWz5OLvaiS .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWz5OLvaiS .carousel {
  width: 100%;
}
.cid-tWz5OLvaiS .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWz5OLvaiS .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWz5OLvaiS .modal.fade .modal-dialog,
.cid-tWz5OLvaiS .modal.in .modal-dialog {
  transform: none;
}
.cid-tWz5OLvaiS .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWz5OLvaiS H6 {
  text-align: center;
}
.cid-tWz5OLvaiS H3 {
  text-align: center;
}
.cid-tWz5OLvaiS H4 {
  color: #bbbbbb;
}
.cid-tWz5998UFX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWz599sZL0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tWz599sZL0 nav.navbar {
  position: fixed;
}
.cid-tWz599sZL0 .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-tWz599sZL0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWz599sZL0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWz599sZL0 .dropdown-item:hover,
.cid-tWz599sZL0 .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-tWz599sZL0 .dropdown-item:hover span {
  color: white;
}
.cid-tWz599sZL0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWz599sZL0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWz599sZL0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWz599sZL0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWz599sZL0 .nav-link {
  position: relative;
}
.cid-tWz599sZL0 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tWz599sZL0 .container {
    flex-wrap: nowrap;
  }
}
.cid-tWz599sZL0 .iconfont-wrapper {
  color: #bbbbbb !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWz599sZL0 .dropdown-menu,
.cid-tWz599sZL0 .navbar.opened {
  background: #ffffff !important;
}
.cid-tWz599sZL0 .nav-item:focus,
.cid-tWz599sZL0 .nav-link:focus {
  outline: none;
}
.cid-tWz599sZL0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWz599sZL0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWz599sZL0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWz599sZL0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWz599sZL0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWz599sZL0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWz599sZL0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tWz599sZL0 .navbar.opened {
  transition: all 0.3s;
}
.cid-tWz599sZL0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWz599sZL0 .navbar .navbar-logo img {
  width: auto;
}
.cid-tWz599sZL0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWz599sZL0 .navbar.collapsed {
  justify-content: center;
}
.cid-tWz599sZL0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWz599sZL0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWz599sZL0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tWz599sZL0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWz599sZL0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWz599sZL0 .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-tWz599sZL0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWz599sZL0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWz599sZL0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWz599sZL0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWz599sZL0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWz599sZL0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWz599sZL0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWz599sZL0 .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-tWz599sZL0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWz599sZL0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWz599sZL0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWz599sZL0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWz599sZL0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWz599sZL0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tWz599sZL0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWz599sZL0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWz599sZL0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWz599sZL0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tWz599sZL0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWz599sZL0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWz599sZL0 .dropdown-item.active,
.cid-tWz599sZL0 .dropdown-item:active {
  background-color: transparent;
}
.cid-tWz599sZL0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWz599sZL0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWz599sZL0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWz599sZL0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tWz599sZL0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWz599sZL0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWz599sZL0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWz599sZL0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWz599sZL0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWz599sZL0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWz599sZL0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWz599sZL0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWz599sZL0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWz599sZL0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWz599sZL0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWz599sZL0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWz599sZL0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWz599sZL0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWz599sZL0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWz599sZL0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWz599sZL0 .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-tWz599sZL0 .navbar {
    height: 70px;
  }
  .cid-tWz599sZL0 .navbar.opened {
    height: auto;
  }
  .cid-tWz599sZL0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWz599XBzK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWz599XBzK .item {
  padding-bottom: 2rem;
}
.cid-tWz599XBzK .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tWz599XBzK .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tWz599XBzK .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-tWz599XBzK .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tWz599XBzK .carousel-control,
.cid-tWz599XBzK .close {
  background: #1b1b1b;
}
.cid-tWz599XBzK .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWz599XBzK .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWz599XBzK .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWz599XBzK .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWz599XBzK .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-tWz599XBzK .close::before {
  content: '\e91a';
}
.cid-tWz599XBzK .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWz599XBzK .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-tWz599XBzK .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWz599XBzK .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWz599XBzK .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWz599XBzK .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWz599XBzK .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-tWz599XBzK .carousel-indicators li.active,
.cid-tWz599XBzK .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWz599XBzK .carousel-indicators li::after,
.cid-tWz599XBzK .carousel-indicators li::before {
  content: none;
}
.cid-tWz599XBzK .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWz599XBzK .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWz599XBzK .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWz599XBzK .carousel-indicators {
    display: none;
  }
}
.cid-tWz599XBzK .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWz599XBzK .carousel-inner > .active {
  display: block;
}
.cid-tWz599XBzK .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWz599XBzK .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWz599XBzK .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWz599XBzK .carousel-control,
  .cid-tWz599XBzK .carousel-indicators,
  .cid-tWz599XBzK .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWz599XBzK .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWz599XBzK .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWz599XBzK .carousel-indicators .active,
.cid-tWz599XBzK .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWz599XBzK .carousel-indicators .active {
  background: #fff;
}
.cid-tWz599XBzK .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWz599XBzK .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWz599XBzK .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWz599XBzK .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWz599XBzK .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWz599XBzK .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWz599XBzK .carousel {
  width: 100%;
}
.cid-tWz599XBzK .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWz599XBzK .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWz599XBzK .modal.fade .modal-dialog,
.cid-tWz599XBzK .modal.in .modal-dialog {
  transform: none;
}
.cid-tWz599XBzK .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWz599XBzK H6 {
  text-align: center;
}
.cid-tWz599XBzK H3 {
  text-align: center;
}
.cid-tWz599XBzK H4 {
  color: #bbbbbb;
}
.cid-tWz59aAxnQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWz59aAxnQ .mbr-text {
  text-align: left;
}
.cid-tWz5XcWBp9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWz5XcWBp9 .item {
  padding-bottom: 2rem;
}
.cid-tWz5XcWBp9 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tWz5XcWBp9 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tWz5XcWBp9 .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-tWz5XcWBp9 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tWz5XcWBp9 .carousel-control,
.cid-tWz5XcWBp9 .close {
  background: #1b1b1b;
}
.cid-tWz5XcWBp9 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWz5XcWBp9 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWz5XcWBp9 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWz5XcWBp9 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWz5XcWBp9 .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-tWz5XcWBp9 .close::before {
  content: '\e91a';
}
.cid-tWz5XcWBp9 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWz5XcWBp9 .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-tWz5XcWBp9 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWz5XcWBp9 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWz5XcWBp9 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWz5XcWBp9 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWz5XcWBp9 .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-tWz5XcWBp9 .carousel-indicators li.active,
.cid-tWz5XcWBp9 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWz5XcWBp9 .carousel-indicators li::after,
.cid-tWz5XcWBp9 .carousel-indicators li::before {
  content: none;
}
.cid-tWz5XcWBp9 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWz5XcWBp9 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWz5XcWBp9 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWz5XcWBp9 .carousel-indicators {
    display: none;
  }
}
.cid-tWz5XcWBp9 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWz5XcWBp9 .carousel-inner > .active {
  display: block;
}
.cid-tWz5XcWBp9 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWz5XcWBp9 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWz5XcWBp9 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWz5XcWBp9 .carousel-control,
  .cid-tWz5XcWBp9 .carousel-indicators,
  .cid-tWz5XcWBp9 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWz5XcWBp9 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWz5XcWBp9 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWz5XcWBp9 .carousel-indicators .active,
.cid-tWz5XcWBp9 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWz5XcWBp9 .carousel-indicators .active {
  background: #fff;
}
.cid-tWz5XcWBp9 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWz5XcWBp9 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWz5XcWBp9 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWz5XcWBp9 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWz5XcWBp9 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWz5XcWBp9 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWz5XcWBp9 .carousel {
  width: 100%;
}
.cid-tWz5XcWBp9 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWz5XcWBp9 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWz5XcWBp9 .modal.fade .modal-dialog,
.cid-tWz5XcWBp9 .modal.in .modal-dialog {
  transform: none;
}
.cid-tWz5XcWBp9 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWz5XcWBp9 H6 {
  text-align: center;
}
.cid-tWz5XcWBp9 H3 {
  text-align: center;
}
.cid-tWz5XcWBp9 H4 {
  color: #bbbbbb;
}
.cid-tWz59aWUM1 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tWz59aWUM1 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tWz59aWUM1 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tWz59aWUM1 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tWz59aWUM1 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tWz59aWUM1 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tWz59aWUM1 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tWz59aWUM1 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tWz59aWUM1 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tWz59aWUM1 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tWz59aWUM1 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tWz59aWUM1 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tWz59aWUM1 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWz59aWUM1 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tWz59aWUM1 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tWz59aWUM1 .media-container-row .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-u4WLrF8lps {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u4WLrF8lps .mbr-text {
  text-align: center;
}
.cid-u4WLrI7OeZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u4WLrI7OeZ .mbr-text {
  text-align: left;
}
.cid-u4WLrGXXAO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u4WLrGXXAO nav.navbar {
  position: fixed;
}
.cid-u4WLrGXXAO .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-u4WLrGXXAO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4WLrGXXAO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4WLrGXXAO .dropdown-item:hover,
.cid-u4WLrGXXAO .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-u4WLrGXXAO .dropdown-item:hover span {
  color: white;
}
.cid-u4WLrGXXAO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4WLrGXXAO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4WLrGXXAO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4WLrGXXAO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4WLrGXXAO .nav-link {
  position: relative;
}
.cid-u4WLrGXXAO .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u4WLrGXXAO .container {
    flex-wrap: nowrap;
  }
}
.cid-u4WLrGXXAO .iconfont-wrapper {
  color: #bbbbbb !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4WLrGXXAO .dropdown-menu,
.cid-u4WLrGXXAO .navbar.opened {
  background: #ffffff !important;
}
.cid-u4WLrGXXAO .nav-item:focus,
.cid-u4WLrGXXAO .nav-link:focus {
  outline: none;
}
.cid-u4WLrGXXAO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4WLrGXXAO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4WLrGXXAO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4WLrGXXAO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4WLrGXXAO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4WLrGXXAO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4WLrGXXAO .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u4WLrGXXAO .navbar.opened {
  transition: all 0.3s;
}
.cid-u4WLrGXXAO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4WLrGXXAO .navbar .navbar-logo img {
  width: auto;
}
.cid-u4WLrGXXAO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u4WLrGXXAO .navbar.collapsed {
  justify-content: center;
}
.cid-u4WLrGXXAO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4WLrGXXAO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4WLrGXXAO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u4WLrGXXAO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4WLrGXXAO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4WLrGXXAO .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-u4WLrGXXAO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u4WLrGXXAO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4WLrGXXAO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4WLrGXXAO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4WLrGXXAO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4WLrGXXAO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4WLrGXXAO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4WLrGXXAO .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-u4WLrGXXAO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4WLrGXXAO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4WLrGXXAO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4WLrGXXAO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4WLrGXXAO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4WLrGXXAO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u4WLrGXXAO .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4WLrGXXAO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4WLrGXXAO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u4WLrGXXAO .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u4WLrGXXAO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u4WLrGXXAO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4WLrGXXAO .dropdown-item.active,
.cid-u4WLrGXXAO .dropdown-item:active {
  background-color: transparent;
}
.cid-u4WLrGXXAO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4WLrGXXAO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4WLrGXXAO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4WLrGXXAO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u4WLrGXXAO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4WLrGXXAO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4WLrGXXAO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u4WLrGXXAO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u4WLrGXXAO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u4WLrGXXAO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u4WLrGXXAO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4WLrGXXAO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4WLrGXXAO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4WLrGXXAO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u4WLrGXXAO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4WLrGXXAO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u4WLrGXXAO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u4WLrGXXAO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4WLrGXXAO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u4WLrGXXAO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4WLrGXXAO .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-u4WLrGXXAO .navbar {
    height: 70px;
  }
  .cid-u4WLrGXXAO .navbar.opened {
    height: auto;
  }
  .cid-u4WLrGXXAO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4WLrHsPqJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u4WLrHsPqJ .item {
  padding-bottom: 2rem;
}
.cid-u4WLrHsPqJ .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u4WLrHsPqJ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u4WLrHsPqJ .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-u4WLrHsPqJ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u4WLrHsPqJ .carousel-control,
.cid-u4WLrHsPqJ .close {
  background: #1b1b1b;
}
.cid-u4WLrHsPqJ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u4WLrHsPqJ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u4WLrHsPqJ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u4WLrHsPqJ .carousel-control-next span {
  margin-left: 5px;
}
.cid-u4WLrHsPqJ .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-u4WLrHsPqJ .close::before {
  content: '\e91a';
}
.cid-u4WLrHsPqJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u4WLrHsPqJ .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-u4WLrHsPqJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u4WLrHsPqJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u4WLrHsPqJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u4WLrHsPqJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u4WLrHsPqJ .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-u4WLrHsPqJ .carousel-indicators li.active,
.cid-u4WLrHsPqJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u4WLrHsPqJ .carousel-indicators li::after,
.cid-u4WLrHsPqJ .carousel-indicators li::before {
  content: none;
}
.cid-u4WLrHsPqJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u4WLrHsPqJ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u4WLrHsPqJ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u4WLrHsPqJ .carousel-indicators {
    display: none;
  }
}
.cid-u4WLrHsPqJ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u4WLrHsPqJ .carousel-inner > .active {
  display: block;
}
.cid-u4WLrHsPqJ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u4WLrHsPqJ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u4WLrHsPqJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u4WLrHsPqJ .carousel-control,
  .cid-u4WLrHsPqJ .carousel-indicators,
  .cid-u4WLrHsPqJ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u4WLrHsPqJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u4WLrHsPqJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u4WLrHsPqJ .carousel-indicators .active,
.cid-u4WLrHsPqJ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u4WLrHsPqJ .carousel-indicators .active {
  background: #fff;
}
.cid-u4WLrHsPqJ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u4WLrHsPqJ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u4WLrHsPqJ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u4WLrHsPqJ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u4WLrHsPqJ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u4WLrHsPqJ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u4WLrHsPqJ .carousel {
  width: 100%;
}
.cid-u4WLrHsPqJ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u4WLrHsPqJ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u4WLrHsPqJ .modal.fade .modal-dialog,
.cid-u4WLrHsPqJ .modal.in .modal-dialog {
  transform: none;
}
.cid-u4WLrHsPqJ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u4WLrHsPqJ H6 {
  text-align: center;
}
.cid-u4WLrHsPqJ H3 {
  text-align: center;
}
.cid-u4WLrHsPqJ H4 {
  color: #bbbbbb;
}
.cid-u4X0bjXoHZ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u4X0bjXoHZ .video-wrapper iframe {
  width: 100%;
}
.cid-u4X0bjXoHZ .mbr-section-title,
.cid-u4X0bjXoHZ .mbr-section-subtitle,
.cid-u4X0bjXoHZ .mbr-text {
  text-align: center;
}
.cid-u4X3pK9EDl {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u4X3pK9EDl .video-wrapper iframe {
  width: 100%;
}
.cid-u4X3pK9EDl .mbr-section-title,
.cid-u4X3pK9EDl .mbr-section-subtitle,
.cid-u4X3pK9EDl .mbr-text {
  text-align: center;
}
.cid-u4X3qBTF32 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u4X3qBTF32 .video-wrapper iframe {
  width: 100%;
}
.cid-u4X3qBTF32 .mbr-section-title,
.cid-u4X3qBTF32 .mbr-section-subtitle,
.cid-u4X3qBTF32 .mbr-text {
  text-align: center;
}
.cid-u4WLrItgIj {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u4WLrItgIj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u4WLrItgIj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u4WLrItgIj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u4WLrItgIj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u4WLrItgIj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u4WLrItgIj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u4WLrItgIj .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u4WLrItgIj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u4WLrItgIj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u4WLrItgIj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u4WLrItgIj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4WLrItgIj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4WLrItgIj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u4WLrItgIj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u4WLrItgIj .media-container-row .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-u57H4O8Krc {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u57H4O8Krc .mbr-text {
  text-align: center;
}
.cid-u57H4R8ScH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u57H4R8ScH nav.navbar {
  position: fixed;
}
.cid-u57H4R8ScH .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-u57H4R8ScH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u57H4R8ScH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u57H4R8ScH .dropdown-item:hover,
.cid-u57H4R8ScH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-u57H4R8ScH .dropdown-item:hover span {
  color: white;
}
.cid-u57H4R8ScH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u57H4R8ScH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u57H4R8ScH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u57H4R8ScH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u57H4R8ScH .nav-link {
  position: relative;
}
.cid-u57H4R8ScH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u57H4R8ScH .container {
    flex-wrap: nowrap;
  }
}
.cid-u57H4R8ScH .iconfont-wrapper {
  color: #bbbbbb !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u57H4R8ScH .dropdown-menu,
.cid-u57H4R8ScH .navbar.opened {
  background: #ffffff !important;
}
.cid-u57H4R8ScH .nav-item:focus,
.cid-u57H4R8ScH .nav-link:focus {
  outline: none;
}
.cid-u57H4R8ScH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u57H4R8ScH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u57H4R8ScH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u57H4R8ScH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u57H4R8ScH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u57H4R8ScH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u57H4R8ScH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u57H4R8ScH .navbar.opened {
  transition: all 0.3s;
}
.cid-u57H4R8ScH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u57H4R8ScH .navbar .navbar-logo img {
  width: auto;
}
.cid-u57H4R8ScH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u57H4R8ScH .navbar.collapsed {
  justify-content: center;
}
.cid-u57H4R8ScH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u57H4R8ScH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u57H4R8ScH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u57H4R8ScH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u57H4R8ScH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u57H4R8ScH .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-u57H4R8ScH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u57H4R8ScH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u57H4R8ScH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u57H4R8ScH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u57H4R8ScH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u57H4R8ScH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u57H4R8ScH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u57H4R8ScH .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-u57H4R8ScH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u57H4R8ScH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u57H4R8ScH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u57H4R8ScH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u57H4R8ScH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u57H4R8ScH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u57H4R8ScH .navbar.navbar-short {
  min-height: 60px;
}
.cid-u57H4R8ScH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u57H4R8ScH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u57H4R8ScH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u57H4R8ScH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u57H4R8ScH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u57H4R8ScH .dropdown-item.active,
.cid-u57H4R8ScH .dropdown-item:active {
  background-color: transparent;
}
.cid-u57H4R8ScH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u57H4R8ScH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u57H4R8ScH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u57H4R8ScH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u57H4R8ScH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u57H4R8ScH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u57H4R8ScH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u57H4R8ScH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u57H4R8ScH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u57H4R8ScH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u57H4R8ScH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u57H4R8ScH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u57H4R8ScH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u57H4R8ScH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u57H4R8ScH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u57H4R8ScH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u57H4R8ScH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u57H4R8ScH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u57H4R8ScH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u57H4R8ScH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u57H4R8ScH .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-u57H4R8ScH .navbar {
    height: 70px;
  }
  .cid-u57H4R8ScH .navbar.opened {
    height: auto;
  }
  .cid-u57H4R8ScH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u57IIx2vtp {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u57IIx2vtp .timeline-element {
  position: relative;
}
.cid-u57IIx2vtp .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-u57IIx2vtp .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u57IIx2vtp .mbr-section-title,
.cid-u57IIx2vtp .mbr-section-subtitle,
.cid-u57IIx2vtp .timeline-date {
  text-align: center;
}
.cid-u57IIx2vtp .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #bbbbbb;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-u57IIx2vtp .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-u57IIx2vtp .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-u57IIx2vtp .row:after {
  content: "";
  position: absolute;
  background-color: #bbbbbb;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-u57IIx2vtp .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-u57IIx2vtp .row:after {
    height: calc(100% - 20px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-u57IIx2vtp .timeline-date-wrapper,
  .cid-u57IIx2vtp .timeline-text-wrapper,
  .cid-u57IIx2vtp .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-u57IIx2vtp .mbr-timeline-date {
    text-align: left !important;
  }
  .cid-u57IIx2vtp .mbr-timeline-title {
    text-align: left;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u57IIx2vtp .timeline-date-wrapper,
  .cid-u57IIx2vtp .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u57IIx2vtp .timeline-date-wrapper,
  .cid-u57IIx2vtp .timeline-text-wrapper,
  .cid-u57IIx2vtp .image-wrapper {
    padding: 2rem;
  }
}
.cid-u57H4QCcfY {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u57H4QCcfY .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u57H4QCcfY .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u57H4QCcfY .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u57H4QCcfY .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u57H4QCcfY .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u57H4QCcfY .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u57H4QCcfY .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u57H4QCcfY .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u57H4QCcfY .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u57H4QCcfY .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u57H4QCcfY .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u57H4QCcfY .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u57H4QCcfY .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u57H4QCcfY .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u57H4QCcfY .media-container-row .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
