body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Tajawal', sans-serif;
  font-size: 1.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-2 {
  font-family: 'Tajawal', sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-4 {
  font-family: 'Bellota Text', display;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Tajawal', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Tajawal', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 0.96rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 0.84rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #000000 !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: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !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: #000000 !important;
  border-color: #000000 !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: #000000 !important;
}
.text-secondary {
  color: #000000 !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: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !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: #000000;
}
.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: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.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: 'Bellota Text', display;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Bellota Text', display;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.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: #000000;
  border-bottom-color: #000000;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #000000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #000000 !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='%23000000' %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-teWvBM92xf {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-teWt8sqAGn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-teWt8sqAGn .mbr-fallback-image.disabled {
  display: none;
}
.cid-teWt8sqAGn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-teWt8sqAGn .mbr-section-title {
  text-align: left;
}
.cid-teWt8sqAGn .mbr-section-subtitle {
  text-align: left;
}
.cid-tf24B5MOOX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf24B5MOOX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf24B5MOOX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf24B5MOOX .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tf24B5MOOX .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tf24B5MOOX .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tf24B5MOOX .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tf24B5MOOX .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-tf24B5MOOX .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tf24B5MOOX .carousel-control,
.cid-tf24B5MOOX .close {
  background: #1b1b1b;
}
.cid-tf24B5MOOX .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tf24B5MOOX .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tf24B5MOOX .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tf24B5MOOX .carousel-control-next span {
  margin-left: 5px;
}
.cid-tf24B5MOOX .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-tf24B5MOOX .close::before {
  content: '\e91a';
}
.cid-tf24B5MOOX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tf24B5MOOX .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-tf24B5MOOX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tf24B5MOOX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tf24B5MOOX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tf24B5MOOX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tf24B5MOOX .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-tf24B5MOOX .carousel-indicators li.active,
.cid-tf24B5MOOX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tf24B5MOOX .carousel-indicators li::after,
.cid-tf24B5MOOX .carousel-indicators li::before {
  content: none;
}
.cid-tf24B5MOOX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tf24B5MOOX .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tf24B5MOOX .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tf24B5MOOX .carousel-indicators {
    display: none;
  }
}
.cid-tf24B5MOOX .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tf24B5MOOX .carousel-inner > .active {
  display: block;
}
.cid-tf24B5MOOX .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tf24B5MOOX .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tf24B5MOOX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tf24B5MOOX .carousel-control,
  .cid-tf24B5MOOX .carousel-indicators,
  .cid-tf24B5MOOX .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tf24B5MOOX .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tf24B5MOOX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tf24B5MOOX .carousel-indicators .active,
.cid-tf24B5MOOX .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tf24B5MOOX .carousel-indicators .active {
  background: #fff;
}
.cid-tf24B5MOOX .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tf24B5MOOX .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tf24B5MOOX .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tf24B5MOOX .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tf24B5MOOX .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tf24B5MOOX .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tf24B5MOOX .carousel {
  width: 100%;
}
.cid-tf24B5MOOX .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tf24B5MOOX .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tf24B5MOOX .modal.fade .modal-dialog,
.cid-tf24B5MOOX .modal.in .modal-dialog {
  transform: none;
}
.cid-tf24B5MOOX .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tf24B5MOOX H6 {
  text-align: center;
}
.cid-sFGMsvHDIa {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFGMsvHDIa nav.navbar {
  position: fixed;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFGMsvHDIa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFGMsvHDIa .dropdown-item:hover,
.cid-sFGMsvHDIa .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-sFGMsvHDIa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFGMsvHDIa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFGMsvHDIa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFGMsvHDIa .nav-link {
  position: relative;
}
.cid-sFGMsvHDIa .container {
  display: flex;
  margin: auto;
}
.cid-sFGMsvHDIa .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFGMsvHDIa .dropdown-menu,
.cid-sFGMsvHDIa .navbar.opened {
  background: #ffffff !important;
}
.cid-sFGMsvHDIa .nav-item:focus,
.cid-sFGMsvHDIa .nav-link:focus {
  outline: none;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFGMsvHDIa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFGMsvHDIa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar.opened {
  transition: all 0.3s;
}
.cid-sFGMsvHDIa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFGMsvHDIa .navbar .navbar-logo img {
  width: auto;
}
.cid-sFGMsvHDIa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFGMsvHDIa .navbar.collapsed {
  justify-content: center;
}
.cid-sFGMsvHDIa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFGMsvHDIa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFGMsvHDIa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFGMsvHDIa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFGMsvHDIa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFGMsvHDIa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFGMsvHDIa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFGMsvHDIa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFGMsvHDIa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFGMsvHDIa .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFGMsvHDIa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFGMsvHDIa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFGMsvHDIa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFGMsvHDIa .dropdown-item.active,
.cid-sFGMsvHDIa .dropdown-item:active {
  background-color: transparent;
}
.cid-sFGMsvHDIa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFGMsvHDIa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFGMsvHDIa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFGMsvHDIa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFGMsvHDIa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFGMsvHDIa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFGMsvHDIa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFGMsvHDIa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar {
    height: 70px;
  }
  .cid-sFGMsvHDIa .navbar.opened {
    height: auto;
  }
  .cid-sFGMsvHDIa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFGSOnwtIp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-sFGSOnwtIp .media-container-row .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tgA9Keroo2 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tgA9Keroo2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgA9Keroo2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2nzjLdWn {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2nzkfaNd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2nzkfaNd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf2nzkfaNd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2nzkfaNd .mbr-section-title {
  text-align: left;
}
.cid-tf2nzkfaNd .mbr-section-subtitle {
  text-align: left;
}
.cid-tf2nzlpity {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2nzlpity .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf2nzlpity .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2nzlpity .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tf2nzlpity .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tf2nzlpity .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tf2nzlpity .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tf2nzlpity .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-tf2nzlpity .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tf2nzlpity .carousel-control,
.cid-tf2nzlpity .close {
  background: #1b1b1b;
}
.cid-tf2nzlpity .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tf2nzlpity .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tf2nzlpity .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tf2nzlpity .carousel-control-next span {
  margin-left: 5px;
}
.cid-tf2nzlpity .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-tf2nzlpity .close::before {
  content: '\e91a';
}
.cid-tf2nzlpity .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tf2nzlpity .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-tf2nzlpity .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tf2nzlpity .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tf2nzlpity .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tf2nzlpity .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tf2nzlpity .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-tf2nzlpity .carousel-indicators li.active,
.cid-tf2nzlpity .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tf2nzlpity .carousel-indicators li::after,
.cid-tf2nzlpity .carousel-indicators li::before {
  content: none;
}
.cid-tf2nzlpity .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tf2nzlpity .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tf2nzlpity .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tf2nzlpity .carousel-indicators {
    display: none;
  }
}
.cid-tf2nzlpity .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tf2nzlpity .carousel-inner > .active {
  display: block;
}
.cid-tf2nzlpity .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tf2nzlpity .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tf2nzlpity .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tf2nzlpity .carousel-control,
  .cid-tf2nzlpity .carousel-indicators,
  .cid-tf2nzlpity .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tf2nzlpity .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tf2nzlpity .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tf2nzlpity .carousel-indicators .active,
.cid-tf2nzlpity .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tf2nzlpity .carousel-indicators .active {
  background: #fff;
}
.cid-tf2nzlpity .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tf2nzlpity .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tf2nzlpity .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tf2nzlpity .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tf2nzlpity .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tf2nzlpity .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tf2nzlpity .carousel {
  width: 100%;
}
.cid-tf2nzlpity .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tf2nzlpity .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tf2nzlpity .modal.fade .modal-dialog,
.cid-tf2nzlpity .modal.in .modal-dialog {
  transform: none;
}
.cid-tf2nzlpity .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tf2nzlpity H6 {
  text-align: center;
}
.cid-tfkPMrdAqu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfkPMrdAqu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfkPMrdAqu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfkPMrdAqu .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tfkPMrdAqu .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tfkPMrdAqu .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-tf2nzn9kv6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tf2nzn9kv6 nav.navbar {
  position: fixed;
}
.cid-tf2nzn9kv6 .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-tf2nzn9kv6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tf2nzn9kv6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tf2nzn9kv6 .dropdown-item:hover,
.cid-tf2nzn9kv6 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tf2nzn9kv6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tf2nzn9kv6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tf2nzn9kv6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tf2nzn9kv6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tf2nzn9kv6 .nav-link {
  position: relative;
}
.cid-tf2nzn9kv6 .container {
  display: flex;
  margin: auto;
}
.cid-tf2nzn9kv6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tf2nzn9kv6 .dropdown-menu,
.cid-tf2nzn9kv6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tf2nzn9kv6 .nav-item:focus,
.cid-tf2nzn9kv6 .nav-link:focus {
  outline: none;
}
.cid-tf2nzn9kv6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tf2nzn9kv6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tf2nzn9kv6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tf2nzn9kv6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tf2nzn9kv6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tf2nzn9kv6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tf2nzn9kv6 .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-tf2nzn9kv6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tf2nzn9kv6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tf2nzn9kv6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tf2nzn9kv6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tf2nzn9kv6 .navbar.collapsed {
  justify-content: center;
}
.cid-tf2nzn9kv6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tf2nzn9kv6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tf2nzn9kv6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tf2nzn9kv6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tf2nzn9kv6 .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-tf2nzn9kv6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tf2nzn9kv6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tf2nzn9kv6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tf2nzn9kv6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tf2nzn9kv6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tf2nzn9kv6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tf2nzn9kv6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tf2nzn9kv6 .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-tf2nzn9kv6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tf2nzn9kv6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tf2nzn9kv6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tf2nzn9kv6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tf2nzn9kv6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tf2nzn9kv6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tf2nzn9kv6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tf2nzn9kv6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tf2nzn9kv6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tf2nzn9kv6 .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-tf2nzn9kv6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tf2nzn9kv6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tf2nzn9kv6 .dropdown-item.active,
.cid-tf2nzn9kv6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tf2nzn9kv6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tf2nzn9kv6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tf2nzn9kv6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tf2nzn9kv6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tf2nzn9kv6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tf2nzn9kv6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tf2nzn9kv6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tf2nzn9kv6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tf2nzn9kv6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tf2nzn9kv6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tf2nzn9kv6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tf2nzn9kv6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf2nzn9kv6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf2nzn9kv6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tf2nzn9kv6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf2nzn9kv6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tf2nzn9kv6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tf2nzn9kv6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf2nzn9kv6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tf2nzn9kv6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tf2nzn9kv6 .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-tf2nzn9kv6 .navbar {
    height: 70px;
  }
  .cid-tf2nzn9kv6 .navbar.opened {
    height: auto;
  }
  .cid-tf2nzn9kv6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tf2nznP43I {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tf2nznP43I .media-container-row .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tgAa9ZWmMV {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tgAa9ZWmMV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgAa9ZWmMV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2x3Dtr3r {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2x3E2xmw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2x3E2xmw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf2x3E2xmw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2x3E2xmw .mbr-section-title {
  text-align: left;
}
.cid-tf2x3E2xmw .mbr-section-subtitle {
  text-align: left;
}
.cid-tf2x3Fcyy3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2x3Fcyy3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf2x3Fcyy3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2x3Fcyy3 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tf2x3Fcyy3 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tf2x3Fcyy3 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tf2x3Fcyy3 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tf2x3Fcyy3 .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-tf2x3Fcyy3 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tf2x3Fcyy3 .carousel-control,
.cid-tf2x3Fcyy3 .close {
  background: #1b1b1b;
}
.cid-tf2x3Fcyy3 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tf2x3Fcyy3 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tf2x3Fcyy3 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tf2x3Fcyy3 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tf2x3Fcyy3 .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-tf2x3Fcyy3 .close::before {
  content: '\e91a';
}
.cid-tf2x3Fcyy3 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tf2x3Fcyy3 .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-tf2x3Fcyy3 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tf2x3Fcyy3 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tf2x3Fcyy3 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tf2x3Fcyy3 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tf2x3Fcyy3 .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-tf2x3Fcyy3 .carousel-indicators li.active,
.cid-tf2x3Fcyy3 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tf2x3Fcyy3 .carousel-indicators li::after,
.cid-tf2x3Fcyy3 .carousel-indicators li::before {
  content: none;
}
.cid-tf2x3Fcyy3 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tf2x3Fcyy3 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tf2x3Fcyy3 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tf2x3Fcyy3 .carousel-indicators {
    display: none;
  }
}
.cid-tf2x3Fcyy3 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tf2x3Fcyy3 .carousel-inner > .active {
  display: block;
}
.cid-tf2x3Fcyy3 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tf2x3Fcyy3 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tf2x3Fcyy3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tf2x3Fcyy3 .carousel-control,
  .cid-tf2x3Fcyy3 .carousel-indicators,
  .cid-tf2x3Fcyy3 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tf2x3Fcyy3 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tf2x3Fcyy3 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tf2x3Fcyy3 .carousel-indicators .active,
.cid-tf2x3Fcyy3 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tf2x3Fcyy3 .carousel-indicators .active {
  background: #fff;
}
.cid-tf2x3Fcyy3 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tf2x3Fcyy3 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tf2x3Fcyy3 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tf2x3Fcyy3 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tf2x3Fcyy3 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tf2x3Fcyy3 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tf2x3Fcyy3 .carousel {
  width: 100%;
}
.cid-tf2x3Fcyy3 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tf2x3Fcyy3 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tf2x3Fcyy3 .modal.fade .modal-dialog,
.cid-tf2x3Fcyy3 .modal.in .modal-dialog {
  transform: none;
}
.cid-tf2x3Fcyy3 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tf2x3Fcyy3 H6 {
  text-align: center;
}
.cid-tf2x3GRcuB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tf2x3GRcuB nav.navbar {
  position: fixed;
}
.cid-tf2x3GRcuB .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-tf2x3GRcuB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tf2x3GRcuB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tf2x3GRcuB .dropdown-item:hover,
.cid-tf2x3GRcuB .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tf2x3GRcuB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tf2x3GRcuB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tf2x3GRcuB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tf2x3GRcuB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tf2x3GRcuB .nav-link {
  position: relative;
}
.cid-tf2x3GRcuB .container {
  display: flex;
  margin: auto;
}
.cid-tf2x3GRcuB .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tf2x3GRcuB .dropdown-menu,
.cid-tf2x3GRcuB .navbar.opened {
  background: #ffffff !important;
}
.cid-tf2x3GRcuB .nav-item:focus,
.cid-tf2x3GRcuB .nav-link:focus {
  outline: none;
}
.cid-tf2x3GRcuB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tf2x3GRcuB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tf2x3GRcuB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tf2x3GRcuB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tf2x3GRcuB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tf2x3GRcuB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tf2x3GRcuB .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-tf2x3GRcuB .navbar.opened {
  transition: all 0.3s;
}
.cid-tf2x3GRcuB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tf2x3GRcuB .navbar .navbar-logo img {
  width: auto;
}
.cid-tf2x3GRcuB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tf2x3GRcuB .navbar.collapsed {
  justify-content: center;
}
.cid-tf2x3GRcuB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tf2x3GRcuB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tf2x3GRcuB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tf2x3GRcuB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tf2x3GRcuB .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-tf2x3GRcuB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tf2x3GRcuB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tf2x3GRcuB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tf2x3GRcuB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tf2x3GRcuB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tf2x3GRcuB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tf2x3GRcuB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tf2x3GRcuB .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-tf2x3GRcuB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tf2x3GRcuB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tf2x3GRcuB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tf2x3GRcuB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tf2x3GRcuB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tf2x3GRcuB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tf2x3GRcuB .navbar.navbar-short {
  min-height: 60px;
}
.cid-tf2x3GRcuB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tf2x3GRcuB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tf2x3GRcuB .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-tf2x3GRcuB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tf2x3GRcuB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tf2x3GRcuB .dropdown-item.active,
.cid-tf2x3GRcuB .dropdown-item:active {
  background-color: transparent;
}
.cid-tf2x3GRcuB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tf2x3GRcuB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tf2x3GRcuB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tf2x3GRcuB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tf2x3GRcuB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tf2x3GRcuB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tf2x3GRcuB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tf2x3GRcuB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tf2x3GRcuB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tf2x3GRcuB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tf2x3GRcuB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tf2x3GRcuB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf2x3GRcuB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf2x3GRcuB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tf2x3GRcuB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf2x3GRcuB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tf2x3GRcuB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tf2x3GRcuB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf2x3GRcuB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tf2x3GRcuB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tf2x3GRcuB .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-tf2x3GRcuB .navbar {
    height: 70px;
  }
  .cid-tf2x3GRcuB .navbar.opened {
    height: auto;
  }
  .cid-tf2x3GRcuB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tf2x3HDH6z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tf2x3HDH6z .media-container-row .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tgA9lN0ito {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tgA9lN0ito .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgA9lN0ito .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2xc8h5Uk {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2xc8RNIA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2xc8RNIA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf2xc8RNIA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2xc8RNIA .mbr-section-title {
  text-align: left;
}
.cid-tf2xc8RNIA .mbr-section-subtitle {
  text-align: left;
}
.cid-tf2xc9LhyS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2xc9LhyS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf2xc9LhyS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2xc9LhyS .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tf2xc9LhyS .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tf2xc9LhyS .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tf2xc9LhyS .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tf2xc9LhyS .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-tf2xc9LhyS .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tf2xc9LhyS .carousel-control,
.cid-tf2xc9LhyS .close {
  background: #1b1b1b;
}
.cid-tf2xc9LhyS .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tf2xc9LhyS .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tf2xc9LhyS .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tf2xc9LhyS .carousel-control-next span {
  margin-left: 5px;
}
.cid-tf2xc9LhyS .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-tf2xc9LhyS .close::before {
  content: '\e91a';
}
.cid-tf2xc9LhyS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tf2xc9LhyS .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-tf2xc9LhyS .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tf2xc9LhyS .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tf2xc9LhyS .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tf2xc9LhyS .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tf2xc9LhyS .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-tf2xc9LhyS .carousel-indicators li.active,
.cid-tf2xc9LhyS .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tf2xc9LhyS .carousel-indicators li::after,
.cid-tf2xc9LhyS .carousel-indicators li::before {
  content: none;
}
.cid-tf2xc9LhyS .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tf2xc9LhyS .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tf2xc9LhyS .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tf2xc9LhyS .carousel-indicators {
    display: none;
  }
}
.cid-tf2xc9LhyS .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tf2xc9LhyS .carousel-inner > .active {
  display: block;
}
.cid-tf2xc9LhyS .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tf2xc9LhyS .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tf2xc9LhyS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tf2xc9LhyS .carousel-control,
  .cid-tf2xc9LhyS .carousel-indicators,
  .cid-tf2xc9LhyS .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tf2xc9LhyS .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tf2xc9LhyS .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tf2xc9LhyS .carousel-indicators .active,
.cid-tf2xc9LhyS .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tf2xc9LhyS .carousel-indicators .active {
  background: #fff;
}
.cid-tf2xc9LhyS .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tf2xc9LhyS .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tf2xc9LhyS .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tf2xc9LhyS .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tf2xc9LhyS .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tf2xc9LhyS .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tf2xc9LhyS .carousel {
  width: 100%;
}
.cid-tf2xc9LhyS .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tf2xc9LhyS .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tf2xc9LhyS .modal.fade .modal-dialog,
.cid-tf2xc9LhyS .modal.in .modal-dialog {
  transform: none;
}
.cid-tf2xc9LhyS .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tf2xc9LhyS H6 {
  text-align: center;
}
.cid-tf2xcbuhWn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tf2xcbuhWn nav.navbar {
  position: fixed;
}
.cid-tf2xcbuhWn .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-tf2xcbuhWn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tf2xcbuhWn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tf2xcbuhWn .dropdown-item:hover,
.cid-tf2xcbuhWn .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tf2xcbuhWn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tf2xcbuhWn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tf2xcbuhWn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tf2xcbuhWn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tf2xcbuhWn .nav-link {
  position: relative;
}
.cid-tf2xcbuhWn .container {
  display: flex;
  margin: auto;
}
.cid-tf2xcbuhWn .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tf2xcbuhWn .dropdown-menu,
.cid-tf2xcbuhWn .navbar.opened {
  background: #ffffff !important;
}
.cid-tf2xcbuhWn .nav-item:focus,
.cid-tf2xcbuhWn .nav-link:focus {
  outline: none;
}
.cid-tf2xcbuhWn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tf2xcbuhWn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tf2xcbuhWn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tf2xcbuhWn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tf2xcbuhWn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tf2xcbuhWn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tf2xcbuhWn .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-tf2xcbuhWn .navbar.opened {
  transition: all 0.3s;
}
.cid-tf2xcbuhWn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tf2xcbuhWn .navbar .navbar-logo img {
  width: auto;
}
.cid-tf2xcbuhWn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tf2xcbuhWn .navbar.collapsed {
  justify-content: center;
}
.cid-tf2xcbuhWn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tf2xcbuhWn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tf2xcbuhWn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tf2xcbuhWn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tf2xcbuhWn .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-tf2xcbuhWn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tf2xcbuhWn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tf2xcbuhWn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tf2xcbuhWn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tf2xcbuhWn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tf2xcbuhWn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tf2xcbuhWn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tf2xcbuhWn .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-tf2xcbuhWn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tf2xcbuhWn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tf2xcbuhWn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tf2xcbuhWn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tf2xcbuhWn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tf2xcbuhWn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tf2xcbuhWn .navbar.navbar-short {
  min-height: 60px;
}
.cid-tf2xcbuhWn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tf2xcbuhWn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tf2xcbuhWn .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-tf2xcbuhWn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tf2xcbuhWn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tf2xcbuhWn .dropdown-item.active,
.cid-tf2xcbuhWn .dropdown-item:active {
  background-color: transparent;
}
.cid-tf2xcbuhWn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tf2xcbuhWn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tf2xcbuhWn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tf2xcbuhWn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tf2xcbuhWn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tf2xcbuhWn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tf2xcbuhWn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tf2xcbuhWn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tf2xcbuhWn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tf2xcbuhWn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tf2xcbuhWn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tf2xcbuhWn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf2xcbuhWn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf2xcbuhWn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tf2xcbuhWn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf2xcbuhWn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tf2xcbuhWn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tf2xcbuhWn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf2xcbuhWn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tf2xcbuhWn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tf2xcbuhWn .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-tf2xcbuhWn .navbar {
    height: 70px;
  }
  .cid-tf2xcbuhWn .navbar.opened {
    height: auto;
  }
  .cid-tf2xcbuhWn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tf2xccjM96 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tf2xccjM96 .media-container-row .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tgAaeNVR6h {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tgAaeNVR6h .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgAaeNVR6h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2xiotC3C {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2xioMH8l {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2xioMH8l .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf2xioMH8l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2xioMH8l .mbr-section-title {
  text-align: left;
}
.cid-tf2xioMH8l .mbr-section-subtitle {
  text-align: left;
}
.cid-tf2xipAEQR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2xipAEQR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf2xipAEQR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2xipAEQR .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tf2xipAEQR .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tf2xipAEQR .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tf2xipAEQR .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tf2xipAEQR .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-tf2xipAEQR .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tf2xipAEQR .carousel-control,
.cid-tf2xipAEQR .close {
  background: #1b1b1b;
}
.cid-tf2xipAEQR .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tf2xipAEQR .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tf2xipAEQR .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tf2xipAEQR .carousel-control-next span {
  margin-left: 5px;
}
.cid-tf2xipAEQR .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-tf2xipAEQR .close::before {
  content: '\e91a';
}
.cid-tf2xipAEQR .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tf2xipAEQR .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-tf2xipAEQR .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tf2xipAEQR .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tf2xipAEQR .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tf2xipAEQR .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tf2xipAEQR .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-tf2xipAEQR .carousel-indicators li.active,
.cid-tf2xipAEQR .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tf2xipAEQR .carousel-indicators li::after,
.cid-tf2xipAEQR .carousel-indicators li::before {
  content: none;
}
.cid-tf2xipAEQR .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tf2xipAEQR .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tf2xipAEQR .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tf2xipAEQR .carousel-indicators {
    display: none;
  }
}
.cid-tf2xipAEQR .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tf2xipAEQR .carousel-inner > .active {
  display: block;
}
.cid-tf2xipAEQR .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tf2xipAEQR .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tf2xipAEQR .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tf2xipAEQR .carousel-control,
  .cid-tf2xipAEQR .carousel-indicators,
  .cid-tf2xipAEQR .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tf2xipAEQR .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tf2xipAEQR .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tf2xipAEQR .carousel-indicators .active,
.cid-tf2xipAEQR .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tf2xipAEQR .carousel-indicators .active {
  background: #fff;
}
.cid-tf2xipAEQR .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tf2xipAEQR .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tf2xipAEQR .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tf2xipAEQR .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tf2xipAEQR .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tf2xipAEQR .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tf2xipAEQR .carousel {
  width: 100%;
}
.cid-tf2xipAEQR .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tf2xipAEQR .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tf2xipAEQR .modal.fade .modal-dialog,
.cid-tf2xipAEQR .modal.in .modal-dialog {
  transform: none;
}
.cid-tf2xipAEQR .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tf2xipAEQR H6 {
  text-align: center;
}
.cid-tf2xir0s3X {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tf2xir0s3X nav.navbar {
  position: fixed;
}
.cid-tf2xir0s3X .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-tf2xir0s3X .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tf2xir0s3X .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tf2xir0s3X .dropdown-item:hover,
.cid-tf2xir0s3X .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tf2xir0s3X .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tf2xir0s3X .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tf2xir0s3X .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tf2xir0s3X .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tf2xir0s3X .nav-link {
  position: relative;
}
.cid-tf2xir0s3X .container {
  display: flex;
  margin: auto;
}
.cid-tf2xir0s3X .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tf2xir0s3X .dropdown-menu,
.cid-tf2xir0s3X .navbar.opened {
  background: #ffffff !important;
}
.cid-tf2xir0s3X .nav-item:focus,
.cid-tf2xir0s3X .nav-link:focus {
  outline: none;
}
.cid-tf2xir0s3X .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tf2xir0s3X .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tf2xir0s3X .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tf2xir0s3X .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tf2xir0s3X .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tf2xir0s3X .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tf2xir0s3X .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-tf2xir0s3X .navbar.opened {
  transition: all 0.3s;
}
.cid-tf2xir0s3X .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tf2xir0s3X .navbar .navbar-logo img {
  width: auto;
}
.cid-tf2xir0s3X .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tf2xir0s3X .navbar.collapsed {
  justify-content: center;
}
.cid-tf2xir0s3X .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tf2xir0s3X .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tf2xir0s3X .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tf2xir0s3X .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tf2xir0s3X .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-tf2xir0s3X .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tf2xir0s3X .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tf2xir0s3X .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tf2xir0s3X .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tf2xir0s3X .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tf2xir0s3X .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tf2xir0s3X .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tf2xir0s3X .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-tf2xir0s3X .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tf2xir0s3X .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tf2xir0s3X .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tf2xir0s3X .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tf2xir0s3X .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tf2xir0s3X .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tf2xir0s3X .navbar.navbar-short {
  min-height: 60px;
}
.cid-tf2xir0s3X .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tf2xir0s3X .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tf2xir0s3X .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-tf2xir0s3X .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tf2xir0s3X .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tf2xir0s3X .dropdown-item.active,
.cid-tf2xir0s3X .dropdown-item:active {
  background-color: transparent;
}
.cid-tf2xir0s3X .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tf2xir0s3X .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tf2xir0s3X .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tf2xir0s3X .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tf2xir0s3X .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tf2xir0s3X .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tf2xir0s3X ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tf2xir0s3X .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tf2xir0s3X button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tf2xir0s3X button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tf2xir0s3X button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tf2xir0s3X button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf2xir0s3X button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf2xir0s3X button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tf2xir0s3X nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf2xir0s3X nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tf2xir0s3X nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tf2xir0s3X nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf2xir0s3X .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tf2xir0s3X a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tf2xir0s3X .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-tf2xir0s3X .navbar {
    height: 70px;
  }
  .cid-tf2xir0s3X .navbar.opened {
    height: auto;
  }
  .cid-tf2xir0s3X .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tf2xirCdMf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tf2xirCdMf .media-container-row .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tgAajuztb8 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tgAajuztb8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgAajuztb8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2xE2IJDF {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2xE37p1F {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2xE37p1F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf2xE37p1F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2xE37p1F .mbr-section-title {
  text-align: left;
}
.cid-tf2xE37p1F .mbr-section-subtitle {
  text-align: left;
}
.cid-tf2xE4d1iH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2xE4d1iH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf2xE4d1iH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2xE4d1iH .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tf2xE4d1iH .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tf2xE4d1iH .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tf2xE4d1iH .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tf2xE4d1iH .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-tf2xE4d1iH .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tf2xE4d1iH .carousel-control,
.cid-tf2xE4d1iH .close {
  background: #1b1b1b;
}
.cid-tf2xE4d1iH .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tf2xE4d1iH .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tf2xE4d1iH .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tf2xE4d1iH .carousel-control-next span {
  margin-left: 5px;
}
.cid-tf2xE4d1iH .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-tf2xE4d1iH .close::before {
  content: '\e91a';
}
.cid-tf2xE4d1iH .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tf2xE4d1iH .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-tf2xE4d1iH .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tf2xE4d1iH .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tf2xE4d1iH .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tf2xE4d1iH .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tf2xE4d1iH .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-tf2xE4d1iH .carousel-indicators li.active,
.cid-tf2xE4d1iH .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tf2xE4d1iH .carousel-indicators li::after,
.cid-tf2xE4d1iH .carousel-indicators li::before {
  content: none;
}
.cid-tf2xE4d1iH .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tf2xE4d1iH .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tf2xE4d1iH .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tf2xE4d1iH .carousel-indicators {
    display: none;
  }
}
.cid-tf2xE4d1iH .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tf2xE4d1iH .carousel-inner > .active {
  display: block;
}
.cid-tf2xE4d1iH .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tf2xE4d1iH .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tf2xE4d1iH .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tf2xE4d1iH .carousel-control,
  .cid-tf2xE4d1iH .carousel-indicators,
  .cid-tf2xE4d1iH .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tf2xE4d1iH .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tf2xE4d1iH .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tf2xE4d1iH .carousel-indicators .active,
.cid-tf2xE4d1iH .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tf2xE4d1iH .carousel-indicators .active {
  background: #fff;
}
.cid-tf2xE4d1iH .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tf2xE4d1iH .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tf2xE4d1iH .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tf2xE4d1iH .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tf2xE4d1iH .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tf2xE4d1iH .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tf2xE4d1iH .carousel {
  width: 100%;
}
.cid-tf2xE4d1iH .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tf2xE4d1iH .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tf2xE4d1iH .modal.fade .modal-dialog,
.cid-tf2xE4d1iH .modal.in .modal-dialog {
  transform: none;
}
.cid-tf2xE4d1iH .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tf2xE4d1iH H6 {
  text-align: center;
}
.cid-tf2xE5QKhu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tf2xE5QKhu nav.navbar {
  position: fixed;
}
.cid-tf2xE5QKhu .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-tf2xE5QKhu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tf2xE5QKhu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tf2xE5QKhu .dropdown-item:hover,
.cid-tf2xE5QKhu .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tf2xE5QKhu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tf2xE5QKhu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tf2xE5QKhu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tf2xE5QKhu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tf2xE5QKhu .nav-link {
  position: relative;
}
.cid-tf2xE5QKhu .container {
  display: flex;
  margin: auto;
}
.cid-tf2xE5QKhu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tf2xE5QKhu .dropdown-menu,
.cid-tf2xE5QKhu .navbar.opened {
  background: #ffffff !important;
}
.cid-tf2xE5QKhu .nav-item:focus,
.cid-tf2xE5QKhu .nav-link:focus {
  outline: none;
}
.cid-tf2xE5QKhu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tf2xE5QKhu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tf2xE5QKhu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tf2xE5QKhu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tf2xE5QKhu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tf2xE5QKhu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tf2xE5QKhu .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-tf2xE5QKhu .navbar.opened {
  transition: all 0.3s;
}
.cid-tf2xE5QKhu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tf2xE5QKhu .navbar .navbar-logo img {
  width: auto;
}
.cid-tf2xE5QKhu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tf2xE5QKhu .navbar.collapsed {
  justify-content: center;
}
.cid-tf2xE5QKhu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tf2xE5QKhu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tf2xE5QKhu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tf2xE5QKhu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tf2xE5QKhu .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-tf2xE5QKhu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tf2xE5QKhu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tf2xE5QKhu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tf2xE5QKhu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tf2xE5QKhu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tf2xE5QKhu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tf2xE5QKhu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tf2xE5QKhu .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-tf2xE5QKhu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tf2xE5QKhu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tf2xE5QKhu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tf2xE5QKhu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tf2xE5QKhu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tf2xE5QKhu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tf2xE5QKhu .navbar.navbar-short {
  min-height: 60px;
}
.cid-tf2xE5QKhu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tf2xE5QKhu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tf2xE5QKhu .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-tf2xE5QKhu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tf2xE5QKhu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tf2xE5QKhu .dropdown-item.active,
.cid-tf2xE5QKhu .dropdown-item:active {
  background-color: transparent;
}
.cid-tf2xE5QKhu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tf2xE5QKhu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tf2xE5QKhu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tf2xE5QKhu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tf2xE5QKhu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tf2xE5QKhu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tf2xE5QKhu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tf2xE5QKhu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tf2xE5QKhu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tf2xE5QKhu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tf2xE5QKhu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tf2xE5QKhu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf2xE5QKhu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf2xE5QKhu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tf2xE5QKhu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf2xE5QKhu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tf2xE5QKhu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tf2xE5QKhu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf2xE5QKhu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tf2xE5QKhu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tf2xE5QKhu .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-tf2xE5QKhu .navbar {
    height: 70px;
  }
  .cid-tf2xE5QKhu .navbar.opened {
    height: auto;
  }
  .cid-tf2xE5QKhu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tf2xE6yxeW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tf2xE6yxeW .media-container-row .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tgAapT8jpE {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tgAapT8jpE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgAapT8jpE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2xQhvpkI {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2xQhSIp1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2xQhSIp1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf2xQhSIp1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2xQhSIp1 .mbr-section-title {
  text-align: left;
}
.cid-tf2xQhSIp1 .mbr-section-subtitle {
  text-align: left;
}
.cid-tf2xQiDUoi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2xQiDUoi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf2xQiDUoi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2xQiDUoi .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tf2xQiDUoi .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tf2xQiDUoi .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tf2xQiDUoi .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tf2xQiDUoi .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-tf2xQiDUoi .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tf2xQiDUoi .carousel-control,
.cid-tf2xQiDUoi .close {
  background: #1b1b1b;
}
.cid-tf2xQiDUoi .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tf2xQiDUoi .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tf2xQiDUoi .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tf2xQiDUoi .carousel-control-next span {
  margin-left: 5px;
}
.cid-tf2xQiDUoi .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-tf2xQiDUoi .close::before {
  content: '\e91a';
}
.cid-tf2xQiDUoi .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tf2xQiDUoi .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-tf2xQiDUoi .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tf2xQiDUoi .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tf2xQiDUoi .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tf2xQiDUoi .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tf2xQiDUoi .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-tf2xQiDUoi .carousel-indicators li.active,
.cid-tf2xQiDUoi .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tf2xQiDUoi .carousel-indicators li::after,
.cid-tf2xQiDUoi .carousel-indicators li::before {
  content: none;
}
.cid-tf2xQiDUoi .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tf2xQiDUoi .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tf2xQiDUoi .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tf2xQiDUoi .carousel-indicators {
    display: none;
  }
}
.cid-tf2xQiDUoi .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tf2xQiDUoi .carousel-inner > .active {
  display: block;
}
.cid-tf2xQiDUoi .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tf2xQiDUoi .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tf2xQiDUoi .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tf2xQiDUoi .carousel-control,
  .cid-tf2xQiDUoi .carousel-indicators,
  .cid-tf2xQiDUoi .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tf2xQiDUoi .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tf2xQiDUoi .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tf2xQiDUoi .carousel-indicators .active,
.cid-tf2xQiDUoi .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tf2xQiDUoi .carousel-indicators .active {
  background: #fff;
}
.cid-tf2xQiDUoi .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tf2xQiDUoi .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tf2xQiDUoi .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tf2xQiDUoi .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tf2xQiDUoi .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tf2xQiDUoi .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tf2xQiDUoi .carousel {
  width: 100%;
}
.cid-tf2xQiDUoi .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tf2xQiDUoi .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tf2xQiDUoi .modal.fade .modal-dialog,
.cid-tf2xQiDUoi .modal.in .modal-dialog {
  transform: none;
}
.cid-tf2xQiDUoi .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tf2xQiDUoi H6 {
  text-align: center;
}
.cid-tf2xQk1kSz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tf2xQk1kSz nav.navbar {
  position: fixed;
}
.cid-tf2xQk1kSz .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-tf2xQk1kSz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tf2xQk1kSz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tf2xQk1kSz .dropdown-item:hover,
.cid-tf2xQk1kSz .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tf2xQk1kSz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tf2xQk1kSz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tf2xQk1kSz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tf2xQk1kSz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tf2xQk1kSz .nav-link {
  position: relative;
}
.cid-tf2xQk1kSz .container {
  display: flex;
  margin: auto;
}
.cid-tf2xQk1kSz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tf2xQk1kSz .dropdown-menu,
.cid-tf2xQk1kSz .navbar.opened {
  background: #ffffff !important;
}
.cid-tf2xQk1kSz .nav-item:focus,
.cid-tf2xQk1kSz .nav-link:focus {
  outline: none;
}
.cid-tf2xQk1kSz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tf2xQk1kSz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tf2xQk1kSz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tf2xQk1kSz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tf2xQk1kSz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tf2xQk1kSz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tf2xQk1kSz .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-tf2xQk1kSz .navbar.opened {
  transition: all 0.3s;
}
.cid-tf2xQk1kSz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tf2xQk1kSz .navbar .navbar-logo img {
  width: auto;
}
.cid-tf2xQk1kSz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tf2xQk1kSz .navbar.collapsed {
  justify-content: center;
}
.cid-tf2xQk1kSz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tf2xQk1kSz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tf2xQk1kSz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tf2xQk1kSz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tf2xQk1kSz .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-tf2xQk1kSz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tf2xQk1kSz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tf2xQk1kSz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tf2xQk1kSz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tf2xQk1kSz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tf2xQk1kSz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tf2xQk1kSz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tf2xQk1kSz .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-tf2xQk1kSz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tf2xQk1kSz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tf2xQk1kSz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tf2xQk1kSz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tf2xQk1kSz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tf2xQk1kSz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tf2xQk1kSz .navbar.navbar-short {
  min-height: 60px;
}
.cid-tf2xQk1kSz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tf2xQk1kSz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tf2xQk1kSz .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-tf2xQk1kSz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tf2xQk1kSz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tf2xQk1kSz .dropdown-item.active,
.cid-tf2xQk1kSz .dropdown-item:active {
  background-color: transparent;
}
.cid-tf2xQk1kSz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tf2xQk1kSz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tf2xQk1kSz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tf2xQk1kSz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tf2xQk1kSz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tf2xQk1kSz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tf2xQk1kSz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tf2xQk1kSz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tf2xQk1kSz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tf2xQk1kSz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tf2xQk1kSz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tf2xQk1kSz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf2xQk1kSz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf2xQk1kSz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tf2xQk1kSz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf2xQk1kSz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tf2xQk1kSz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tf2xQk1kSz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf2xQk1kSz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tf2xQk1kSz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tf2xQk1kSz .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-tf2xQk1kSz .navbar {
    height: 70px;
  }
  .cid-tf2xQk1kSz .navbar.opened {
    height: auto;
  }
  .cid-tf2xQk1kSz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tf2xQkH0OZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tf2xQkH0OZ .media-container-row .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tgAavTFiuJ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tgAavTFiuJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgAavTFiuJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2xXAda78 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2xXAxiks {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2xXAxiks .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf2xXAxiks .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2xXAxiks .mbr-section-title {
  text-align: left;
}
.cid-tf2xXAxiks .mbr-section-subtitle {
  text-align: left;
}
.cid-tf2xXBl6B6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2xXBl6B6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf2xXBl6B6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2xXBl6B6 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tf2xXBl6B6 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tf2xXBl6B6 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tf2xXBl6B6 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tf2xXBl6B6 .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-tf2xXBl6B6 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tf2xXBl6B6 .carousel-control,
.cid-tf2xXBl6B6 .close {
  background: #1b1b1b;
}
.cid-tf2xXBl6B6 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tf2xXBl6B6 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tf2xXBl6B6 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tf2xXBl6B6 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tf2xXBl6B6 .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-tf2xXBl6B6 .close::before {
  content: '\e91a';
}
.cid-tf2xXBl6B6 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tf2xXBl6B6 .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-tf2xXBl6B6 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tf2xXBl6B6 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tf2xXBl6B6 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tf2xXBl6B6 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tf2xXBl6B6 .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-tf2xXBl6B6 .carousel-indicators li.active,
.cid-tf2xXBl6B6 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tf2xXBl6B6 .carousel-indicators li::after,
.cid-tf2xXBl6B6 .carousel-indicators li::before {
  content: none;
}
.cid-tf2xXBl6B6 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tf2xXBl6B6 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tf2xXBl6B6 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tf2xXBl6B6 .carousel-indicators {
    display: none;
  }
}
.cid-tf2xXBl6B6 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tf2xXBl6B6 .carousel-inner > .active {
  display: block;
}
.cid-tf2xXBl6B6 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tf2xXBl6B6 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tf2xXBl6B6 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tf2xXBl6B6 .carousel-control,
  .cid-tf2xXBl6B6 .carousel-indicators,
  .cid-tf2xXBl6B6 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tf2xXBl6B6 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tf2xXBl6B6 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tf2xXBl6B6 .carousel-indicators .active,
.cid-tf2xXBl6B6 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tf2xXBl6B6 .carousel-indicators .active {
  background: #fff;
}
.cid-tf2xXBl6B6 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tf2xXBl6B6 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tf2xXBl6B6 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tf2xXBl6B6 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tf2xXBl6B6 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tf2xXBl6B6 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tf2xXBl6B6 .carousel {
  width: 100%;
}
.cid-tf2xXBl6B6 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tf2xXBl6B6 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tf2xXBl6B6 .modal.fade .modal-dialog,
.cid-tf2xXBl6B6 .modal.in .modal-dialog {
  transform: none;
}
.cid-tf2xXBl6B6 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tf2xXBl6B6 H6 {
  text-align: center;
}
.cid-tf2xXCRPfR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tf2xXCRPfR nav.navbar {
  position: fixed;
}
.cid-tf2xXCRPfR .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-tf2xXCRPfR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tf2xXCRPfR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tf2xXCRPfR .dropdown-item:hover,
.cid-tf2xXCRPfR .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tf2xXCRPfR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tf2xXCRPfR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tf2xXCRPfR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tf2xXCRPfR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tf2xXCRPfR .nav-link {
  position: relative;
}
.cid-tf2xXCRPfR .container {
  display: flex;
  margin: auto;
}
.cid-tf2xXCRPfR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tf2xXCRPfR .dropdown-menu,
.cid-tf2xXCRPfR .navbar.opened {
  background: #ffffff !important;
}
.cid-tf2xXCRPfR .nav-item:focus,
.cid-tf2xXCRPfR .nav-link:focus {
  outline: none;
}
.cid-tf2xXCRPfR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tf2xXCRPfR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tf2xXCRPfR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tf2xXCRPfR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tf2xXCRPfR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tf2xXCRPfR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tf2xXCRPfR .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-tf2xXCRPfR .navbar.opened {
  transition: all 0.3s;
}
.cid-tf2xXCRPfR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tf2xXCRPfR .navbar .navbar-logo img {
  width: auto;
}
.cid-tf2xXCRPfR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tf2xXCRPfR .navbar.collapsed {
  justify-content: center;
}
.cid-tf2xXCRPfR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tf2xXCRPfR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tf2xXCRPfR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tf2xXCRPfR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tf2xXCRPfR .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-tf2xXCRPfR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tf2xXCRPfR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tf2xXCRPfR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tf2xXCRPfR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tf2xXCRPfR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tf2xXCRPfR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tf2xXCRPfR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tf2xXCRPfR .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-tf2xXCRPfR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tf2xXCRPfR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tf2xXCRPfR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tf2xXCRPfR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tf2xXCRPfR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tf2xXCRPfR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tf2xXCRPfR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tf2xXCRPfR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tf2xXCRPfR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tf2xXCRPfR .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-tf2xXCRPfR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tf2xXCRPfR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tf2xXCRPfR .dropdown-item.active,
.cid-tf2xXCRPfR .dropdown-item:active {
  background-color: transparent;
}
.cid-tf2xXCRPfR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tf2xXCRPfR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tf2xXCRPfR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tf2xXCRPfR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tf2xXCRPfR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tf2xXCRPfR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tf2xXCRPfR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tf2xXCRPfR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tf2xXCRPfR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tf2xXCRPfR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tf2xXCRPfR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tf2xXCRPfR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf2xXCRPfR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf2xXCRPfR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tf2xXCRPfR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf2xXCRPfR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tf2xXCRPfR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tf2xXCRPfR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf2xXCRPfR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tf2xXCRPfR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tf2xXCRPfR .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-tf2xXCRPfR .navbar {
    height: 70px;
  }
  .cid-tf2xXCRPfR .navbar.opened {
    height: auto;
  }
  .cid-tf2xXCRPfR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tfghVn7LtA {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tfghVn7LtA img,
.cid-tfghVn7LtA .item-img {
  width: 100%;
}
.cid-tfghVn7LtA .item:focus,
.cid-tfghVn7LtA span:focus {
  outline: none;
}
.cid-tfghVn7LtA .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tfghVn7LtA .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tfghVn7LtA .item {
  padding: 0;
  margin: 0;
}
.cid-tfghVn7LtA .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tfghVn7LtA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tfghVn7LtA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tfghVn7LtA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tfghVn7LtA .mbr-section-title {
  color: #232323;
}
.cid-tf2xXDzNpo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tf2xXDzNpo .media-container-row .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tgAaAdHgGh {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tgAaAdHgGh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgAaAdHgGh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2y84jGtT {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tgPduIJPHP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tgPduIJPHP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgPduIJPHP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgPduIJPHP .mbr-section-title {
  text-align: left;
}
.cid-tgPduIJPHP .mbr-section-subtitle {
  text-align: left;
}
.cid-tfN4RB8L1t {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfN4RB8L1t img,
.cid-tfN4RB8L1t .item-img {
  width: 100%;
}
.cid-tfN4RB8L1t .item:focus,
.cid-tfN4RB8L1t span:focus {
  outline: none;
}
.cid-tfN4RB8L1t .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tfN4RB8L1t .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tfN4RB8L1t .item {
  padding: 0;
  margin: 0;
}
.cid-tfN4RB8L1t .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tfN4RB8L1t .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tfN4RB8L1t .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tfN4RB8L1t .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tfN4RB8L1t .mbr-section-title {
  color: #232323;
}
.cid-tf2y87l2Mw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tf2y87l2Mw nav.navbar {
  position: fixed;
}
.cid-tf2y87l2Mw .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-tf2y87l2Mw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tf2y87l2Mw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tf2y87l2Mw .dropdown-item:hover,
.cid-tf2y87l2Mw .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tf2y87l2Mw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tf2y87l2Mw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tf2y87l2Mw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tf2y87l2Mw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tf2y87l2Mw .nav-link {
  position: relative;
}
.cid-tf2y87l2Mw .container {
  display: flex;
  margin: auto;
}
.cid-tf2y87l2Mw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tf2y87l2Mw .dropdown-menu,
.cid-tf2y87l2Mw .navbar.opened {
  background: #ffffff !important;
}
.cid-tf2y87l2Mw .nav-item:focus,
.cid-tf2y87l2Mw .nav-link:focus {
  outline: none;
}
.cid-tf2y87l2Mw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tf2y87l2Mw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tf2y87l2Mw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tf2y87l2Mw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tf2y87l2Mw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tf2y87l2Mw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tf2y87l2Mw .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-tf2y87l2Mw .navbar.opened {
  transition: all 0.3s;
}
.cid-tf2y87l2Mw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tf2y87l2Mw .navbar .navbar-logo img {
  width: auto;
}
.cid-tf2y87l2Mw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tf2y87l2Mw .navbar.collapsed {
  justify-content: center;
}
.cid-tf2y87l2Mw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tf2y87l2Mw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tf2y87l2Mw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tf2y87l2Mw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tf2y87l2Mw .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-tf2y87l2Mw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tf2y87l2Mw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tf2y87l2Mw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tf2y87l2Mw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tf2y87l2Mw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tf2y87l2Mw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tf2y87l2Mw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tf2y87l2Mw .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-tf2y87l2Mw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tf2y87l2Mw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tf2y87l2Mw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tf2y87l2Mw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tf2y87l2Mw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tf2y87l2Mw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tf2y87l2Mw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tf2y87l2Mw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tf2y87l2Mw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tf2y87l2Mw .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-tf2y87l2Mw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tf2y87l2Mw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tf2y87l2Mw .dropdown-item.active,
.cid-tf2y87l2Mw .dropdown-item:active {
  background-color: transparent;
}
.cid-tf2y87l2Mw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tf2y87l2Mw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tf2y87l2Mw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tf2y87l2Mw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tf2y87l2Mw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tf2y87l2Mw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tf2y87l2Mw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tf2y87l2Mw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tf2y87l2Mw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tf2y87l2Mw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tf2y87l2Mw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tf2y87l2Mw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf2y87l2Mw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf2y87l2Mw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tf2y87l2Mw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf2y87l2Mw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tf2y87l2Mw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tf2y87l2Mw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf2y87l2Mw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tf2y87l2Mw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tf2y87l2Mw .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-tf2y87l2Mw .navbar {
    height: 70px;
  }
  .cid-tf2y87l2Mw .navbar.opened {
    height: auto;
  }
  .cid-tf2y87l2Mw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tf2y880aR7 {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tf2y880aR7 .media-container-row .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tgAaFXPplg {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tgAaFXPplg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgAaFXPplg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2yhFJqKq {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2yhG2O1x {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2yhG2O1x .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf2yhG2O1x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2yhG2O1x .mbr-section-title {
  text-align: left;
}
.cid-tf2yhG2O1x .mbr-section-subtitle {
  text-align: left;
}
.cid-tf2yhGLL5u {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2yhGLL5u .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf2yhGLL5u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2yhGLL5u .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tf2yhGLL5u .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tf2yhGLL5u .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tf2yhGLL5u .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tf2yhGLL5u .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-tf2yhGLL5u .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tf2yhGLL5u .carousel-control,
.cid-tf2yhGLL5u .close {
  background: #1b1b1b;
}
.cid-tf2yhGLL5u .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tf2yhGLL5u .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tf2yhGLL5u .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tf2yhGLL5u .carousel-control-next span {
  margin-left: 5px;
}
.cid-tf2yhGLL5u .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-tf2yhGLL5u .close::before {
  content: '\e91a';
}
.cid-tf2yhGLL5u .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tf2yhGLL5u .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-tf2yhGLL5u .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tf2yhGLL5u .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tf2yhGLL5u .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tf2yhGLL5u .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tf2yhGLL5u .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-tf2yhGLL5u .carousel-indicators li.active,
.cid-tf2yhGLL5u .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tf2yhGLL5u .carousel-indicators li::after,
.cid-tf2yhGLL5u .carousel-indicators li::before {
  content: none;
}
.cid-tf2yhGLL5u .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tf2yhGLL5u .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tf2yhGLL5u .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tf2yhGLL5u .carousel-indicators {
    display: none;
  }
}
.cid-tf2yhGLL5u .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tf2yhGLL5u .carousel-inner > .active {
  display: block;
}
.cid-tf2yhGLL5u .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tf2yhGLL5u .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tf2yhGLL5u .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tf2yhGLL5u .carousel-control,
  .cid-tf2yhGLL5u .carousel-indicators,
  .cid-tf2yhGLL5u .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tf2yhGLL5u .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tf2yhGLL5u .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tf2yhGLL5u .carousel-indicators .active,
.cid-tf2yhGLL5u .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tf2yhGLL5u .carousel-indicators .active {
  background: #fff;
}
.cid-tf2yhGLL5u .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tf2yhGLL5u .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tf2yhGLL5u .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tf2yhGLL5u .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tf2yhGLL5u .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tf2yhGLL5u .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tf2yhGLL5u .carousel {
  width: 100%;
}
.cid-tf2yhGLL5u .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tf2yhGLL5u .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tf2yhGLL5u .modal.fade .modal-dialog,
.cid-tf2yhGLL5u .modal.in .modal-dialog {
  transform: none;
}
.cid-tf2yhGLL5u .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tf2yhGLL5u H6 {
  text-align: center;
}
.cid-tf2yhIeQfY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tf2yhIeQfY nav.navbar {
  position: fixed;
}
.cid-tf2yhIeQfY .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-tf2yhIeQfY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tf2yhIeQfY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tf2yhIeQfY .dropdown-item:hover,
.cid-tf2yhIeQfY .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tf2yhIeQfY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tf2yhIeQfY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tf2yhIeQfY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tf2yhIeQfY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tf2yhIeQfY .nav-link {
  position: relative;
}
.cid-tf2yhIeQfY .container {
  display: flex;
  margin: auto;
}
.cid-tf2yhIeQfY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tf2yhIeQfY .dropdown-menu,
.cid-tf2yhIeQfY .navbar.opened {
  background: #ffffff !important;
}
.cid-tf2yhIeQfY .nav-item:focus,
.cid-tf2yhIeQfY .nav-link:focus {
  outline: none;
}
.cid-tf2yhIeQfY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tf2yhIeQfY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tf2yhIeQfY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tf2yhIeQfY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tf2yhIeQfY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tf2yhIeQfY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tf2yhIeQfY .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-tf2yhIeQfY .navbar.opened {
  transition: all 0.3s;
}
.cid-tf2yhIeQfY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tf2yhIeQfY .navbar .navbar-logo img {
  width: auto;
}
.cid-tf2yhIeQfY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tf2yhIeQfY .navbar.collapsed {
  justify-content: center;
}
.cid-tf2yhIeQfY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tf2yhIeQfY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tf2yhIeQfY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tf2yhIeQfY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tf2yhIeQfY .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-tf2yhIeQfY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tf2yhIeQfY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tf2yhIeQfY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tf2yhIeQfY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tf2yhIeQfY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tf2yhIeQfY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tf2yhIeQfY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tf2yhIeQfY .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-tf2yhIeQfY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tf2yhIeQfY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tf2yhIeQfY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tf2yhIeQfY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tf2yhIeQfY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tf2yhIeQfY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tf2yhIeQfY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tf2yhIeQfY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tf2yhIeQfY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tf2yhIeQfY .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-tf2yhIeQfY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tf2yhIeQfY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tf2yhIeQfY .dropdown-item.active,
.cid-tf2yhIeQfY .dropdown-item:active {
  background-color: transparent;
}
.cid-tf2yhIeQfY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tf2yhIeQfY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tf2yhIeQfY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tf2yhIeQfY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tf2yhIeQfY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tf2yhIeQfY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tf2yhIeQfY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tf2yhIeQfY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tf2yhIeQfY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tf2yhIeQfY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tf2yhIeQfY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tf2yhIeQfY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf2yhIeQfY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf2yhIeQfY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tf2yhIeQfY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf2yhIeQfY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tf2yhIeQfY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tf2yhIeQfY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf2yhIeQfY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tf2yhIeQfY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tf2yhIeQfY .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-tf2yhIeQfY .navbar {
    height: 70px;
  }
  .cid-tf2yhIeQfY .navbar.opened {
    height: auto;
  }
  .cid-tf2yhIeQfY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tf2yhIRo8k {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tf2yhIRo8k .media-container-row .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tgAaJnKM1e {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tgAaJnKM1e .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgAaJnKM1e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfe4QomgHS {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfe4QprvSw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfe4QprvSw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfe4QprvSw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfe4QprvSw .mbr-section-title {
  text-align: left;
}
.cid-tfe4QprvSw .mbr-section-subtitle {
  text-align: left;
}
.cid-tfe4Qr4NZm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfe4Qr4NZm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfe4Qr4NZm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfe4Qr4NZm .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tfe4Qr4NZm .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tfe4Qr4NZm .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tfe4Qr4NZm .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tfe4Qr4NZm .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-tfe4Qr4NZm .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tfe4Qr4NZm .carousel-control,
.cid-tfe4Qr4NZm .close {
  background: #1b1b1b;
}
.cid-tfe4Qr4NZm .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tfe4Qr4NZm .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tfe4Qr4NZm .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tfe4Qr4NZm .carousel-control-next span {
  margin-left: 5px;
}
.cid-tfe4Qr4NZm .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-tfe4Qr4NZm .close::before {
  content: '\e91a';
}
.cid-tfe4Qr4NZm .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tfe4Qr4NZm .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-tfe4Qr4NZm .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfe4Qr4NZm .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tfe4Qr4NZm .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tfe4Qr4NZm .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tfe4Qr4NZm .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-tfe4Qr4NZm .carousel-indicators li.active,
.cid-tfe4Qr4NZm .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tfe4Qr4NZm .carousel-indicators li::after,
.cid-tfe4Qr4NZm .carousel-indicators li::before {
  content: none;
}
.cid-tfe4Qr4NZm .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tfe4Qr4NZm .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tfe4Qr4NZm .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tfe4Qr4NZm .carousel-indicators {
    display: none;
  }
}
.cid-tfe4Qr4NZm .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tfe4Qr4NZm .carousel-inner > .active {
  display: block;
}
.cid-tfe4Qr4NZm .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfe4Qr4NZm .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tfe4Qr4NZm .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tfe4Qr4NZm .carousel-control,
  .cid-tfe4Qr4NZm .carousel-indicators,
  .cid-tfe4Qr4NZm .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tfe4Qr4NZm .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tfe4Qr4NZm .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tfe4Qr4NZm .carousel-indicators .active,
.cid-tfe4Qr4NZm .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tfe4Qr4NZm .carousel-indicators .active {
  background: #fff;
}
.cid-tfe4Qr4NZm .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tfe4Qr4NZm .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tfe4Qr4NZm .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tfe4Qr4NZm .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tfe4Qr4NZm .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tfe4Qr4NZm .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tfe4Qr4NZm .carousel {
  width: 100%;
}
.cid-tfe4Qr4NZm .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tfe4Qr4NZm .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tfe4Qr4NZm .modal.fade .modal-dialog,
.cid-tfe4Qr4NZm .modal.in .modal-dialog {
  transform: none;
}
.cid-tfe4Qr4NZm .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tfe4Qr4NZm H6 {
  text-align: center;
}
.cid-tfe4QsW8S3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tfe4QsW8S3 .media-container-row .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tfe4QseDlT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tfe4QseDlT nav.navbar {
  position: fixed;
}
.cid-tfe4QseDlT .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-tfe4QseDlT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tfe4QseDlT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tfe4QseDlT .dropdown-item:hover,
.cid-tfe4QseDlT .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tfe4QseDlT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tfe4QseDlT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tfe4QseDlT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tfe4QseDlT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tfe4QseDlT .nav-link {
  position: relative;
}
.cid-tfe4QseDlT .container {
  display: flex;
  margin: auto;
}
.cid-tfe4QseDlT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfe4QseDlT .dropdown-menu,
.cid-tfe4QseDlT .navbar.opened {
  background: #ffffff !important;
}
.cid-tfe4QseDlT .nav-item:focus,
.cid-tfe4QseDlT .nav-link:focus {
  outline: none;
}
.cid-tfe4QseDlT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tfe4QseDlT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfe4QseDlT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tfe4QseDlT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tfe4QseDlT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tfe4QseDlT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfe4QseDlT .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-tfe4QseDlT .navbar.opened {
  transition: all 0.3s;
}
.cid-tfe4QseDlT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tfe4QseDlT .navbar .navbar-logo img {
  width: auto;
}
.cid-tfe4QseDlT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfe4QseDlT .navbar.collapsed {
  justify-content: center;
}
.cid-tfe4QseDlT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tfe4QseDlT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tfe4QseDlT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfe4QseDlT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfe4QseDlT .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-tfe4QseDlT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfe4QseDlT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfe4QseDlT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfe4QseDlT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tfe4QseDlT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfe4QseDlT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfe4QseDlT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfe4QseDlT .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-tfe4QseDlT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tfe4QseDlT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfe4QseDlT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfe4QseDlT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tfe4QseDlT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tfe4QseDlT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfe4QseDlT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tfe4QseDlT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tfe4QseDlT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tfe4QseDlT .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-tfe4QseDlT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfe4QseDlT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfe4QseDlT .dropdown-item.active,
.cid-tfe4QseDlT .dropdown-item:active {
  background-color: transparent;
}
.cid-tfe4QseDlT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfe4QseDlT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfe4QseDlT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfe4QseDlT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tfe4QseDlT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfe4QseDlT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfe4QseDlT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tfe4QseDlT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tfe4QseDlT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tfe4QseDlT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tfe4QseDlT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfe4QseDlT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfe4QseDlT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfe4QseDlT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfe4QseDlT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfe4QseDlT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfe4QseDlT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfe4QseDlT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfe4QseDlT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tfe4QseDlT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tfe4QseDlT .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-tfe4QseDlT .navbar {
    height: 70px;
  }
  .cid-tfe4QseDlT .navbar.opened {
    height: auto;
  }
  .cid-tfe4QseDlT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tgAaNHT1Ki {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tgAaNHT1Ki .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgAaNHT1Ki .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfem512RZn {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfem51mOsH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfem51mOsH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfem51mOsH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfem51mOsH .mbr-section-title {
  text-align: left;
}
.cid-tfem51mOsH .mbr-section-subtitle {
  text-align: left;
}
.cid-tfem52eQRq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfem52eQRq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfem52eQRq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfem52eQRq .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tfem52eQRq .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tfem52eQRq .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tfem52eQRq .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tfem52eQRq .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-tfem52eQRq .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tfem52eQRq .carousel-control,
.cid-tfem52eQRq .close {
  background: #1b1b1b;
}
.cid-tfem52eQRq .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tfem52eQRq .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tfem52eQRq .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tfem52eQRq .carousel-control-next span {
  margin-left: 5px;
}
.cid-tfem52eQRq .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-tfem52eQRq .close::before {
  content: '\e91a';
}
.cid-tfem52eQRq .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tfem52eQRq .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-tfem52eQRq .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfem52eQRq .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tfem52eQRq .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tfem52eQRq .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tfem52eQRq .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-tfem52eQRq .carousel-indicators li.active,
.cid-tfem52eQRq .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tfem52eQRq .carousel-indicators li::after,
.cid-tfem52eQRq .carousel-indicators li::before {
  content: none;
}
.cid-tfem52eQRq .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tfem52eQRq .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tfem52eQRq .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tfem52eQRq .carousel-indicators {
    display: none;
  }
}
.cid-tfem52eQRq .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tfem52eQRq .carousel-inner > .active {
  display: block;
}
.cid-tfem52eQRq .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfem52eQRq .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tfem52eQRq .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tfem52eQRq .carousel-control,
  .cid-tfem52eQRq .carousel-indicators,
  .cid-tfem52eQRq .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tfem52eQRq .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tfem52eQRq .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tfem52eQRq .carousel-indicators .active,
.cid-tfem52eQRq .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tfem52eQRq .carousel-indicators .active {
  background: #fff;
}
.cid-tfem52eQRq .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tfem52eQRq .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tfem52eQRq .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tfem52eQRq .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tfem52eQRq .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tfem52eQRq .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tfem52eQRq .carousel {
  width: 100%;
}
.cid-tfem52eQRq .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tfem52eQRq .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tfem52eQRq .modal.fade .modal-dialog,
.cid-tfem52eQRq .modal.in .modal-dialog {
  transform: none;
}
.cid-tfem52eQRq .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tfem52eQRq H6 {
  text-align: center;
}
.cid-tfem54oHxP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tfem54oHxP .media-container-row .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tfem53KsMl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tfem53KsMl nav.navbar {
  position: fixed;
}
.cid-tfem53KsMl .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-tfem53KsMl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tfem53KsMl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tfem53KsMl .dropdown-item:hover,
.cid-tfem53KsMl .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tfem53KsMl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tfem53KsMl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tfem53KsMl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tfem53KsMl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tfem53KsMl .nav-link {
  position: relative;
}
.cid-tfem53KsMl .container {
  display: flex;
  margin: auto;
}
.cid-tfem53KsMl .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfem53KsMl .dropdown-menu,
.cid-tfem53KsMl .navbar.opened {
  background: #ffffff !important;
}
.cid-tfem53KsMl .nav-item:focus,
.cid-tfem53KsMl .nav-link:focus {
  outline: none;
}
.cid-tfem53KsMl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tfem53KsMl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfem53KsMl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tfem53KsMl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tfem53KsMl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tfem53KsMl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfem53KsMl .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-tfem53KsMl .navbar.opened {
  transition: all 0.3s;
}
.cid-tfem53KsMl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tfem53KsMl .navbar .navbar-logo img {
  width: auto;
}
.cid-tfem53KsMl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfem53KsMl .navbar.collapsed {
  justify-content: center;
}
.cid-tfem53KsMl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tfem53KsMl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tfem53KsMl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfem53KsMl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfem53KsMl .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-tfem53KsMl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfem53KsMl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfem53KsMl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfem53KsMl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tfem53KsMl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfem53KsMl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfem53KsMl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfem53KsMl .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-tfem53KsMl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tfem53KsMl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfem53KsMl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfem53KsMl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tfem53KsMl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tfem53KsMl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfem53KsMl .navbar.navbar-short {
  min-height: 60px;
}
.cid-tfem53KsMl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tfem53KsMl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tfem53KsMl .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-tfem53KsMl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfem53KsMl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfem53KsMl .dropdown-item.active,
.cid-tfem53KsMl .dropdown-item:active {
  background-color: transparent;
}
.cid-tfem53KsMl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfem53KsMl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfem53KsMl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfem53KsMl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tfem53KsMl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfem53KsMl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfem53KsMl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tfem53KsMl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tfem53KsMl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tfem53KsMl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tfem53KsMl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfem53KsMl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfem53KsMl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfem53KsMl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfem53KsMl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfem53KsMl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfem53KsMl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfem53KsMl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfem53KsMl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tfem53KsMl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tfem53KsMl .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-tfem53KsMl .navbar {
    height: 70px;
  }
  .cid-tfem53KsMl .navbar.opened {
    height: auto;
  }
  .cid-tfem53KsMl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tgAaUrctOO {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tgAaUrctOO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgAaUrctOO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfendVyOOF {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfendVXXOD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfendVXXOD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfendVXXOD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfendVXXOD .mbr-section-title {
  text-align: left;
}
.cid-tfendVXXOD .mbr-section-subtitle {
  text-align: left;
}
.cid-tfendWS3Oo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfendWS3Oo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfendWS3Oo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfendWS3Oo .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tfendWS3Oo .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tfendWS3Oo .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tfendWS3Oo .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tfendWS3Oo .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-tfendWS3Oo .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tfendWS3Oo .carousel-control,
.cid-tfendWS3Oo .close {
  background: #1b1b1b;
}
.cid-tfendWS3Oo .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tfendWS3Oo .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tfendWS3Oo .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tfendWS3Oo .carousel-control-next span {
  margin-left: 5px;
}
.cid-tfendWS3Oo .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-tfendWS3Oo .close::before {
  content: '\e91a';
}
.cid-tfendWS3Oo .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tfendWS3Oo .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-tfendWS3Oo .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfendWS3Oo .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tfendWS3Oo .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tfendWS3Oo .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tfendWS3Oo .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-tfendWS3Oo .carousel-indicators li.active,
.cid-tfendWS3Oo .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tfendWS3Oo .carousel-indicators li::after,
.cid-tfendWS3Oo .carousel-indicators li::before {
  content: none;
}
.cid-tfendWS3Oo .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tfendWS3Oo .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tfendWS3Oo .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tfendWS3Oo .carousel-indicators {
    display: none;
  }
}
.cid-tfendWS3Oo .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tfendWS3Oo .carousel-inner > .active {
  display: block;
}
.cid-tfendWS3Oo .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfendWS3Oo .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tfendWS3Oo .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tfendWS3Oo .carousel-control,
  .cid-tfendWS3Oo .carousel-indicators,
  .cid-tfendWS3Oo .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tfendWS3Oo .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tfendWS3Oo .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tfendWS3Oo .carousel-indicators .active,
.cid-tfendWS3Oo .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tfendWS3Oo .carousel-indicators .active {
  background: #fff;
}
.cid-tfendWS3Oo .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tfendWS3Oo .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tfendWS3Oo .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tfendWS3Oo .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tfendWS3Oo .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tfendWS3Oo .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tfendWS3Oo .carousel {
  width: 100%;
}
.cid-tfendWS3Oo .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tfendWS3Oo .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tfendWS3Oo .modal.fade .modal-dialog,
.cid-tfendWS3Oo .modal.in .modal-dialog {
  transform: none;
}
.cid-tfendWS3Oo .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tfendWS3Oo H6 {
  text-align: center;
}
.cid-tfendZ0jyh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tfendZ0jyh .media-container-row .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tfendYl9No {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tfendYl9No nav.navbar {
  position: fixed;
}
.cid-tfendYl9No .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-tfendYl9No .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tfendYl9No .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tfendYl9No .dropdown-item:hover,
.cid-tfendYl9No .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tfendYl9No .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tfendYl9No .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tfendYl9No .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tfendYl9No .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tfendYl9No .nav-link {
  position: relative;
}
.cid-tfendYl9No .container {
  display: flex;
  margin: auto;
}
.cid-tfendYl9No .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfendYl9No .dropdown-menu,
.cid-tfendYl9No .navbar.opened {
  background: #ffffff !important;
}
.cid-tfendYl9No .nav-item:focus,
.cid-tfendYl9No .nav-link:focus {
  outline: none;
}
.cid-tfendYl9No .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tfendYl9No .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfendYl9No .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tfendYl9No .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tfendYl9No .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tfendYl9No .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfendYl9No .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-tfendYl9No .navbar.opened {
  transition: all 0.3s;
}
.cid-tfendYl9No .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tfendYl9No .navbar .navbar-logo img {
  width: auto;
}
.cid-tfendYl9No .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfendYl9No .navbar.collapsed {
  justify-content: center;
}
.cid-tfendYl9No .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tfendYl9No .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tfendYl9No .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfendYl9No .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfendYl9No .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-tfendYl9No .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfendYl9No .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfendYl9No .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfendYl9No .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tfendYl9No .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfendYl9No .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfendYl9No .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfendYl9No .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-tfendYl9No .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tfendYl9No .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfendYl9No .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfendYl9No .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tfendYl9No .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tfendYl9No .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfendYl9No .navbar.navbar-short {
  min-height: 60px;
}
.cid-tfendYl9No .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tfendYl9No .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tfendYl9No .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-tfendYl9No .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfendYl9No .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfendYl9No .dropdown-item.active,
.cid-tfendYl9No .dropdown-item:active {
  background-color: transparent;
}
.cid-tfendYl9No .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfendYl9No .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfendYl9No .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfendYl9No .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tfendYl9No .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfendYl9No .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfendYl9No ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tfendYl9No .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tfendYl9No button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tfendYl9No button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tfendYl9No button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfendYl9No button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfendYl9No button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfendYl9No button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfendYl9No nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfendYl9No nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfendYl9No nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfendYl9No nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfendYl9No .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tfendYl9No a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tfendYl9No .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-tfendYl9No .navbar {
    height: 70px;
  }
  .cid-tfendYl9No .navbar.opened {
    height: auto;
  }
  .cid-tfendYl9No .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tgAb1o79vt {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tgAb1o79vt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgAb1o79vt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfenBRXK1e {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfenBSreZ7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfenBSreZ7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfenBSreZ7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfenBSreZ7 .mbr-section-title {
  text-align: left;
}
.cid-tfenBSreZ7 .mbr-section-subtitle {
  text-align: left;
}
.cid-tfenBTdyA3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfenBTdyA3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfenBTdyA3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfenBTdyA3 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tfenBTdyA3 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tfenBTdyA3 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tfenBTdyA3 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tfenBTdyA3 .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-tfenBTdyA3 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tfenBTdyA3 .carousel-control,
.cid-tfenBTdyA3 .close {
  background: #1b1b1b;
}
.cid-tfenBTdyA3 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tfenBTdyA3 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tfenBTdyA3 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tfenBTdyA3 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tfenBTdyA3 .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-tfenBTdyA3 .close::before {
  content: '\e91a';
}
.cid-tfenBTdyA3 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tfenBTdyA3 .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-tfenBTdyA3 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfenBTdyA3 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tfenBTdyA3 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tfenBTdyA3 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tfenBTdyA3 .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-tfenBTdyA3 .carousel-indicators li.active,
.cid-tfenBTdyA3 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tfenBTdyA3 .carousel-indicators li::after,
.cid-tfenBTdyA3 .carousel-indicators li::before {
  content: none;
}
.cid-tfenBTdyA3 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tfenBTdyA3 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tfenBTdyA3 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tfenBTdyA3 .carousel-indicators {
    display: none;
  }
}
.cid-tfenBTdyA3 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tfenBTdyA3 .carousel-inner > .active {
  display: block;
}
.cid-tfenBTdyA3 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfenBTdyA3 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tfenBTdyA3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tfenBTdyA3 .carousel-control,
  .cid-tfenBTdyA3 .carousel-indicators,
  .cid-tfenBTdyA3 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tfenBTdyA3 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tfenBTdyA3 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tfenBTdyA3 .carousel-indicators .active,
.cid-tfenBTdyA3 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tfenBTdyA3 .carousel-indicators .active {
  background: #fff;
}
.cid-tfenBTdyA3 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tfenBTdyA3 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tfenBTdyA3 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tfenBTdyA3 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tfenBTdyA3 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tfenBTdyA3 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tfenBTdyA3 .carousel {
  width: 100%;
}
.cid-tfenBTdyA3 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tfenBTdyA3 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tfenBTdyA3 .modal.fade .modal-dialog,
.cid-tfenBTdyA3 .modal.in .modal-dialog {
  transform: none;
}
.cid-tfenBTdyA3 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tfenBTdyA3 H6 {
  text-align: center;
}
.cid-tfenBULjZm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tfenBULjZm nav.navbar {
  position: fixed;
}
.cid-tfenBULjZm .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-tfenBULjZm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tfenBULjZm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tfenBULjZm .dropdown-item:hover,
.cid-tfenBULjZm .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tfenBULjZm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tfenBULjZm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tfenBULjZm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tfenBULjZm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tfenBULjZm .nav-link {
  position: relative;
}
.cid-tfenBULjZm .container {
  display: flex;
  margin: auto;
}
.cid-tfenBULjZm .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfenBULjZm .dropdown-menu,
.cid-tfenBULjZm .navbar.opened {
  background: #ffffff !important;
}
.cid-tfenBULjZm .nav-item:focus,
.cid-tfenBULjZm .nav-link:focus {
  outline: none;
}
.cid-tfenBULjZm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tfenBULjZm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfenBULjZm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tfenBULjZm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tfenBULjZm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tfenBULjZm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfenBULjZm .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-tfenBULjZm .navbar.opened {
  transition: all 0.3s;
}
.cid-tfenBULjZm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tfenBULjZm .navbar .navbar-logo img {
  width: auto;
}
.cid-tfenBULjZm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfenBULjZm .navbar.collapsed {
  justify-content: center;
}
.cid-tfenBULjZm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tfenBULjZm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tfenBULjZm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfenBULjZm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfenBULjZm .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-tfenBULjZm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfenBULjZm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfenBULjZm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfenBULjZm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tfenBULjZm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfenBULjZm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfenBULjZm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfenBULjZm .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-tfenBULjZm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tfenBULjZm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfenBULjZm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfenBULjZm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tfenBULjZm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tfenBULjZm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfenBULjZm .navbar.navbar-short {
  min-height: 60px;
}
.cid-tfenBULjZm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tfenBULjZm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tfenBULjZm .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-tfenBULjZm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfenBULjZm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfenBULjZm .dropdown-item.active,
.cid-tfenBULjZm .dropdown-item:active {
  background-color: transparent;
}
.cid-tfenBULjZm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfenBULjZm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfenBULjZm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfenBULjZm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tfenBULjZm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfenBULjZm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfenBULjZm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tfenBULjZm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tfenBULjZm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tfenBULjZm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tfenBULjZm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfenBULjZm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfenBULjZm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfenBULjZm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfenBULjZm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfenBULjZm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfenBULjZm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfenBULjZm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfenBULjZm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tfenBULjZm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tfenBULjZm .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-tfenBULjZm .navbar {
    height: 70px;
  }
  .cid-tfenBULjZm .navbar.opened {
    height: auto;
  }
  .cid-tfenBULjZm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tfenBVwVBv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tfenBVwVBv .media-container-row .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tgAb6OIZTX {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tgAb6OIZTX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgAb6OIZTX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfeo2yI5vI {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfeo2z08sD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfeo2z08sD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfeo2z08sD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfeo2z08sD .mbr-section-title {
  text-align: left;
}
.cid-tfeo2z08sD .mbr-section-subtitle {
  text-align: left;
}
.cid-tfeo2zFkfT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfeo2zFkfT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfeo2zFkfT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfeo2zFkfT .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tfeo2zFkfT .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tfeo2zFkfT .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tfeo2zFkfT .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tfeo2zFkfT .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-tfeo2zFkfT .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tfeo2zFkfT .carousel-control,
.cid-tfeo2zFkfT .close {
  background: #1b1b1b;
}
.cid-tfeo2zFkfT .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tfeo2zFkfT .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tfeo2zFkfT .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tfeo2zFkfT .carousel-control-next span {
  margin-left: 5px;
}
.cid-tfeo2zFkfT .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-tfeo2zFkfT .close::before {
  content: '\e91a';
}
.cid-tfeo2zFkfT .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tfeo2zFkfT .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-tfeo2zFkfT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfeo2zFkfT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tfeo2zFkfT .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tfeo2zFkfT .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tfeo2zFkfT .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-tfeo2zFkfT .carousel-indicators li.active,
.cid-tfeo2zFkfT .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tfeo2zFkfT .carousel-indicators li::after,
.cid-tfeo2zFkfT .carousel-indicators li::before {
  content: none;
}
.cid-tfeo2zFkfT .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tfeo2zFkfT .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tfeo2zFkfT .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tfeo2zFkfT .carousel-indicators {
    display: none;
  }
}
.cid-tfeo2zFkfT .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tfeo2zFkfT .carousel-inner > .active {
  display: block;
}
.cid-tfeo2zFkfT .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfeo2zFkfT .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tfeo2zFkfT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tfeo2zFkfT .carousel-control,
  .cid-tfeo2zFkfT .carousel-indicators,
  .cid-tfeo2zFkfT .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tfeo2zFkfT .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tfeo2zFkfT .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tfeo2zFkfT .carousel-indicators .active,
.cid-tfeo2zFkfT .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tfeo2zFkfT .carousel-indicators .active {
  background: #fff;
}
.cid-tfeo2zFkfT .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tfeo2zFkfT .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tfeo2zFkfT .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tfeo2zFkfT .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tfeo2zFkfT .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tfeo2zFkfT .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tfeo2zFkfT .carousel {
  width: 100%;
}
.cid-tfeo2zFkfT .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tfeo2zFkfT .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tfeo2zFkfT .modal.fade .modal-dialog,
.cid-tfeo2zFkfT .modal.in .modal-dialog {
  transform: none;
}
.cid-tfeo2zFkfT .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tfeo2zFkfT H6 {
  text-align: center;
}
.cid-tfeo2AM3Ft {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tfeo2AM3Ft nav.navbar {
  position: fixed;
}
.cid-tfeo2AM3Ft .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-tfeo2AM3Ft .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tfeo2AM3Ft .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tfeo2AM3Ft .dropdown-item:hover,
.cid-tfeo2AM3Ft .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tfeo2AM3Ft .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tfeo2AM3Ft .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tfeo2AM3Ft .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tfeo2AM3Ft .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tfeo2AM3Ft .nav-link {
  position: relative;
}
.cid-tfeo2AM3Ft .container {
  display: flex;
  margin: auto;
}
.cid-tfeo2AM3Ft .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfeo2AM3Ft .dropdown-menu,
.cid-tfeo2AM3Ft .navbar.opened {
  background: #ffffff !important;
}
.cid-tfeo2AM3Ft .nav-item:focus,
.cid-tfeo2AM3Ft .nav-link:focus {
  outline: none;
}
.cid-tfeo2AM3Ft .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tfeo2AM3Ft .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfeo2AM3Ft .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tfeo2AM3Ft .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tfeo2AM3Ft .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tfeo2AM3Ft .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfeo2AM3Ft .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-tfeo2AM3Ft .navbar.opened {
  transition: all 0.3s;
}
.cid-tfeo2AM3Ft .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tfeo2AM3Ft .navbar .navbar-logo img {
  width: auto;
}
.cid-tfeo2AM3Ft .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfeo2AM3Ft .navbar.collapsed {
  justify-content: center;
}
.cid-tfeo2AM3Ft .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tfeo2AM3Ft .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tfeo2AM3Ft .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfeo2AM3Ft .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfeo2AM3Ft .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-tfeo2AM3Ft .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfeo2AM3Ft .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfeo2AM3Ft .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfeo2AM3Ft .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tfeo2AM3Ft .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfeo2AM3Ft .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfeo2AM3Ft .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfeo2AM3Ft .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-tfeo2AM3Ft .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tfeo2AM3Ft .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfeo2AM3Ft .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfeo2AM3Ft .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tfeo2AM3Ft .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tfeo2AM3Ft .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfeo2AM3Ft .navbar.navbar-short {
  min-height: 60px;
}
.cid-tfeo2AM3Ft .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tfeo2AM3Ft .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tfeo2AM3Ft .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-tfeo2AM3Ft .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfeo2AM3Ft .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfeo2AM3Ft .dropdown-item.active,
.cid-tfeo2AM3Ft .dropdown-item:active {
  background-color: transparent;
}
.cid-tfeo2AM3Ft .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfeo2AM3Ft .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfeo2AM3Ft .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfeo2AM3Ft .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tfeo2AM3Ft .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfeo2AM3Ft .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfeo2AM3Ft ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tfeo2AM3Ft .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tfeo2AM3Ft button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tfeo2AM3Ft button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tfeo2AM3Ft button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfeo2AM3Ft button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfeo2AM3Ft button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfeo2AM3Ft button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfeo2AM3Ft nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfeo2AM3Ft nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfeo2AM3Ft nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfeo2AM3Ft nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfeo2AM3Ft .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tfeo2AM3Ft a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tfeo2AM3Ft .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-tfeo2AM3Ft .navbar {
    height: 70px;
  }
  .cid-tfeo2AM3Ft .navbar.opened {
    height: auto;
  }
  .cid-tfeo2AM3Ft .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tfeo2Bpz2G {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tfeo2Bpz2G .media-container-row .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tgAbahleMo {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tgAbahleMo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgAbahleMo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfeoIcU8h5 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfeoIdzb19 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfeoIdzb19 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfeoIdzb19 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfeoIdzb19 .mbr-section-title {
  text-align: left;
}
.cid-tfeoIdzb19 .mbr-section-subtitle {
  text-align: left;
}
.cid-tfeoIeSbwv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfeoIeSbwv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfeoIeSbwv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfeoIeSbwv .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tfeoIeSbwv .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tfeoIeSbwv .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tfeoIeSbwv .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tfeoIeSbwv .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-tfeoIeSbwv .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tfeoIeSbwv .carousel-control,
.cid-tfeoIeSbwv .close {
  background: #1b1b1b;
}
.cid-tfeoIeSbwv .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tfeoIeSbwv .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tfeoIeSbwv .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tfeoIeSbwv .carousel-control-next span {
  margin-left: 5px;
}
.cid-tfeoIeSbwv .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-tfeoIeSbwv .close::before {
  content: '\e91a';
}
.cid-tfeoIeSbwv .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tfeoIeSbwv .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-tfeoIeSbwv .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfeoIeSbwv .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tfeoIeSbwv .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tfeoIeSbwv .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tfeoIeSbwv .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-tfeoIeSbwv .carousel-indicators li.active,
.cid-tfeoIeSbwv .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tfeoIeSbwv .carousel-indicators li::after,
.cid-tfeoIeSbwv .carousel-indicators li::before {
  content: none;
}
.cid-tfeoIeSbwv .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tfeoIeSbwv .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tfeoIeSbwv .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tfeoIeSbwv .carousel-indicators {
    display: none;
  }
}
.cid-tfeoIeSbwv .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tfeoIeSbwv .carousel-inner > .active {
  display: block;
}
.cid-tfeoIeSbwv .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfeoIeSbwv .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tfeoIeSbwv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tfeoIeSbwv .carousel-control,
  .cid-tfeoIeSbwv .carousel-indicators,
  .cid-tfeoIeSbwv .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tfeoIeSbwv .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tfeoIeSbwv .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tfeoIeSbwv .carousel-indicators .active,
.cid-tfeoIeSbwv .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tfeoIeSbwv .carousel-indicators .active {
  background: #fff;
}
.cid-tfeoIeSbwv .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tfeoIeSbwv .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tfeoIeSbwv .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tfeoIeSbwv .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tfeoIeSbwv .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tfeoIeSbwv .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tfeoIeSbwv .carousel {
  width: 100%;
}
.cid-tfeoIeSbwv .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tfeoIeSbwv .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tfeoIeSbwv .modal.fade .modal-dialog,
.cid-tfeoIeSbwv .modal.in .modal-dialog {
  transform: none;
}
.cid-tfeoIeSbwv .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tfeoIeSbwv H6 {
  text-align: center;
}
.cid-tfeoIhpLvd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tfeoIhpLvd nav.navbar {
  position: fixed;
}
.cid-tfeoIhpLvd .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-tfeoIhpLvd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tfeoIhpLvd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tfeoIhpLvd .dropdown-item:hover,
.cid-tfeoIhpLvd .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tfeoIhpLvd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tfeoIhpLvd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tfeoIhpLvd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tfeoIhpLvd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tfeoIhpLvd .nav-link {
  position: relative;
}
.cid-tfeoIhpLvd .container {
  display: flex;
  margin: auto;
}
.cid-tfeoIhpLvd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfeoIhpLvd .dropdown-menu,
.cid-tfeoIhpLvd .navbar.opened {
  background: #ffffff !important;
}
.cid-tfeoIhpLvd .nav-item:focus,
.cid-tfeoIhpLvd .nav-link:focus {
  outline: none;
}
.cid-tfeoIhpLvd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tfeoIhpLvd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfeoIhpLvd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tfeoIhpLvd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tfeoIhpLvd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tfeoIhpLvd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfeoIhpLvd .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-tfeoIhpLvd .navbar.opened {
  transition: all 0.3s;
}
.cid-tfeoIhpLvd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tfeoIhpLvd .navbar .navbar-logo img {
  width: auto;
}
.cid-tfeoIhpLvd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfeoIhpLvd .navbar.collapsed {
  justify-content: center;
}
.cid-tfeoIhpLvd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tfeoIhpLvd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tfeoIhpLvd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfeoIhpLvd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfeoIhpLvd .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-tfeoIhpLvd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfeoIhpLvd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfeoIhpLvd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfeoIhpLvd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tfeoIhpLvd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfeoIhpLvd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfeoIhpLvd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfeoIhpLvd .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-tfeoIhpLvd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tfeoIhpLvd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfeoIhpLvd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfeoIhpLvd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tfeoIhpLvd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tfeoIhpLvd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfeoIhpLvd .navbar.navbar-short {
  min-height: 60px;
}
.cid-tfeoIhpLvd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tfeoIhpLvd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tfeoIhpLvd .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-tfeoIhpLvd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfeoIhpLvd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfeoIhpLvd .dropdown-item.active,
.cid-tfeoIhpLvd .dropdown-item:active {
  background-color: transparent;
}
.cid-tfeoIhpLvd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfeoIhpLvd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfeoIhpLvd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfeoIhpLvd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tfeoIhpLvd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfeoIhpLvd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfeoIhpLvd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tfeoIhpLvd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tfeoIhpLvd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tfeoIhpLvd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tfeoIhpLvd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfeoIhpLvd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfeoIhpLvd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfeoIhpLvd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfeoIhpLvd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfeoIhpLvd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfeoIhpLvd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfeoIhpLvd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfeoIhpLvd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tfeoIhpLvd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tfeoIhpLvd .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-tfeoIhpLvd .navbar {
    height: 70px;
  }
  .cid-tfeoIhpLvd .navbar.opened {
    height: auto;
  }
  .cid-tfeoIhpLvd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tfeoIidJvk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tfeoIidJvk .media-container-row .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tgAbe95hHv {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tgAbe95hHv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgAbe95hHv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2nl9oOWZ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2nl9ZeLQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2nl9ZeLQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf2nl9ZeLQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2nl9ZeLQ .mbr-section-title {
  text-align: left;
}
.cid-tf2nl9ZeLQ .mbr-section-subtitle {
  text-align: left;
}
.cid-tf2nlbfIqT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tf2nlbfIqT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf2nlbfIqT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf2nlbfIqT .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tf2nlbfIqT .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tf2nlbfIqT .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tf2nlbfIqT .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tf2nlbfIqT .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-tf2nlbfIqT .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tf2nlbfIqT .carousel-control,
.cid-tf2nlbfIqT .close {
  background: #1b1b1b;
}
.cid-tf2nlbfIqT .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tf2nlbfIqT .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tf2nlbfIqT .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tf2nlbfIqT .carousel-control-next span {
  margin-left: 5px;
}
.cid-tf2nlbfIqT .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-tf2nlbfIqT .close::before {
  content: '\e91a';
}
.cid-tf2nlbfIqT .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tf2nlbfIqT .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-tf2nlbfIqT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tf2nlbfIqT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tf2nlbfIqT .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tf2nlbfIqT .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tf2nlbfIqT .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-tf2nlbfIqT .carousel-indicators li.active,
.cid-tf2nlbfIqT .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tf2nlbfIqT .carousel-indicators li::after,
.cid-tf2nlbfIqT .carousel-indicators li::before {
  content: none;
}
.cid-tf2nlbfIqT .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tf2nlbfIqT .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tf2nlbfIqT .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tf2nlbfIqT .carousel-indicators {
    display: none;
  }
}
.cid-tf2nlbfIqT .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tf2nlbfIqT .carousel-inner > .active {
  display: block;
}
.cid-tf2nlbfIqT .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tf2nlbfIqT .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tf2nlbfIqT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tf2nlbfIqT .carousel-control,
  .cid-tf2nlbfIqT .carousel-indicators,
  .cid-tf2nlbfIqT .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tf2nlbfIqT .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tf2nlbfIqT .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tf2nlbfIqT .carousel-indicators .active,
.cid-tf2nlbfIqT .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tf2nlbfIqT .carousel-indicators .active {
  background: #fff;
}
.cid-tf2nlbfIqT .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tf2nlbfIqT .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tf2nlbfIqT .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tf2nlbfIqT .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tf2nlbfIqT .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tf2nlbfIqT .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tf2nlbfIqT .carousel {
  width: 100%;
}
.cid-tf2nlbfIqT .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tf2nlbfIqT .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tf2nlbfIqT .modal.fade .modal-dialog,
.cid-tf2nlbfIqT .modal.in .modal-dialog {
  transform: none;
}
.cid-tf2nlbfIqT .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tf2nlbfIqT H6 {
  text-align: center;
}
.cid-tf2nlcxsBT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tf2nlcxsBT nav.navbar {
  position: fixed;
}
.cid-tf2nlcxsBT .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-tf2nlcxsBT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tf2nlcxsBT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tf2nlcxsBT .dropdown-item:hover,
.cid-tf2nlcxsBT .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tf2nlcxsBT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tf2nlcxsBT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tf2nlcxsBT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tf2nlcxsBT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tf2nlcxsBT .nav-link {
  position: relative;
}
.cid-tf2nlcxsBT .container {
  display: flex;
  margin: auto;
}
.cid-tf2nlcxsBT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tf2nlcxsBT .dropdown-menu,
.cid-tf2nlcxsBT .navbar.opened {
  background: #ffffff !important;
}
.cid-tf2nlcxsBT .nav-item:focus,
.cid-tf2nlcxsBT .nav-link:focus {
  outline: none;
}
.cid-tf2nlcxsBT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tf2nlcxsBT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tf2nlcxsBT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tf2nlcxsBT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tf2nlcxsBT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tf2nlcxsBT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tf2nlcxsBT .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-tf2nlcxsBT .navbar.opened {
  transition: all 0.3s;
}
.cid-tf2nlcxsBT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tf2nlcxsBT .navbar .navbar-logo img {
  width: auto;
}
.cid-tf2nlcxsBT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tf2nlcxsBT .navbar.collapsed {
  justify-content: center;
}
.cid-tf2nlcxsBT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tf2nlcxsBT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tf2nlcxsBT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tf2nlcxsBT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tf2nlcxsBT .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-tf2nlcxsBT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tf2nlcxsBT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tf2nlcxsBT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tf2nlcxsBT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tf2nlcxsBT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tf2nlcxsBT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tf2nlcxsBT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tf2nlcxsBT .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-tf2nlcxsBT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tf2nlcxsBT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tf2nlcxsBT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tf2nlcxsBT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tf2nlcxsBT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tf2nlcxsBT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tf2nlcxsBT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tf2nlcxsBT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tf2nlcxsBT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tf2nlcxsBT .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-tf2nlcxsBT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tf2nlcxsBT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tf2nlcxsBT .dropdown-item.active,
.cid-tf2nlcxsBT .dropdown-item:active {
  background-color: transparent;
}
.cid-tf2nlcxsBT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tf2nlcxsBT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tf2nlcxsBT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tf2nlcxsBT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tf2nlcxsBT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tf2nlcxsBT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tf2nlcxsBT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tf2nlcxsBT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tf2nlcxsBT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tf2nlcxsBT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tf2nlcxsBT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tf2nlcxsBT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf2nlcxsBT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf2nlcxsBT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tf2nlcxsBT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf2nlcxsBT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tf2nlcxsBT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tf2nlcxsBT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf2nlcxsBT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tf2nlcxsBT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tf2nlcxsBT .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-tf2nlcxsBT .navbar {
    height: 70px;
  }
  .cid-tf2nlcxsBT .navbar.opened {
    height: auto;
  }
  .cid-tf2nlcxsBT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tf2nldka22 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tf2nldka22 .media-container-row .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tgAbhLiZ8h {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tgAbhLiZ8h .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgAbhLiZ8h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfehXStlCi {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfehXToQSW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfehXToQSW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfehXToQSW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfehXToQSW .mbr-section-title {
  text-align: left;
}
.cid-tfehXToQSW .mbr-section-subtitle {
  text-align: left;
}
.cid-tfehXUAAdB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfehXUAAdB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfehXUAAdB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfehXUAAdB .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tfehXUAAdB .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tfehXUAAdB .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tfehXUAAdB .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tfehXUAAdB .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-tfehXUAAdB .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tfehXUAAdB .carousel-control,
.cid-tfehXUAAdB .close {
  background: #1b1b1b;
}
.cid-tfehXUAAdB .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tfehXUAAdB .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tfehXUAAdB .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tfehXUAAdB .carousel-control-next span {
  margin-left: 5px;
}
.cid-tfehXUAAdB .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-tfehXUAAdB .close::before {
  content: '\e91a';
}
.cid-tfehXUAAdB .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tfehXUAAdB .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-tfehXUAAdB .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfehXUAAdB .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tfehXUAAdB .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tfehXUAAdB .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tfehXUAAdB .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-tfehXUAAdB .carousel-indicators li.active,
.cid-tfehXUAAdB .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tfehXUAAdB .carousel-indicators li::after,
.cid-tfehXUAAdB .carousel-indicators li::before {
  content: none;
}
.cid-tfehXUAAdB .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tfehXUAAdB .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tfehXUAAdB .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tfehXUAAdB .carousel-indicators {
    display: none;
  }
}
.cid-tfehXUAAdB .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tfehXUAAdB .carousel-inner > .active {
  display: block;
}
.cid-tfehXUAAdB .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfehXUAAdB .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tfehXUAAdB .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tfehXUAAdB .carousel-control,
  .cid-tfehXUAAdB .carousel-indicators,
  .cid-tfehXUAAdB .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tfehXUAAdB .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tfehXUAAdB .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tfehXUAAdB .carousel-indicators .active,
.cid-tfehXUAAdB .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tfehXUAAdB .carousel-indicators .active {
  background: #fff;
}
.cid-tfehXUAAdB .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tfehXUAAdB .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tfehXUAAdB .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tfehXUAAdB .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tfehXUAAdB .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tfehXUAAdB .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tfehXUAAdB .carousel {
  width: 100%;
}
.cid-tfehXUAAdB .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tfehXUAAdB .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tfehXUAAdB .modal.fade .modal-dialog,
.cid-tfehXUAAdB .modal.in .modal-dialog {
  transform: none;
}
.cid-tfehXUAAdB .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tfehXUAAdB H6 {
  text-align: center;
}
.cid-tfehXWeb9Y {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tfehXWeb9Y nav.navbar {
  position: fixed;
}
.cid-tfehXWeb9Y .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-tfehXWeb9Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tfehXWeb9Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tfehXWeb9Y .dropdown-item:hover,
.cid-tfehXWeb9Y .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tfehXWeb9Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tfehXWeb9Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tfehXWeb9Y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tfehXWeb9Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tfehXWeb9Y .nav-link {
  position: relative;
}
.cid-tfehXWeb9Y .container {
  display: flex;
  margin: auto;
}
.cid-tfehXWeb9Y .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfehXWeb9Y .dropdown-menu,
.cid-tfehXWeb9Y .navbar.opened {
  background: #ffffff !important;
}
.cid-tfehXWeb9Y .nav-item:focus,
.cid-tfehXWeb9Y .nav-link:focus {
  outline: none;
}
.cid-tfehXWeb9Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tfehXWeb9Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfehXWeb9Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tfehXWeb9Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tfehXWeb9Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tfehXWeb9Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfehXWeb9Y .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-tfehXWeb9Y .navbar.opened {
  transition: all 0.3s;
}
.cid-tfehXWeb9Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tfehXWeb9Y .navbar .navbar-logo img {
  width: auto;
}
.cid-tfehXWeb9Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfehXWeb9Y .navbar.collapsed {
  justify-content: center;
}
.cid-tfehXWeb9Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tfehXWeb9Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tfehXWeb9Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfehXWeb9Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfehXWeb9Y .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-tfehXWeb9Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfehXWeb9Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfehXWeb9Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfehXWeb9Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tfehXWeb9Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfehXWeb9Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfehXWeb9Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfehXWeb9Y .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-tfehXWeb9Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tfehXWeb9Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfehXWeb9Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfehXWeb9Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tfehXWeb9Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tfehXWeb9Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfehXWeb9Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-tfehXWeb9Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tfehXWeb9Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tfehXWeb9Y .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-tfehXWeb9Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfehXWeb9Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfehXWeb9Y .dropdown-item.active,
.cid-tfehXWeb9Y .dropdown-item:active {
  background-color: transparent;
}
.cid-tfehXWeb9Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfehXWeb9Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfehXWeb9Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfehXWeb9Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tfehXWeb9Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfehXWeb9Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfehXWeb9Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tfehXWeb9Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tfehXWeb9Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tfehXWeb9Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tfehXWeb9Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfehXWeb9Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfehXWeb9Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfehXWeb9Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfehXWeb9Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfehXWeb9Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfehXWeb9Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfehXWeb9Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfehXWeb9Y .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tfehXWeb9Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tfehXWeb9Y .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-tfehXWeb9Y .navbar {
    height: 70px;
  }
  .cid-tfehXWeb9Y .navbar.opened {
    height: auto;
  }
  .cid-tfehXWeb9Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tfehXX0Tgh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tfehXX0Tgh .media-container-row .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tgAbkxvvJQ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tgAbkxvvJQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgAbkxvvJQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfHdNRoxD6 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfHdNT7Z7k {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfHdNT7Z7k .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfHdNT7Z7k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfHdNT7Z7k .mbr-section-title {
  text-align: left;
}
.cid-tfHdNT7Z7k .mbr-section-subtitle {
  text-align: left;
}
.cid-tfHdNW97kK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfHdNW97kK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfHdNW97kK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfHdNW97kK .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tfHdNW97kK .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tfHdNW97kK .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tfHdNW97kK .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tfHdNW97kK .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-tfHdNW97kK .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tfHdNW97kK .carousel-control,
.cid-tfHdNW97kK .close {
  background: #1b1b1b;
}
.cid-tfHdNW97kK .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tfHdNW97kK .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tfHdNW97kK .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tfHdNW97kK .carousel-control-next span {
  margin-left: 5px;
}
.cid-tfHdNW97kK .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-tfHdNW97kK .close::before {
  content: '\e91a';
}
.cid-tfHdNW97kK .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tfHdNW97kK .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-tfHdNW97kK .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfHdNW97kK .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tfHdNW97kK .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tfHdNW97kK .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tfHdNW97kK .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-tfHdNW97kK .carousel-indicators li.active,
.cid-tfHdNW97kK .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tfHdNW97kK .carousel-indicators li::after,
.cid-tfHdNW97kK .carousel-indicators li::before {
  content: none;
}
.cid-tfHdNW97kK .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tfHdNW97kK .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tfHdNW97kK .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tfHdNW97kK .carousel-indicators {
    display: none;
  }
}
.cid-tfHdNW97kK .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tfHdNW97kK .carousel-inner > .active {
  display: block;
}
.cid-tfHdNW97kK .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfHdNW97kK .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tfHdNW97kK .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tfHdNW97kK .carousel-control,
  .cid-tfHdNW97kK .carousel-indicators,
  .cid-tfHdNW97kK .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tfHdNW97kK .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tfHdNW97kK .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tfHdNW97kK .carousel-indicators .active,
.cid-tfHdNW97kK .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tfHdNW97kK .carousel-indicators .active {
  background: #fff;
}
.cid-tfHdNW97kK .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tfHdNW97kK .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tfHdNW97kK .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tfHdNW97kK .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tfHdNW97kK .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tfHdNW97kK .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tfHdNW97kK .carousel {
  width: 100%;
}
.cid-tfHdNW97kK .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tfHdNW97kK .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tfHdNW97kK .modal.fade .modal-dialog,
.cid-tfHdNW97kK .modal.in .modal-dialog {
  transform: none;
}
.cid-tfHdNW97kK .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tfHdNW97kK H6 {
  text-align: center;
}
.cid-tfHdNYtCjC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tfHdNYtCjC nav.navbar {
  position: fixed;
}
.cid-tfHdNYtCjC .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-tfHdNYtCjC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tfHdNYtCjC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tfHdNYtCjC .dropdown-item:hover,
.cid-tfHdNYtCjC .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tfHdNYtCjC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tfHdNYtCjC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tfHdNYtCjC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tfHdNYtCjC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tfHdNYtCjC .nav-link {
  position: relative;
}
.cid-tfHdNYtCjC .container {
  display: flex;
  margin: auto;
}
.cid-tfHdNYtCjC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfHdNYtCjC .dropdown-menu,
.cid-tfHdNYtCjC .navbar.opened {
  background: #ffffff !important;
}
.cid-tfHdNYtCjC .nav-item:focus,
.cid-tfHdNYtCjC .nav-link:focus {
  outline: none;
}
.cid-tfHdNYtCjC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tfHdNYtCjC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfHdNYtCjC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tfHdNYtCjC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tfHdNYtCjC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tfHdNYtCjC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfHdNYtCjC .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-tfHdNYtCjC .navbar.opened {
  transition: all 0.3s;
}
.cid-tfHdNYtCjC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tfHdNYtCjC .navbar .navbar-logo img {
  width: auto;
}
.cid-tfHdNYtCjC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfHdNYtCjC .navbar.collapsed {
  justify-content: center;
}
.cid-tfHdNYtCjC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tfHdNYtCjC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tfHdNYtCjC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfHdNYtCjC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfHdNYtCjC .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-tfHdNYtCjC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfHdNYtCjC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfHdNYtCjC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfHdNYtCjC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tfHdNYtCjC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfHdNYtCjC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfHdNYtCjC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfHdNYtCjC .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-tfHdNYtCjC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tfHdNYtCjC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfHdNYtCjC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfHdNYtCjC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tfHdNYtCjC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tfHdNYtCjC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfHdNYtCjC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tfHdNYtCjC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tfHdNYtCjC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tfHdNYtCjC .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-tfHdNYtCjC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfHdNYtCjC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfHdNYtCjC .dropdown-item.active,
.cid-tfHdNYtCjC .dropdown-item:active {
  background-color: transparent;
}
.cid-tfHdNYtCjC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfHdNYtCjC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfHdNYtCjC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfHdNYtCjC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tfHdNYtCjC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfHdNYtCjC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfHdNYtCjC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tfHdNYtCjC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tfHdNYtCjC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tfHdNYtCjC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tfHdNYtCjC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfHdNYtCjC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfHdNYtCjC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfHdNYtCjC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfHdNYtCjC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfHdNYtCjC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfHdNYtCjC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfHdNYtCjC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfHdNYtCjC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tfHdNYtCjC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tfHdNYtCjC .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-tfHdNYtCjC .navbar {
    height: 70px;
  }
  .cid-tfHdNYtCjC .navbar.opened {
    height: auto;
  }
  .cid-tfHdNYtCjC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tfHdNZkEap {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tfHdNZkEap .media-container-row .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tgAbopRHNm {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tgAbopRHNm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgAbopRHNm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgsLF17fE6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tgsLF1G84Z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tgsLF1G84Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgsLF1G84Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgsLF1G84Z .mbr-section-title {
  text-align: left;
}
.cid-tgsLF1G84Z .mbr-section-subtitle {
  text-align: left;
}
.cid-tgsLF2PpZP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tgsLF2PpZP nav.navbar {
  position: fixed;
}
.cid-tgsLF2PpZP .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-tgsLF2PpZP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tgsLF2PpZP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tgsLF2PpZP .dropdown-item:hover,
.cid-tgsLF2PpZP .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tgsLF2PpZP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tgsLF2PpZP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tgsLF2PpZP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tgsLF2PpZP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tgsLF2PpZP .nav-link {
  position: relative;
}
.cid-tgsLF2PpZP .container {
  display: flex;
  margin: auto;
}
.cid-tgsLF2PpZP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tgsLF2PpZP .dropdown-menu,
.cid-tgsLF2PpZP .navbar.opened {
  background: #ffffff !important;
}
.cid-tgsLF2PpZP .nav-item:focus,
.cid-tgsLF2PpZP .nav-link:focus {
  outline: none;
}
.cid-tgsLF2PpZP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tgsLF2PpZP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tgsLF2PpZP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tgsLF2PpZP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tgsLF2PpZP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tgsLF2PpZP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tgsLF2PpZP .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-tgsLF2PpZP .navbar.opened {
  transition: all 0.3s;
}
.cid-tgsLF2PpZP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tgsLF2PpZP .navbar .navbar-logo img {
  width: auto;
}
.cid-tgsLF2PpZP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tgsLF2PpZP .navbar.collapsed {
  justify-content: center;
}
.cid-tgsLF2PpZP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tgsLF2PpZP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tgsLF2PpZP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tgsLF2PpZP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tgsLF2PpZP .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-tgsLF2PpZP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tgsLF2PpZP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tgsLF2PpZP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tgsLF2PpZP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tgsLF2PpZP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tgsLF2PpZP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tgsLF2PpZP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tgsLF2PpZP .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-tgsLF2PpZP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tgsLF2PpZP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tgsLF2PpZP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tgsLF2PpZP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tgsLF2PpZP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tgsLF2PpZP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tgsLF2PpZP .navbar.navbar-short {
  min-height: 60px;
}
.cid-tgsLF2PpZP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tgsLF2PpZP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tgsLF2PpZP .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-tgsLF2PpZP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tgsLF2PpZP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tgsLF2PpZP .dropdown-item.active,
.cid-tgsLF2PpZP .dropdown-item:active {
  background-color: transparent;
}
.cid-tgsLF2PpZP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tgsLF2PpZP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tgsLF2PpZP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tgsLF2PpZP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tgsLF2PpZP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tgsLF2PpZP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tgsLF2PpZP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tgsLF2PpZP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tgsLF2PpZP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tgsLF2PpZP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tgsLF2PpZP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tgsLF2PpZP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tgsLF2PpZP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tgsLF2PpZP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tgsLF2PpZP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tgsLF2PpZP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tgsLF2PpZP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tgsLF2PpZP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tgsLF2PpZP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tgsLF2PpZP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tgsLF2PpZP .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-tgsLF2PpZP .navbar {
    height: 70px;
  }
  .cid-tgsLF2PpZP .navbar.opened {
    height: auto;
  }
  .cid-tgsLF2PpZP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tgsLF3wK9z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tgsLF3wK9z .media-container-row .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-th0NTSRTbZ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-th0NZmh40g {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-th0NZmh40g .mbr-fallback-image.disabled {
  display: none;
}
.cid-th0NZmh40g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-th0NZmh40g .mbr-section-title {
  text-align: left;
}
.cid-th0NZmh40g .mbr-section-subtitle {
  text-align: left;
}
.cid-th0NTX0Bro {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-th0NTX0Bro nav.navbar {
  position: fixed;
}
.cid-th0NTX0Bro .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-th0NTX0Bro .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-th0NTX0Bro .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-th0NTX0Bro .dropdown-item:hover,
.cid-th0NTX0Bro .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-th0NTX0Bro .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-th0NTX0Bro .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-th0NTX0Bro .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-th0NTX0Bro .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-th0NTX0Bro .nav-link {
  position: relative;
}
.cid-th0NTX0Bro .container {
  display: flex;
  margin: auto;
}
.cid-th0NTX0Bro .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-th0NTX0Bro .dropdown-menu,
.cid-th0NTX0Bro .navbar.opened {
  background: #ffffff !important;
}
.cid-th0NTX0Bro .nav-item:focus,
.cid-th0NTX0Bro .nav-link:focus {
  outline: none;
}
.cid-th0NTX0Bro .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-th0NTX0Bro .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-th0NTX0Bro .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-th0NTX0Bro .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-th0NTX0Bro .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-th0NTX0Bro .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-th0NTX0Bro .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-th0NTX0Bro .navbar.opened {
  transition: all 0.3s;
}
.cid-th0NTX0Bro .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-th0NTX0Bro .navbar .navbar-logo img {
  width: auto;
}
.cid-th0NTX0Bro .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-th0NTX0Bro .navbar.collapsed {
  justify-content: center;
}
.cid-th0NTX0Bro .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-th0NTX0Bro .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-th0NTX0Bro .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-th0NTX0Bro .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-th0NTX0Bro .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-th0NTX0Bro .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-th0NTX0Bro .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-th0NTX0Bro .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-th0NTX0Bro .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-th0NTX0Bro .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-th0NTX0Bro .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-th0NTX0Bro .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-th0NTX0Bro .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-th0NTX0Bro .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-th0NTX0Bro .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-th0NTX0Bro .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-th0NTX0Bro .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-th0NTX0Bro .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-th0NTX0Bro .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-th0NTX0Bro .navbar.navbar-short {
  min-height: 60px;
}
.cid-th0NTX0Bro .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-th0NTX0Bro .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-th0NTX0Bro .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-th0NTX0Bro .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-th0NTX0Bro .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-th0NTX0Bro .dropdown-item.active,
.cid-th0NTX0Bro .dropdown-item:active {
  background-color: transparent;
}
.cid-th0NTX0Bro .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-th0NTX0Bro .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-th0NTX0Bro .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-th0NTX0Bro .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-th0NTX0Bro .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-th0NTX0Bro .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-th0NTX0Bro ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-th0NTX0Bro .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-th0NTX0Bro button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-th0NTX0Bro button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-th0NTX0Bro button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-th0NTX0Bro button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-th0NTX0Bro button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-th0NTX0Bro button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-th0NTX0Bro nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-th0NTX0Bro nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-th0NTX0Bro nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-th0NTX0Bro nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-th0NTX0Bro .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-th0NTX0Bro a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-th0NTX0Bro .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-th0NTX0Bro .navbar {
    height: 70px;
  }
  .cid-th0NTX0Bro .navbar.opened {
    height: auto;
  }
  .cid-th0NTX0Bro .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-th0NTXMayb {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-th0NTXMayb .media-container-row .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-th0NTYgnQz {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-th0NTYgnQz .mbr-fallback-image.disabled {
  display: none;
}
.cid-th0NTYgnQz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-th0QoRFOYa {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-th0Qwd9zYL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-th0Qwd9zYL .mbr-fallback-image.disabled {
  display: none;
}
.cid-th0Qwd9zYL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-th0Qwd9zYL .mbr-section-title {
  text-align: left;
}
.cid-th0Qwd9zYL .mbr-section-subtitle {
  text-align: left;
}
.cid-th0QoU4BP5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-th0QoU4BP5 nav.navbar {
  position: fixed;
}
.cid-th0QoU4BP5 .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-th0QoU4BP5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-th0QoU4BP5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-th0QoU4BP5 .dropdown-item:hover,
.cid-th0QoU4BP5 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-th0QoU4BP5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-th0QoU4BP5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-th0QoU4BP5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-th0QoU4BP5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-th0QoU4BP5 .nav-link {
  position: relative;
}
.cid-th0QoU4BP5 .container {
  display: flex;
  margin: auto;
}
.cid-th0QoU4BP5 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-th0QoU4BP5 .dropdown-menu,
.cid-th0QoU4BP5 .navbar.opened {
  background: #ffffff !important;
}
.cid-th0QoU4BP5 .nav-item:focus,
.cid-th0QoU4BP5 .nav-link:focus {
  outline: none;
}
.cid-th0QoU4BP5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-th0QoU4BP5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-th0QoU4BP5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-th0QoU4BP5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-th0QoU4BP5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-th0QoU4BP5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-th0QoU4BP5 .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-th0QoU4BP5 .navbar.opened {
  transition: all 0.3s;
}
.cid-th0QoU4BP5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-th0QoU4BP5 .navbar .navbar-logo img {
  width: auto;
}
.cid-th0QoU4BP5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-th0QoU4BP5 .navbar.collapsed {
  justify-content: center;
}
.cid-th0QoU4BP5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-th0QoU4BP5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-th0QoU4BP5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-th0QoU4BP5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-th0QoU4BP5 .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-th0QoU4BP5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-th0QoU4BP5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-th0QoU4BP5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-th0QoU4BP5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-th0QoU4BP5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-th0QoU4BP5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-th0QoU4BP5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-th0QoU4BP5 .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-th0QoU4BP5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-th0QoU4BP5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-th0QoU4BP5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-th0QoU4BP5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-th0QoU4BP5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-th0QoU4BP5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-th0QoU4BP5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-th0QoU4BP5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-th0QoU4BP5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-th0QoU4BP5 .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-th0QoU4BP5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-th0QoU4BP5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-th0QoU4BP5 .dropdown-item.active,
.cid-th0QoU4BP5 .dropdown-item:active {
  background-color: transparent;
}
.cid-th0QoU4BP5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-th0QoU4BP5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-th0QoU4BP5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-th0QoU4BP5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-th0QoU4BP5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-th0QoU4BP5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-th0QoU4BP5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-th0QoU4BP5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-th0QoU4BP5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-th0QoU4BP5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-th0QoU4BP5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-th0QoU4BP5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-th0QoU4BP5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-th0QoU4BP5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-th0QoU4BP5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-th0QoU4BP5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-th0QoU4BP5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-th0QoU4BP5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-th0QoU4BP5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-th0QoU4BP5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-th0QoU4BP5 .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-th0QoU4BP5 .navbar {
    height: 70px;
  }
  .cid-th0QoU4BP5 .navbar.opened {
    height: auto;
  }
  .cid-th0QoU4BP5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-th0QoUF0vF {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-th0QoUF0vF .media-container-row .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-th0QoV5qls {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-th0QoV5qls .mbr-fallback-image.disabled {
  display: none;
}
.cid-th0QoV5qls .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
