body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 1.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 2rem;
}
.display-2 {
  font-family: 'Castor One W01 Regular';
  font-size: 2.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Corbel';
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Felt Tip Woman';
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 2rem;
}
/* ---- 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: 1.28rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.12rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s48MCQYojq {
  background-image: url("../../../assets/images/drevolution-svieti-1672x986.jpg");
}
.cid-s48MCQYojq .mbr-section-title {
  text-align: center;
  color: #f6edc5;
}
.cid-s48MCQYojq .mbr-text,
.cid-s48MCQYojq .mbr-section-btn {
  color: #232323;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-s48MCQYojq .mbr-section-title,
  .cid-s48MCQYojq .mbr-section-btn,
  .cid-s48MCQYojq .mbr-text {
    text-align: center;
  }
}
.cid-s48udlf8KU {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-s48udlf8KU .mbr-section-title {
  text-align: left;
  color: #d7461c;
}
.cid-s48udlf8KU .mbr-section-subtitle {
  text-align: left;
}
.cid-sJrId0sCbP {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-sJrId0sCbP .container {
    max-width: 1400px;
  }
}
.cid-sJrId0sCbP .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-sJrId0sCbP .card-wrapper {
  margin-top: 3rem;
}
.cid-sJrId0sCbP .row {
  justify-content: center;
}
.cid-sJobKdhF2w {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-sJobKdhF2w .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sJobKdhF2w .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sJobKdhF2w .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sJobKdhF2w .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sJobKdhF2w .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sJobKdhF2w .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sJobKdhF2w .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sJobKdhF2w .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sJobKdhF2w .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sJobKdhF2w .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sJobKdhF2w .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sJobKdhF2w .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sJobKdhF2w .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sJobKdhF2w .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sJmMM7SMfv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sJmMM7SMfv .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sJmMM7SMfv .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sJmMM7SMfv .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sJmMM7SMfv .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sJmMM7SMfv .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-sJoaJQGWtX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-sJoaJQGWtX .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sJoaJQGWtX .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sJoaJQGWtX .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sJoaJQGWtX .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sJoaJQGWtX .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sJoaJQGWtX .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sJoaJQGWtX .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sJoaJQGWtX .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sJoaJQGWtX .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sJoaJQGWtX .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sJoaJQGWtX .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sJoaJQGWtX .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sJoaJQGWtX .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sJoaJQGWtX .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sJoaJQGWtX foot-menu-item {
  text-align: right;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sOKhewU5a0 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sOKhewU5a0 .video-wrapper iframe {
  width: 100%;
}
.cid-sOKhewU5a0 .mbr-section-title,
.cid-sOKhewU5a0 .mbr-section-subtitle,
.cid-sOKhewU5a0 .mbr-text {
  text-align: center;
}
.cid-sOKhewU5a0 .mbr-section-title {
  text-align: center;
}
.cid-sJnSXiFVxa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sJnSXiFVxa .video-wrapper iframe {
  width: 100%;
}
.cid-sJnSXiFVxa .mbr-section-title,
.cid-sJnSXiFVxa .mbr-section-subtitle,
.cid-sJnSXiFVxa .mbr-text {
  text-align: center;
}
.cid-sJnY4msqzO {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sJnY4msqzO .video-wrapper iframe {
  width: 100%;
}
.cid-sJnY4msqzO .mbr-section-title,
.cid-sJnY4msqzO .mbr-section-subtitle,
.cid-sJnY4msqzO .mbr-text {
  text-align: center;
}
.cid-sJo9PmmtnS {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sJo9PmmtnS .video-wrapper iframe {
  width: 100%;
}
.cid-sJo9PmmtnS .mbr-section-title,
.cid-sJo9PmmtnS .mbr-section-subtitle,
.cid-sJo9PmmtnS .mbr-text {
  text-align: center;
}
.cid-sJo9NUySqu {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sJo9NUySqu .video-wrapper iframe {
  width: 100%;
}
.cid-sJo9NUySqu .mbr-section-title,
.cid-sJo9NUySqu .mbr-section-subtitle,
.cid-sJo9NUySqu .mbr-text {
  text-align: center;
}
.cid-sKpXHpE5mR {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sKpXHpE5mR .video-wrapper iframe {
  width: 100%;
}
.cid-sKpXHpE5mR .mbr-section-title,
.cid-sKpXHpE5mR .mbr-section-subtitle,
.cid-sKpXHpE5mR .mbr-text {
  text-align: center;
}
.cid-sKpXHpE5mR .mbr-section-title {
  text-align: center;
}
.cid-sJnY3C23xP {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sJnY3C23xP .video-wrapper iframe {
  width: 100%;
}
.cid-sJnY3C23xP .mbr-section-title,
.cid-sJnY3C23xP .mbr-section-subtitle,
.cid-sJnY3C23xP .mbr-text {
  text-align: center;
}
.cid-sJrJBKt9wA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-sJrJBKt9wA .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sJrJBKt9wA .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sJrJBKt9wA .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sJrJBKt9wA .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sJrJBKt9wA .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sJrJBKt9wA .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sJrJBKt9wA .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sJrJBKt9wA .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sJrJBKt9wA .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sJrJBKt9wA .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sJrJBKt9wA .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sJrJBKt9wA .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sJrJBKt9wA .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sJrJBKt9wA .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sJrJBKt9wA foot-menu-item {
  text-align: right;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1IJhoJghf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u1IJhoJghf .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u1IJhoJghf .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-u1IJhoJghf .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u1IJhoJghf .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u1IJhoJghf .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-u1IJhoJghf .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u1IJhoJghf .carousel-control,
.cid-u1IJhoJghf .close {
  background: #1b1b1b;
}
.cid-u1IJhoJghf .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u1IJhoJghf .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u1IJhoJghf .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u1IJhoJghf .carousel-control-next span {
  margin-left: 5px;
}
.cid-u1IJhoJghf .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-u1IJhoJghf .close::before {
  content: '\e91a';
}
.cid-u1IJhoJghf .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u1IJhoJghf .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-u1IJhoJghf .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u1IJhoJghf .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u1IJhoJghf .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u1IJhoJghf .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u1IJhoJghf .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-u1IJhoJghf .carousel-indicators li.active,
.cid-u1IJhoJghf .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u1IJhoJghf .carousel-indicators li::after,
.cid-u1IJhoJghf .carousel-indicators li::before {
  content: none;
}
.cid-u1IJhoJghf .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u1IJhoJghf .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u1IJhoJghf .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u1IJhoJghf .carousel-indicators {
    display: none;
  }
}
.cid-u1IJhoJghf .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u1IJhoJghf .carousel-inner > .active {
  display: block;
}
.cid-u1IJhoJghf .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u1IJhoJghf .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u1IJhoJghf .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u1IJhoJghf .carousel-control,
  .cid-u1IJhoJghf .carousel-indicators,
  .cid-u1IJhoJghf .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u1IJhoJghf .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u1IJhoJghf .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u1IJhoJghf .carousel-indicators .active,
.cid-u1IJhoJghf .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u1IJhoJghf .carousel-indicators .active {
  background: #fff;
}
.cid-u1IJhoJghf .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u1IJhoJghf .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u1IJhoJghf .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u1IJhoJghf .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u1IJhoJghf .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u1IJhoJghf .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u1IJhoJghf .carousel {
  width: 100%;
}
.cid-u1IJhoJghf .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u1IJhoJghf .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u1IJhoJghf .modal.fade .modal-dialog,
.cid-u1IJhoJghf .modal.in .modal-dialog {
  transform: none;
}
.cid-u1IJhoJghf .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u1IJhoJghf H6 {
  text-align: center;
}
.cid-u1IJhoJghf H3 {
  color: #232323;
}
.cid-u1IJntaAOQ {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u1lOqJMwGe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u1lOqJMwGe .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u1lOqJMwGe .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-u1lOqJMwGe .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u1lOqJMwGe .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u1lOqJMwGe .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-u1lOqJMwGe .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u1lOqJMwGe .carousel-control,
.cid-u1lOqJMwGe .close {
  background: #1b1b1b;
}
.cid-u1lOqJMwGe .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u1lOqJMwGe .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u1lOqJMwGe .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u1lOqJMwGe .carousel-control-next span {
  margin-left: 5px;
}
.cid-u1lOqJMwGe .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-u1lOqJMwGe .close::before {
  content: '\e91a';
}
.cid-u1lOqJMwGe .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u1lOqJMwGe .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-u1lOqJMwGe .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u1lOqJMwGe .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u1lOqJMwGe .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u1lOqJMwGe .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u1lOqJMwGe .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-u1lOqJMwGe .carousel-indicators li.active,
.cid-u1lOqJMwGe .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u1lOqJMwGe .carousel-indicators li::after,
.cid-u1lOqJMwGe .carousel-indicators li::before {
  content: none;
}
.cid-u1lOqJMwGe .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u1lOqJMwGe .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u1lOqJMwGe .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u1lOqJMwGe .carousel-indicators {
    display: none;
  }
}
.cid-u1lOqJMwGe .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u1lOqJMwGe .carousel-inner > .active {
  display: block;
}
.cid-u1lOqJMwGe .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u1lOqJMwGe .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u1lOqJMwGe .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u1lOqJMwGe .carousel-control,
  .cid-u1lOqJMwGe .carousel-indicators,
  .cid-u1lOqJMwGe .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u1lOqJMwGe .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u1lOqJMwGe .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u1lOqJMwGe .carousel-indicators .active,
.cid-u1lOqJMwGe .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u1lOqJMwGe .carousel-indicators .active {
  background: #fff;
}
.cid-u1lOqJMwGe .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u1lOqJMwGe .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u1lOqJMwGe .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u1lOqJMwGe .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u1lOqJMwGe .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u1lOqJMwGe .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u1lOqJMwGe .carousel {
  width: 100%;
}
.cid-u1lOqJMwGe .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u1lOqJMwGe .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u1lOqJMwGe .modal.fade .modal-dialog,
.cid-u1lOqJMwGe .modal.in .modal-dialog {
  transform: none;
}
.cid-u1lOqJMwGe .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u1lOqJMwGe H6 {
  text-align: center;
}
.cid-u1lOSX65bf {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u1lzUoUWlb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u1lzUoUWlb .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u1lzUoUWlb .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-u1lzUoUWlb .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u1lzUoUWlb .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u1lzUoUWlb .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-u1lzUoUWlb .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u1lzUoUWlb .carousel-control,
.cid-u1lzUoUWlb .close {
  background: #1b1b1b;
}
.cid-u1lzUoUWlb .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u1lzUoUWlb .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u1lzUoUWlb .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u1lzUoUWlb .carousel-control-next span {
  margin-left: 5px;
}
.cid-u1lzUoUWlb .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-u1lzUoUWlb .close::before {
  content: '\e91a';
}
.cid-u1lzUoUWlb .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u1lzUoUWlb .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-u1lzUoUWlb .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u1lzUoUWlb .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u1lzUoUWlb .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u1lzUoUWlb .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u1lzUoUWlb .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-u1lzUoUWlb .carousel-indicators li.active,
.cid-u1lzUoUWlb .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u1lzUoUWlb .carousel-indicators li::after,
.cid-u1lzUoUWlb .carousel-indicators li::before {
  content: none;
}
.cid-u1lzUoUWlb .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u1lzUoUWlb .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u1lzUoUWlb .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u1lzUoUWlb .carousel-indicators {
    display: none;
  }
}
.cid-u1lzUoUWlb .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u1lzUoUWlb .carousel-inner > .active {
  display: block;
}
.cid-u1lzUoUWlb .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u1lzUoUWlb .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u1lzUoUWlb .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u1lzUoUWlb .carousel-control,
  .cid-u1lzUoUWlb .carousel-indicators,
  .cid-u1lzUoUWlb .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u1lzUoUWlb .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u1lzUoUWlb .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u1lzUoUWlb .carousel-indicators .active,
.cid-u1lzUoUWlb .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u1lzUoUWlb .carousel-indicators .active {
  background: #fff;
}
.cid-u1lzUoUWlb .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u1lzUoUWlb .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u1lzUoUWlb .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u1lzUoUWlb .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u1lzUoUWlb .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u1lzUoUWlb .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u1lzUoUWlb .carousel {
  width: 100%;
}
.cid-u1lzUoUWlb .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u1lzUoUWlb .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u1lzUoUWlb .modal.fade .modal-dialog,
.cid-u1lzUoUWlb .modal.in .modal-dialog {
  transform: none;
}
.cid-u1lzUoUWlb .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u1lzUoUWlb H6 {
  text-align: center;
}
.cid-u1lzUoUWlb H3 {
  color: #232323;
}
.cid-u1lAxltkF3 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tcpkfnW6CI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tcpkfnW6CI .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tcpkfnW6CI .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tcpkfnW6CI .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tcpkfnW6CI .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tcpkfnW6CI .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-tcpkfnW6CI .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tcpkfnW6CI .carousel-control,
.cid-tcpkfnW6CI .close {
  background: #1b1b1b;
}
.cid-tcpkfnW6CI .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tcpkfnW6CI .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tcpkfnW6CI .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tcpkfnW6CI .carousel-control-next span {
  margin-left: 5px;
}
.cid-tcpkfnW6CI .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-tcpkfnW6CI .close::before {
  content: '\e91a';
}
.cid-tcpkfnW6CI .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tcpkfnW6CI .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-tcpkfnW6CI .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tcpkfnW6CI .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tcpkfnW6CI .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tcpkfnW6CI .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tcpkfnW6CI .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-tcpkfnW6CI .carousel-indicators li.active,
.cid-tcpkfnW6CI .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tcpkfnW6CI .carousel-indicators li::after,
.cid-tcpkfnW6CI .carousel-indicators li::before {
  content: none;
}
.cid-tcpkfnW6CI .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tcpkfnW6CI .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tcpkfnW6CI .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tcpkfnW6CI .carousel-indicators {
    display: none;
  }
}
.cid-tcpkfnW6CI .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tcpkfnW6CI .carousel-inner > .active {
  display: block;
}
.cid-tcpkfnW6CI .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tcpkfnW6CI .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tcpkfnW6CI .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tcpkfnW6CI .carousel-control,
  .cid-tcpkfnW6CI .carousel-indicators,
  .cid-tcpkfnW6CI .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tcpkfnW6CI .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tcpkfnW6CI .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tcpkfnW6CI .carousel-indicators .active,
.cid-tcpkfnW6CI .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tcpkfnW6CI .carousel-indicators .active {
  background: #fff;
}
.cid-tcpkfnW6CI .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tcpkfnW6CI .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tcpkfnW6CI .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tcpkfnW6CI .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tcpkfnW6CI .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tcpkfnW6CI .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tcpkfnW6CI .carousel {
  width: 100%;
}
.cid-tcpkfnW6CI .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tcpkfnW6CI .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tcpkfnW6CI .modal.fade .modal-dialog,
.cid-tcpkfnW6CI .modal.in .modal-dialog {
  transform: none;
}
.cid-tcpkfnW6CI .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tcpkfnW6CI H6 {
  text-align: center;
}
.cid-tcpkhJun8G {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sJrHPxyMiD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sJrHPxyMiD .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sJrHPxyMiD .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sJrHPxyMiD .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sJrHPxyMiD .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sJrHPxyMiD .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-sJrHPxyMiD .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sJrHPxyMiD .carousel-control,
.cid-sJrHPxyMiD .close {
  background: #1b1b1b;
}
.cid-sJrHPxyMiD .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sJrHPxyMiD .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sJrHPxyMiD .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sJrHPxyMiD .carousel-control-next span {
  margin-left: 5px;
}
.cid-sJrHPxyMiD .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-sJrHPxyMiD .close::before {
  content: '\e91a';
}
.cid-sJrHPxyMiD .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sJrHPxyMiD .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-sJrHPxyMiD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sJrHPxyMiD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sJrHPxyMiD .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sJrHPxyMiD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sJrHPxyMiD .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-sJrHPxyMiD .carousel-indicators li.active,
.cid-sJrHPxyMiD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sJrHPxyMiD .carousel-indicators li::after,
.cid-sJrHPxyMiD .carousel-indicators li::before {
  content: none;
}
.cid-sJrHPxyMiD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sJrHPxyMiD .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sJrHPxyMiD .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sJrHPxyMiD .carousel-indicators {
    display: none;
  }
}
.cid-sJrHPxyMiD .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sJrHPxyMiD .carousel-inner > .active {
  display: block;
}
.cid-sJrHPxyMiD .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sJrHPxyMiD .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sJrHPxyMiD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sJrHPxyMiD .carousel-control,
  .cid-sJrHPxyMiD .carousel-indicators,
  .cid-sJrHPxyMiD .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sJrHPxyMiD .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sJrHPxyMiD .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sJrHPxyMiD .carousel-indicators .active,
.cid-sJrHPxyMiD .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sJrHPxyMiD .carousel-indicators .active {
  background: #fff;
}
.cid-sJrHPxyMiD .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sJrHPxyMiD .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sJrHPxyMiD .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sJrHPxyMiD .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sJrHPxyMiD .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sJrHPxyMiD .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sJrHPxyMiD .carousel {
  width: 100%;
}
.cid-sJrHPxyMiD .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sJrHPxyMiD .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sJrHPxyMiD .modal.fade .modal-dialog,
.cid-sJrHPxyMiD .modal.in .modal-dialog {
  transform: none;
}
.cid-sJrHPxyMiD .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sJrHPxyMiD H6 {
  text-align: center;
}
.cid-sJrHPxyMiD H3 {
  color: #232323;
}
.cid-sJz5bx8HFn {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sJrFXaFc05 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sJrFXaFc05 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sJrFXaFc05 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sJrFXaFc05 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sJrFXaFc05 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sJrFXaFc05 .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-sJrFXaFc05 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sJrFXaFc05 .carousel-control,
.cid-sJrFXaFc05 .close {
  background: #1b1b1b;
}
.cid-sJrFXaFc05 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sJrFXaFc05 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sJrFXaFc05 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sJrFXaFc05 .carousel-control-next span {
  margin-left: 5px;
}
.cid-sJrFXaFc05 .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-sJrFXaFc05 .close::before {
  content: '\e91a';
}
.cid-sJrFXaFc05 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sJrFXaFc05 .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-sJrFXaFc05 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sJrFXaFc05 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sJrFXaFc05 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sJrFXaFc05 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sJrFXaFc05 .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-sJrFXaFc05 .carousel-indicators li.active,
.cid-sJrFXaFc05 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sJrFXaFc05 .carousel-indicators li::after,
.cid-sJrFXaFc05 .carousel-indicators li::before {
  content: none;
}
.cid-sJrFXaFc05 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sJrFXaFc05 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sJrFXaFc05 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sJrFXaFc05 .carousel-indicators {
    display: none;
  }
}
.cid-sJrFXaFc05 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sJrFXaFc05 .carousel-inner > .active {
  display: block;
}
.cid-sJrFXaFc05 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sJrFXaFc05 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sJrFXaFc05 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sJrFXaFc05 .carousel-control,
  .cid-sJrFXaFc05 .carousel-indicators,
  .cid-sJrFXaFc05 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sJrFXaFc05 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sJrFXaFc05 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sJrFXaFc05 .carousel-indicators .active,
.cid-sJrFXaFc05 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sJrFXaFc05 .carousel-indicators .active {
  background: #fff;
}
.cid-sJrFXaFc05 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sJrFXaFc05 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sJrFXaFc05 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sJrFXaFc05 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sJrFXaFc05 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sJrFXaFc05 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sJrFXaFc05 .carousel {
  width: 100%;
}
.cid-sJrFXaFc05 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sJrFXaFc05 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sJrFXaFc05 .modal.fade .modal-dialog,
.cid-sJrFXaFc05 .modal.in .modal-dialog {
  transform: none;
}
.cid-sJrFXaFc05 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sJrFXaFc05 H6 {
  text-align: center;
}
.cid-sKpHwWIH1f {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sKpHrH54dO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sKpHrH54dO .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sKpHrH54dO .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sKpHrH54dO .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sKpHrH54dO .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sKpHrH54dO .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-sKpHrH54dO .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sKpHrH54dO .carousel-control,
.cid-sKpHrH54dO .close {
  background: #1b1b1b;
}
.cid-sKpHrH54dO .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sKpHrH54dO .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sKpHrH54dO .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sKpHrH54dO .carousel-control-next span {
  margin-left: 5px;
}
.cid-sKpHrH54dO .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-sKpHrH54dO .close::before {
  content: '\e91a';
}
.cid-sKpHrH54dO .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sKpHrH54dO .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-sKpHrH54dO .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sKpHrH54dO .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sKpHrH54dO .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sKpHrH54dO .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sKpHrH54dO .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-sKpHrH54dO .carousel-indicators li.active,
.cid-sKpHrH54dO .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sKpHrH54dO .carousel-indicators li::after,
.cid-sKpHrH54dO .carousel-indicators li::before {
  content: none;
}
.cid-sKpHrH54dO .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sKpHrH54dO .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sKpHrH54dO .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sKpHrH54dO .carousel-indicators {
    display: none;
  }
}
.cid-sKpHrH54dO .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sKpHrH54dO .carousel-inner > .active {
  display: block;
}
.cid-sKpHrH54dO .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sKpHrH54dO .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sKpHrH54dO .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sKpHrH54dO .carousel-control,
  .cid-sKpHrH54dO .carousel-indicators,
  .cid-sKpHrH54dO .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sKpHrH54dO .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sKpHrH54dO .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sKpHrH54dO .carousel-indicators .active,
.cid-sKpHrH54dO .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sKpHrH54dO .carousel-indicators .active {
  background: #fff;
}
.cid-sKpHrH54dO .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sKpHrH54dO .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sKpHrH54dO .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sKpHrH54dO .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sKpHrH54dO .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sKpHrH54dO .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sKpHrH54dO .carousel {
  width: 100%;
}
.cid-sKpHrH54dO .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sKpHrH54dO .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sKpHrH54dO .modal.fade .modal-dialog,
.cid-sKpHrH54dO .modal.in .modal-dialog {
  transform: none;
}
.cid-sKpHrH54dO .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sKpHrH54dO H6 {
  text-align: center;
}
.cid-sJzDL0QWeL {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-taIag2N3jc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-taIag2N3jc .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-taIag2N3jc .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-taIag2N3jc .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-taIag2N3jc .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-taIag2N3jc .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-taIag2N3jc .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-taIag2N3jc .carousel-control,
.cid-taIag2N3jc .close {
  background: #1b1b1b;
}
.cid-taIag2N3jc .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-taIag2N3jc .carousel-control-prev span {
  margin-right: 5px;
}
.cid-taIag2N3jc .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-taIag2N3jc .carousel-control-next span {
  margin-left: 5px;
}
.cid-taIag2N3jc .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-taIag2N3jc .close::before {
  content: '\e91a';
}
.cid-taIag2N3jc .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-taIag2N3jc .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-taIag2N3jc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-taIag2N3jc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-taIag2N3jc .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-taIag2N3jc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-taIag2N3jc .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-taIag2N3jc .carousel-indicators li.active,
.cid-taIag2N3jc .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-taIag2N3jc .carousel-indicators li::after,
.cid-taIag2N3jc .carousel-indicators li::before {
  content: none;
}
.cid-taIag2N3jc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-taIag2N3jc .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-taIag2N3jc .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-taIag2N3jc .carousel-indicators {
    display: none;
  }
}
.cid-taIag2N3jc .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-taIag2N3jc .carousel-inner > .active {
  display: block;
}
.cid-taIag2N3jc .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-taIag2N3jc .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-taIag2N3jc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-taIag2N3jc .carousel-control,
  .cid-taIag2N3jc .carousel-indicators,
  .cid-taIag2N3jc .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-taIag2N3jc .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-taIag2N3jc .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-taIag2N3jc .carousel-indicators .active,
.cid-taIag2N3jc .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-taIag2N3jc .carousel-indicators .active {
  background: #fff;
}
.cid-taIag2N3jc .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-taIag2N3jc .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-taIag2N3jc .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-taIag2N3jc .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-taIag2N3jc .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-taIag2N3jc .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-taIag2N3jc .carousel {
  width: 100%;
}
.cid-taIag2N3jc .modal-backdrop.in {
  opacity: 0.8;
}
.cid-taIag2N3jc .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-taIag2N3jc .modal.fade .modal-dialog,
.cid-taIag2N3jc .modal.in .modal-dialog {
  transform: none;
}
.cid-taIag2N3jc .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-taIag2N3jc H6 {
  text-align: center;
}
.cid-taIaj7CDYq {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sKpJkzMsRD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sKpJkzMsRD .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sKpJkzMsRD .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sKpJkzMsRD .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sKpJkzMsRD .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sKpJkzMsRD .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-sKpJkzMsRD .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sKpJkzMsRD .carousel-control,
.cid-sKpJkzMsRD .close {
  background: #1b1b1b;
}
.cid-sKpJkzMsRD .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sKpJkzMsRD .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sKpJkzMsRD .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sKpJkzMsRD .carousel-control-next span {
  margin-left: 5px;
}
.cid-sKpJkzMsRD .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-sKpJkzMsRD .close::before {
  content: '\e91a';
}
.cid-sKpJkzMsRD .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sKpJkzMsRD .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-sKpJkzMsRD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sKpJkzMsRD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sKpJkzMsRD .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sKpJkzMsRD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sKpJkzMsRD .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-sKpJkzMsRD .carousel-indicators li.active,
.cid-sKpJkzMsRD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sKpJkzMsRD .carousel-indicators li::after,
.cid-sKpJkzMsRD .carousel-indicators li::before {
  content: none;
}
.cid-sKpJkzMsRD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sKpJkzMsRD .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sKpJkzMsRD .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sKpJkzMsRD .carousel-indicators {
    display: none;
  }
}
.cid-sKpJkzMsRD .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sKpJkzMsRD .carousel-inner > .active {
  display: block;
}
.cid-sKpJkzMsRD .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sKpJkzMsRD .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sKpJkzMsRD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sKpJkzMsRD .carousel-control,
  .cid-sKpJkzMsRD .carousel-indicators,
  .cid-sKpJkzMsRD .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sKpJkzMsRD .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sKpJkzMsRD .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sKpJkzMsRD .carousel-indicators .active,
.cid-sKpJkzMsRD .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sKpJkzMsRD .carousel-indicators .active {
  background: #fff;
}
.cid-sKpJkzMsRD .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sKpJkzMsRD .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sKpJkzMsRD .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sKpJkzMsRD .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sKpJkzMsRD .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sKpJkzMsRD .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sKpJkzMsRD .carousel {
  width: 100%;
}
.cid-sKpJkzMsRD .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sKpJkzMsRD .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sKpJkzMsRD .modal.fade .modal-dialog,
.cid-sKpJkzMsRD .modal.in .modal-dialog {
  transform: none;
}
.cid-sKpJkzMsRD .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sKpJkzMsRD H6 {
  text-align: center;
}
.cid-sKpJn9qW7s {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-talUcY4mSn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-talUcY4mSn .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-talUcY4mSn .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-talUcY4mSn .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-talUcY4mSn .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-talUcY4mSn .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-talUcY4mSn .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-talUcY4mSn .carousel-control,
.cid-talUcY4mSn .close {
  background: #1b1b1b;
}
.cid-talUcY4mSn .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-talUcY4mSn .carousel-control-prev span {
  margin-right: 5px;
}
.cid-talUcY4mSn .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-talUcY4mSn .carousel-control-next span {
  margin-left: 5px;
}
.cid-talUcY4mSn .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-talUcY4mSn .close::before {
  content: '\e91a';
}
.cid-talUcY4mSn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-talUcY4mSn .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-talUcY4mSn .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-talUcY4mSn .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-talUcY4mSn .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-talUcY4mSn .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-talUcY4mSn .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-talUcY4mSn .carousel-indicators li.active,
.cid-talUcY4mSn .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-talUcY4mSn .carousel-indicators li::after,
.cid-talUcY4mSn .carousel-indicators li::before {
  content: none;
}
.cid-talUcY4mSn .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-talUcY4mSn .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-talUcY4mSn .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-talUcY4mSn .carousel-indicators {
    display: none;
  }
}
.cid-talUcY4mSn .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-talUcY4mSn .carousel-inner > .active {
  display: block;
}
.cid-talUcY4mSn .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-talUcY4mSn .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-talUcY4mSn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-talUcY4mSn .carousel-control,
  .cid-talUcY4mSn .carousel-indicators,
  .cid-talUcY4mSn .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-talUcY4mSn .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-talUcY4mSn .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-talUcY4mSn .carousel-indicators .active,
.cid-talUcY4mSn .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-talUcY4mSn .carousel-indicators .active {
  background: #fff;
}
.cid-talUcY4mSn .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-talUcY4mSn .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-talUcY4mSn .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-talUcY4mSn .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-talUcY4mSn .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-talUcY4mSn .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-talUcY4mSn .carousel {
  width: 100%;
}
.cid-talUcY4mSn .modal-backdrop.in {
  opacity: 0.8;
}
.cid-talUcY4mSn .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-talUcY4mSn .modal.fade .modal-dialog,
.cid-talUcY4mSn .modal.in .modal-dialog {
  transform: none;
}
.cid-talUcY4mSn .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-talUcY4mSn H6 {
  text-align: center;
}
.cid-talUehszSH {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sKpO1BAeH5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sKpO1BAeH5 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sKpO1BAeH5 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sKpO1BAeH5 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sKpO1BAeH5 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sKpO1BAeH5 .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-sKpO1BAeH5 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sKpO1BAeH5 .carousel-control,
.cid-sKpO1BAeH5 .close {
  background: #1b1b1b;
}
.cid-sKpO1BAeH5 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sKpO1BAeH5 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sKpO1BAeH5 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sKpO1BAeH5 .carousel-control-next span {
  margin-left: 5px;
}
.cid-sKpO1BAeH5 .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-sKpO1BAeH5 .close::before {
  content: '\e91a';
}
.cid-sKpO1BAeH5 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sKpO1BAeH5 .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-sKpO1BAeH5 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sKpO1BAeH5 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sKpO1BAeH5 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sKpO1BAeH5 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sKpO1BAeH5 .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-sKpO1BAeH5 .carousel-indicators li.active,
.cid-sKpO1BAeH5 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sKpO1BAeH5 .carousel-indicators li::after,
.cid-sKpO1BAeH5 .carousel-indicators li::before {
  content: none;
}
.cid-sKpO1BAeH5 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sKpO1BAeH5 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sKpO1BAeH5 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sKpO1BAeH5 .carousel-indicators {
    display: none;
  }
}
.cid-sKpO1BAeH5 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sKpO1BAeH5 .carousel-inner > .active {
  display: block;
}
.cid-sKpO1BAeH5 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sKpO1BAeH5 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sKpO1BAeH5 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sKpO1BAeH5 .carousel-control,
  .cid-sKpO1BAeH5 .carousel-indicators,
  .cid-sKpO1BAeH5 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sKpO1BAeH5 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sKpO1BAeH5 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sKpO1BAeH5 .carousel-indicators .active,
.cid-sKpO1BAeH5 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sKpO1BAeH5 .carousel-indicators .active {
  background: #fff;
}
.cid-sKpO1BAeH5 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sKpO1BAeH5 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sKpO1BAeH5 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sKpO1BAeH5 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sKpO1BAeH5 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sKpO1BAeH5 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sKpO1BAeH5 .carousel {
  width: 100%;
}
.cid-sKpO1BAeH5 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sKpO1BAeH5 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sKpO1BAeH5 .modal.fade .modal-dialog,
.cid-sKpO1BAeH5 .modal.in .modal-dialog {
  transform: none;
}
.cid-sKpO1BAeH5 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sKpO1BAeH5 H6 {
  text-align: center;
}
.cid-sKpO5jY9aJ {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0CvGEKAMy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t0CvGEKAMy .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-t0CvGEKAMy .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-t0CvGEKAMy .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-t0CvGEKAMy .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t0CvGEKAMy .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-t0CvGEKAMy .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t0CvGEKAMy .carousel-control,
.cid-t0CvGEKAMy .close {
  background: #1b1b1b;
}
.cid-t0CvGEKAMy .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t0CvGEKAMy .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t0CvGEKAMy .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t0CvGEKAMy .carousel-control-next span {
  margin-left: 5px;
}
.cid-t0CvGEKAMy .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-t0CvGEKAMy .close::before {
  content: '\e91a';
}
.cid-t0CvGEKAMy .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t0CvGEKAMy .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-t0CvGEKAMy .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t0CvGEKAMy .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t0CvGEKAMy .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t0CvGEKAMy .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t0CvGEKAMy .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-t0CvGEKAMy .carousel-indicators li.active,
.cid-t0CvGEKAMy .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t0CvGEKAMy .carousel-indicators li::after,
.cid-t0CvGEKAMy .carousel-indicators li::before {
  content: none;
}
.cid-t0CvGEKAMy .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t0CvGEKAMy .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t0CvGEKAMy .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t0CvGEKAMy .carousel-indicators {
    display: none;
  }
}
.cid-t0CvGEKAMy .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t0CvGEKAMy .carousel-inner > .active {
  display: block;
}
.cid-t0CvGEKAMy .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t0CvGEKAMy .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t0CvGEKAMy .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t0CvGEKAMy .carousel-control,
  .cid-t0CvGEKAMy .carousel-indicators,
  .cid-t0CvGEKAMy .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t0CvGEKAMy .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t0CvGEKAMy .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t0CvGEKAMy .carousel-indicators .active,
.cid-t0CvGEKAMy .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t0CvGEKAMy .carousel-indicators .active {
  background: #fff;
}
.cid-t0CvGEKAMy .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t0CvGEKAMy .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t0CvGEKAMy .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t0CvGEKAMy .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t0CvGEKAMy .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t0CvGEKAMy .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t0CvGEKAMy .carousel {
  width: 100%;
}
.cid-t0CvGEKAMy .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t0CvGEKAMy .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t0CvGEKAMy .modal.fade .modal-dialog,
.cid-t0CvGEKAMy .modal.in .modal-dialog {
  transform: none;
}
.cid-t0CvGEKAMy .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t0CvGEKAMy H6 {
  text-align: center;
}
.cid-t0Cw2kGdPX {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tcpMy5D1h1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tcpMy5D1h1 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tcpMy5D1h1 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tcpMy5D1h1 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tcpMy5D1h1 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tcpMy5D1h1 .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-tcpMy5D1h1 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tcpMy5D1h1 .carousel-control,
.cid-tcpMy5D1h1 .close {
  background: #1b1b1b;
}
.cid-tcpMy5D1h1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tcpMy5D1h1 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tcpMy5D1h1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tcpMy5D1h1 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tcpMy5D1h1 .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-tcpMy5D1h1 .close::before {
  content: '\e91a';
}
.cid-tcpMy5D1h1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tcpMy5D1h1 .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-tcpMy5D1h1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tcpMy5D1h1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tcpMy5D1h1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tcpMy5D1h1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tcpMy5D1h1 .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-tcpMy5D1h1 .carousel-indicators li.active,
.cid-tcpMy5D1h1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tcpMy5D1h1 .carousel-indicators li::after,
.cid-tcpMy5D1h1 .carousel-indicators li::before {
  content: none;
}
.cid-tcpMy5D1h1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tcpMy5D1h1 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tcpMy5D1h1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tcpMy5D1h1 .carousel-indicators {
    display: none;
  }
}
.cid-tcpMy5D1h1 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tcpMy5D1h1 .carousel-inner > .active {
  display: block;
}
.cid-tcpMy5D1h1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tcpMy5D1h1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tcpMy5D1h1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tcpMy5D1h1 .carousel-control,
  .cid-tcpMy5D1h1 .carousel-indicators,
  .cid-tcpMy5D1h1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tcpMy5D1h1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tcpMy5D1h1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tcpMy5D1h1 .carousel-indicators .active,
.cid-tcpMy5D1h1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tcpMy5D1h1 .carousel-indicators .active {
  background: #fff;
}
.cid-tcpMy5D1h1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tcpMy5D1h1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tcpMy5D1h1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tcpMy5D1h1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tcpMy5D1h1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tcpMy5D1h1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tcpMy5D1h1 .carousel {
  width: 100%;
}
.cid-tcpMy5D1h1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tcpMy5D1h1 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tcpMy5D1h1 .modal.fade .modal-dialog,
.cid-tcpMy5D1h1 .modal.in .modal-dialog {
  transform: none;
}
.cid-tcpMy5D1h1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tcpMy5D1h1 H6 {
  text-align: center;
}
.cid-tcpMDaaSJM {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-taIWH2sySq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-taIWH2sySq .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-taIWH2sySq .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-taIWH2sySq .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-taIWH2sySq .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-taIWH2sySq .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-taIWH2sySq .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-taIWH2sySq .carousel-control,
.cid-taIWH2sySq .close {
  background: #1b1b1b;
}
.cid-taIWH2sySq .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-taIWH2sySq .carousel-control-prev span {
  margin-right: 5px;
}
.cid-taIWH2sySq .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-taIWH2sySq .carousel-control-next span {
  margin-left: 5px;
}
.cid-taIWH2sySq .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-taIWH2sySq .close::before {
  content: '\e91a';
}
.cid-taIWH2sySq .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-taIWH2sySq .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-taIWH2sySq .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-taIWH2sySq .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-taIWH2sySq .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-taIWH2sySq .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-taIWH2sySq .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-taIWH2sySq .carousel-indicators li.active,
.cid-taIWH2sySq .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-taIWH2sySq .carousel-indicators li::after,
.cid-taIWH2sySq .carousel-indicators li::before {
  content: none;
}
.cid-taIWH2sySq .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-taIWH2sySq .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-taIWH2sySq .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-taIWH2sySq .carousel-indicators {
    display: none;
  }
}
.cid-taIWH2sySq .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-taIWH2sySq .carousel-inner > .active {
  display: block;
}
.cid-taIWH2sySq .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-taIWH2sySq .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-taIWH2sySq .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-taIWH2sySq .carousel-control,
  .cid-taIWH2sySq .carousel-indicators,
  .cid-taIWH2sySq .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-taIWH2sySq .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-taIWH2sySq .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-taIWH2sySq .carousel-indicators .active,
.cid-taIWH2sySq .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-taIWH2sySq .carousel-indicators .active {
  background: #fff;
}
.cid-taIWH2sySq .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-taIWH2sySq .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-taIWH2sySq .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-taIWH2sySq .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-taIWH2sySq .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-taIWH2sySq .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-taIWH2sySq .carousel {
  width: 100%;
}
.cid-taIWH2sySq .modal-backdrop.in {
  opacity: 0.8;
}
.cid-taIWH2sySq .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-taIWH2sySq .modal.fade .modal-dialog,
.cid-taIWH2sySq .modal.in .modal-dialog {
  transform: none;
}
.cid-taIWH2sySq .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-taIWH2sySq H6 {
  text-align: center;
}
.cid-taIWNmhkvU {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-taI7rO9rZN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-taI7rO9rZN .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-taI7rO9rZN .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-taI7rO9rZN .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-taI7rO9rZN .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-taI7rO9rZN .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-taI7rO9rZN .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-taI7rO9rZN .carousel-control,
.cid-taI7rO9rZN .close {
  background: #1b1b1b;
}
.cid-taI7rO9rZN .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-taI7rO9rZN .carousel-control-prev span {
  margin-right: 5px;
}
.cid-taI7rO9rZN .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-taI7rO9rZN .carousel-control-next span {
  margin-left: 5px;
}
.cid-taI7rO9rZN .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-taI7rO9rZN .close::before {
  content: '\e91a';
}
.cid-taI7rO9rZN .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-taI7rO9rZN .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-taI7rO9rZN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-taI7rO9rZN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-taI7rO9rZN .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-taI7rO9rZN .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-taI7rO9rZN .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-taI7rO9rZN .carousel-indicators li.active,
.cid-taI7rO9rZN .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-taI7rO9rZN .carousel-indicators li::after,
.cid-taI7rO9rZN .carousel-indicators li::before {
  content: none;
}
.cid-taI7rO9rZN .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-taI7rO9rZN .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-taI7rO9rZN .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-taI7rO9rZN .carousel-indicators {
    display: none;
  }
}
.cid-taI7rO9rZN .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-taI7rO9rZN .carousel-inner > .active {
  display: block;
}
.cid-taI7rO9rZN .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-taI7rO9rZN .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-taI7rO9rZN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-taI7rO9rZN .carousel-control,
  .cid-taI7rO9rZN .carousel-indicators,
  .cid-taI7rO9rZN .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-taI7rO9rZN .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-taI7rO9rZN .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-taI7rO9rZN .carousel-indicators .active,
.cid-taI7rO9rZN .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-taI7rO9rZN .carousel-indicators .active {
  background: #fff;
}
.cid-taI7rO9rZN .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-taI7rO9rZN .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-taI7rO9rZN .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-taI7rO9rZN .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-taI7rO9rZN .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-taI7rO9rZN .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-taI7rO9rZN .carousel {
  width: 100%;
}
.cid-taI7rO9rZN .modal-backdrop.in {
  opacity: 0.8;
}
.cid-taI7rO9rZN .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-taI7rO9rZN .modal.fade .modal-dialog,
.cid-taI7rO9rZN .modal.in .modal-dialog {
  transform: none;
}
.cid-taI7rO9rZN .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-taI7rO9rZN H6 {
  text-align: center;
}
.cid-taI7tNaDbA {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sJrCe9eLIu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sJrCe9eLIu .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sJrCe9eLIu .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sJrCe9eLIu .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sJrCe9eLIu .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sJrCe9eLIu .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-sJrCe9eLIu .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sJrCe9eLIu .carousel-control,
.cid-sJrCe9eLIu .close {
  background: #1b1b1b;
}
.cid-sJrCe9eLIu .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sJrCe9eLIu .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sJrCe9eLIu .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sJrCe9eLIu .carousel-control-next span {
  margin-left: 5px;
}
.cid-sJrCe9eLIu .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-sJrCe9eLIu .close::before {
  content: '\e91a';
}
.cid-sJrCe9eLIu .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sJrCe9eLIu .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-sJrCe9eLIu .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sJrCe9eLIu .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sJrCe9eLIu .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sJrCe9eLIu .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sJrCe9eLIu .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-sJrCe9eLIu .carousel-indicators li.active,
.cid-sJrCe9eLIu .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sJrCe9eLIu .carousel-indicators li::after,
.cid-sJrCe9eLIu .carousel-indicators li::before {
  content: none;
}
.cid-sJrCe9eLIu .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sJrCe9eLIu .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sJrCe9eLIu .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sJrCe9eLIu .carousel-indicators {
    display: none;
  }
}
.cid-sJrCe9eLIu .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sJrCe9eLIu .carousel-inner > .active {
  display: block;
}
.cid-sJrCe9eLIu .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sJrCe9eLIu .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sJrCe9eLIu .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sJrCe9eLIu .carousel-control,
  .cid-sJrCe9eLIu .carousel-indicators,
  .cid-sJrCe9eLIu .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sJrCe9eLIu .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sJrCe9eLIu .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sJrCe9eLIu .carousel-indicators .active,
.cid-sJrCe9eLIu .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sJrCe9eLIu .carousel-indicators .active {
  background: #fff;
}
.cid-sJrCe9eLIu .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sJrCe9eLIu .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sJrCe9eLIu .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sJrCe9eLIu .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sJrCe9eLIu .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sJrCe9eLIu .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sJrCe9eLIu .carousel {
  width: 100%;
}
.cid-sJrCe9eLIu .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sJrCe9eLIu .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sJrCe9eLIu .modal.fade .modal-dialog,
.cid-sJrCe9eLIu .modal.in .modal-dialog {
  transform: none;
}
.cid-sJrCe9eLIu .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sJrCe9eLIu H6 {
  text-align: center;
}
.cid-sJz7YVPgPz {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-taIUeiETsL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-taIUeiETsL .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-taIUeiETsL .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-taIUeiETsL .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-taIUeiETsL .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-taIUeiETsL .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-taIUeiETsL .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-taIUeiETsL .carousel-control,
.cid-taIUeiETsL .close {
  background: #1b1b1b;
}
.cid-taIUeiETsL .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-taIUeiETsL .carousel-control-prev span {
  margin-right: 5px;
}
.cid-taIUeiETsL .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-taIUeiETsL .carousel-control-next span {
  margin-left: 5px;
}
.cid-taIUeiETsL .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-taIUeiETsL .close::before {
  content: '\e91a';
}
.cid-taIUeiETsL .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-taIUeiETsL .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-taIUeiETsL .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-taIUeiETsL .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-taIUeiETsL .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-taIUeiETsL .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-taIUeiETsL .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-taIUeiETsL .carousel-indicators li.active,
.cid-taIUeiETsL .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-taIUeiETsL .carousel-indicators li::after,
.cid-taIUeiETsL .carousel-indicators li::before {
  content: none;
}
.cid-taIUeiETsL .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-taIUeiETsL .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-taIUeiETsL .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-taIUeiETsL .carousel-indicators {
    display: none;
  }
}
.cid-taIUeiETsL .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-taIUeiETsL .carousel-inner > .active {
  display: block;
}
.cid-taIUeiETsL .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-taIUeiETsL .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-taIUeiETsL .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-taIUeiETsL .carousel-control,
  .cid-taIUeiETsL .carousel-indicators,
  .cid-taIUeiETsL .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-taIUeiETsL .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-taIUeiETsL .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-taIUeiETsL .carousel-indicators .active,
.cid-taIUeiETsL .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-taIUeiETsL .carousel-indicators .active {
  background: #fff;
}
.cid-taIUeiETsL .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-taIUeiETsL .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-taIUeiETsL .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-taIUeiETsL .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-taIUeiETsL .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-taIUeiETsL .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-taIUeiETsL .carousel {
  width: 100%;
}
.cid-taIUeiETsL .modal-backdrop.in {
  opacity: 0.8;
}
.cid-taIUeiETsL .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-taIUeiETsL .modal.fade .modal-dialog,
.cid-taIUeiETsL .modal.in .modal-dialog {
  transform: none;
}
.cid-taIUeiETsL .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-taIUeiETsL H6 {
  text-align: center;
}
.cid-taIUflra58 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-takX7VI3zr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-takX7VI3zr .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-takX7VI3zr .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-takX7VI3zr .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-takX7VI3zr .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-takX7VI3zr .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-takX7VI3zr .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-takX7VI3zr .carousel-control,
.cid-takX7VI3zr .close {
  background: #1b1b1b;
}
.cid-takX7VI3zr .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-takX7VI3zr .carousel-control-prev span {
  margin-right: 5px;
}
.cid-takX7VI3zr .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-takX7VI3zr .carousel-control-next span {
  margin-left: 5px;
}
.cid-takX7VI3zr .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-takX7VI3zr .close::before {
  content: '\e91a';
}
.cid-takX7VI3zr .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-takX7VI3zr .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-takX7VI3zr .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-takX7VI3zr .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-takX7VI3zr .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-takX7VI3zr .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-takX7VI3zr .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-takX7VI3zr .carousel-indicators li.active,
.cid-takX7VI3zr .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-takX7VI3zr .carousel-indicators li::after,
.cid-takX7VI3zr .carousel-indicators li::before {
  content: none;
}
.cid-takX7VI3zr .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-takX7VI3zr .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-takX7VI3zr .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-takX7VI3zr .carousel-indicators {
    display: none;
  }
}
.cid-takX7VI3zr .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-takX7VI3zr .carousel-inner > .active {
  display: block;
}
.cid-takX7VI3zr .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-takX7VI3zr .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-takX7VI3zr .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-takX7VI3zr .carousel-control,
  .cid-takX7VI3zr .carousel-indicators,
  .cid-takX7VI3zr .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-takX7VI3zr .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-takX7VI3zr .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-takX7VI3zr .carousel-indicators .active,
.cid-takX7VI3zr .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-takX7VI3zr .carousel-indicators .active {
  background: #fff;
}
.cid-takX7VI3zr .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-takX7VI3zr .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-takX7VI3zr .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-takX7VI3zr .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-takX7VI3zr .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-takX7VI3zr .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-takX7VI3zr .carousel {
  width: 100%;
}
.cid-takX7VI3zr .modal-backdrop.in {
  opacity: 0.8;
}
.cid-takX7VI3zr .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-takX7VI3zr .modal.fade .modal-dialog,
.cid-takX7VI3zr .modal.in .modal-dialog {
  transform: none;
}
.cid-takX7VI3zr .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-takX7VI3zr H6 {
  text-align: center;
}
.cid-takX9RFglr {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-takL4nxKFa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-takL4nxKFa .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-takL4nxKFa .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-takL4nxKFa .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-takL4nxKFa .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-takL4nxKFa .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-takL4nxKFa .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-takL4nxKFa .carousel-control,
.cid-takL4nxKFa .close {
  background: #1b1b1b;
}
.cid-takL4nxKFa .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-takL4nxKFa .carousel-control-prev span {
  margin-right: 5px;
}
.cid-takL4nxKFa .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-takL4nxKFa .carousel-control-next span {
  margin-left: 5px;
}
.cid-takL4nxKFa .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-takL4nxKFa .close::before {
  content: '\e91a';
}
.cid-takL4nxKFa .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-takL4nxKFa .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-takL4nxKFa .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-takL4nxKFa .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-takL4nxKFa .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-takL4nxKFa .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-takL4nxKFa .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-takL4nxKFa .carousel-indicators li.active,
.cid-takL4nxKFa .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-takL4nxKFa .carousel-indicators li::after,
.cid-takL4nxKFa .carousel-indicators li::before {
  content: none;
}
.cid-takL4nxKFa .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-takL4nxKFa .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-takL4nxKFa .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-takL4nxKFa .carousel-indicators {
    display: none;
  }
}
.cid-takL4nxKFa .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-takL4nxKFa .carousel-inner > .active {
  display: block;
}
.cid-takL4nxKFa .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-takL4nxKFa .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-takL4nxKFa .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-takL4nxKFa .carousel-control,
  .cid-takL4nxKFa .carousel-indicators,
  .cid-takL4nxKFa .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-takL4nxKFa .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-takL4nxKFa .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-takL4nxKFa .carousel-indicators .active,
.cid-takL4nxKFa .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-takL4nxKFa .carousel-indicators .active {
  background: #fff;
}
.cid-takL4nxKFa .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-takL4nxKFa .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-takL4nxKFa .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-takL4nxKFa .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-takL4nxKFa .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-takL4nxKFa .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-takL4nxKFa .carousel {
  width: 100%;
}
.cid-takL4nxKFa .modal-backdrop.in {
  opacity: 0.8;
}
.cid-takL4nxKFa .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-takL4nxKFa .modal.fade .modal-dialog,
.cid-takL4nxKFa .modal.in .modal-dialog {
  transform: none;
}
.cid-takL4nxKFa .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-takL4nxKFa H6 {
  text-align: center;
}
.cid-takL74zYXL {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-takOC16cqT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-takOC16cqT .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-takOC16cqT .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-takOC16cqT .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-takOC16cqT .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-takOC16cqT .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-takOC16cqT .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-takOC16cqT .carousel-control,
.cid-takOC16cqT .close {
  background: #1b1b1b;
}
.cid-takOC16cqT .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-takOC16cqT .carousel-control-prev span {
  margin-right: 5px;
}
.cid-takOC16cqT .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-takOC16cqT .carousel-control-next span {
  margin-left: 5px;
}
.cid-takOC16cqT .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-takOC16cqT .close::before {
  content: '\e91a';
}
.cid-takOC16cqT .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-takOC16cqT .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-takOC16cqT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-takOC16cqT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-takOC16cqT .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-takOC16cqT .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-takOC16cqT .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-takOC16cqT .carousel-indicators li.active,
.cid-takOC16cqT .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-takOC16cqT .carousel-indicators li::after,
.cid-takOC16cqT .carousel-indicators li::before {
  content: none;
}
.cid-takOC16cqT .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-takOC16cqT .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-takOC16cqT .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-takOC16cqT .carousel-indicators {
    display: none;
  }
}
.cid-takOC16cqT .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-takOC16cqT .carousel-inner > .active {
  display: block;
}
.cid-takOC16cqT .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-takOC16cqT .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-takOC16cqT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-takOC16cqT .carousel-control,
  .cid-takOC16cqT .carousel-indicators,
  .cid-takOC16cqT .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-takOC16cqT .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-takOC16cqT .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-takOC16cqT .carousel-indicators .active,
.cid-takOC16cqT .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-takOC16cqT .carousel-indicators .active {
  background: #fff;
}
.cid-takOC16cqT .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-takOC16cqT .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-takOC16cqT .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-takOC16cqT .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-takOC16cqT .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-takOC16cqT .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-takOC16cqT .carousel {
  width: 100%;
}
.cid-takOC16cqT .modal-backdrop.in {
  opacity: 0.8;
}
.cid-takOC16cqT .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-takOC16cqT .modal.fade .modal-dialog,
.cid-takOC16cqT .modal.in .modal-dialog {
  transform: none;
}
.cid-takOC16cqT .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-takOC16cqT H6 {
  text-align: center;
}
.cid-takODuz8bS {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tc1Tuwt1EM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tc1Tuwt1EM .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tc1Tuwt1EM .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tc1Tuwt1EM .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tc1Tuwt1EM .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tc1Tuwt1EM .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-tc1Tuwt1EM .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tc1Tuwt1EM .carousel-control,
.cid-tc1Tuwt1EM .close {
  background: #1b1b1b;
}
.cid-tc1Tuwt1EM .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tc1Tuwt1EM .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tc1Tuwt1EM .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tc1Tuwt1EM .carousel-control-next span {
  margin-left: 5px;
}
.cid-tc1Tuwt1EM .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-tc1Tuwt1EM .close::before {
  content: '\e91a';
}
.cid-tc1Tuwt1EM .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tc1Tuwt1EM .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-tc1Tuwt1EM .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tc1Tuwt1EM .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tc1Tuwt1EM .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tc1Tuwt1EM .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tc1Tuwt1EM .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-tc1Tuwt1EM .carousel-indicators li.active,
.cid-tc1Tuwt1EM .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tc1Tuwt1EM .carousel-indicators li::after,
.cid-tc1Tuwt1EM .carousel-indicators li::before {
  content: none;
}
.cid-tc1Tuwt1EM .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tc1Tuwt1EM .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tc1Tuwt1EM .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tc1Tuwt1EM .carousel-indicators {
    display: none;
  }
}
.cid-tc1Tuwt1EM .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tc1Tuwt1EM .carousel-inner > .active {
  display: block;
}
.cid-tc1Tuwt1EM .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tc1Tuwt1EM .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tc1Tuwt1EM .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tc1Tuwt1EM .carousel-control,
  .cid-tc1Tuwt1EM .carousel-indicators,
  .cid-tc1Tuwt1EM .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tc1Tuwt1EM .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tc1Tuwt1EM .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tc1Tuwt1EM .carousel-indicators .active,
.cid-tc1Tuwt1EM .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tc1Tuwt1EM .carousel-indicators .active {
  background: #fff;
}
.cid-tc1Tuwt1EM .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tc1Tuwt1EM .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tc1Tuwt1EM .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tc1Tuwt1EM .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tc1Tuwt1EM .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tc1Tuwt1EM .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tc1Tuwt1EM .carousel {
  width: 100%;
}
.cid-tc1Tuwt1EM .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tc1Tuwt1EM .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tc1Tuwt1EM .modal.fade .modal-dialog,
.cid-tc1Tuwt1EM .modal.in .modal-dialog {
  transform: none;
}
.cid-tc1Tuwt1EM .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tc1Tuwt1EM H6 {
  text-align: center;
}
.cid-tc1TwaMhgg {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sKvFrkBL4f {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sKvFrkBL4f .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sKvFrkBL4f .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sKvFrkBL4f .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sKvFrkBL4f .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sKvFrkBL4f .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-sKvFrkBL4f .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sKvFrkBL4f .carousel-control,
.cid-sKvFrkBL4f .close {
  background: #1b1b1b;
}
.cid-sKvFrkBL4f .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sKvFrkBL4f .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sKvFrkBL4f .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sKvFrkBL4f .carousel-control-next span {
  margin-left: 5px;
}
.cid-sKvFrkBL4f .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-sKvFrkBL4f .close::before {
  content: '\e91a';
}
.cid-sKvFrkBL4f .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sKvFrkBL4f .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-sKvFrkBL4f .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sKvFrkBL4f .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sKvFrkBL4f .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sKvFrkBL4f .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sKvFrkBL4f .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-sKvFrkBL4f .carousel-indicators li.active,
.cid-sKvFrkBL4f .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sKvFrkBL4f .carousel-indicators li::after,
.cid-sKvFrkBL4f .carousel-indicators li::before {
  content: none;
}
.cid-sKvFrkBL4f .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sKvFrkBL4f .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sKvFrkBL4f .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sKvFrkBL4f .carousel-indicators {
    display: none;
  }
}
.cid-sKvFrkBL4f .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sKvFrkBL4f .carousel-inner > .active {
  display: block;
}
.cid-sKvFrkBL4f .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sKvFrkBL4f .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sKvFrkBL4f .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sKvFrkBL4f .carousel-control,
  .cid-sKvFrkBL4f .carousel-indicators,
  .cid-sKvFrkBL4f .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sKvFrkBL4f .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sKvFrkBL4f .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sKvFrkBL4f .carousel-indicators .active,
.cid-sKvFrkBL4f .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sKvFrkBL4f .carousel-indicators .active {
  background: #fff;
}
.cid-sKvFrkBL4f .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sKvFrkBL4f .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sKvFrkBL4f .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sKvFrkBL4f .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sKvFrkBL4f .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sKvFrkBL4f .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sKvFrkBL4f .carousel {
  width: 100%;
}
.cid-sKvFrkBL4f .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sKvFrkBL4f .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sKvFrkBL4f .modal.fade .modal-dialog,
.cid-sKvFrkBL4f .modal.in .modal-dialog {
  transform: none;
}
.cid-sKvFrkBL4f .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sKvFrkBL4f H6 {
  text-align: center;
}
.cid-sKvFuAq1TE {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-talJBBJXQj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-talJBBJXQj .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-talJBBJXQj .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-talJBBJXQj .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-talJBBJXQj .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-talJBBJXQj .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-talJBBJXQj .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-talJBBJXQj .carousel-control,
.cid-talJBBJXQj .close {
  background: #1b1b1b;
}
.cid-talJBBJXQj .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-talJBBJXQj .carousel-control-prev span {
  margin-right: 5px;
}
.cid-talJBBJXQj .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-talJBBJXQj .carousel-control-next span {
  margin-left: 5px;
}
.cid-talJBBJXQj .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-talJBBJXQj .close::before {
  content: '\e91a';
}
.cid-talJBBJXQj .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-talJBBJXQj .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-talJBBJXQj .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-talJBBJXQj .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-talJBBJXQj .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-talJBBJXQj .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-talJBBJXQj .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-talJBBJXQj .carousel-indicators li.active,
.cid-talJBBJXQj .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-talJBBJXQj .carousel-indicators li::after,
.cid-talJBBJXQj .carousel-indicators li::before {
  content: none;
}
.cid-talJBBJXQj .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-talJBBJXQj .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-talJBBJXQj .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-talJBBJXQj .carousel-indicators {
    display: none;
  }
}
.cid-talJBBJXQj .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-talJBBJXQj .carousel-inner > .active {
  display: block;
}
.cid-talJBBJXQj .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-talJBBJXQj .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-talJBBJXQj .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-talJBBJXQj .carousel-control,
  .cid-talJBBJXQj .carousel-indicators,
  .cid-talJBBJXQj .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-talJBBJXQj .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-talJBBJXQj .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-talJBBJXQj .carousel-indicators .active,
.cid-talJBBJXQj .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-talJBBJXQj .carousel-indicators .active {
  background: #fff;
}
.cid-talJBBJXQj .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-talJBBJXQj .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-talJBBJXQj .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-talJBBJXQj .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-talJBBJXQj .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-talJBBJXQj .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-talJBBJXQj .carousel {
  width: 100%;
}
.cid-talJBBJXQj .modal-backdrop.in {
  opacity: 0.8;
}
.cid-talJBBJXQj .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-talJBBJXQj .modal.fade .modal-dialog,
.cid-talJBBJXQj .modal.in .modal-dialog {
  transform: none;
}
.cid-talJBBJXQj .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-talJBBJXQj H6 {
  text-align: center;
}
.cid-talJFcpHOm {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-talPSfD9UZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-talPSfD9UZ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-talPSfD9UZ .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-talPSfD9UZ .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-talPSfD9UZ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-talPSfD9UZ .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-talPSfD9UZ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-talPSfD9UZ .carousel-control,
.cid-talPSfD9UZ .close {
  background: #1b1b1b;
}
.cid-talPSfD9UZ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-talPSfD9UZ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-talPSfD9UZ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-talPSfD9UZ .carousel-control-next span {
  margin-left: 5px;
}
.cid-talPSfD9UZ .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-talPSfD9UZ .close::before {
  content: '\e91a';
}
.cid-talPSfD9UZ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-talPSfD9UZ .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-talPSfD9UZ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-talPSfD9UZ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-talPSfD9UZ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-talPSfD9UZ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-talPSfD9UZ .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-talPSfD9UZ .carousel-indicators li.active,
.cid-talPSfD9UZ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-talPSfD9UZ .carousel-indicators li::after,
.cid-talPSfD9UZ .carousel-indicators li::before {
  content: none;
}
.cid-talPSfD9UZ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-talPSfD9UZ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-talPSfD9UZ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-talPSfD9UZ .carousel-indicators {
    display: none;
  }
}
.cid-talPSfD9UZ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-talPSfD9UZ .carousel-inner > .active {
  display: block;
}
.cid-talPSfD9UZ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-talPSfD9UZ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-talPSfD9UZ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-talPSfD9UZ .carousel-control,
  .cid-talPSfD9UZ .carousel-indicators,
  .cid-talPSfD9UZ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-talPSfD9UZ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-talPSfD9UZ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-talPSfD9UZ .carousel-indicators .active,
.cid-talPSfD9UZ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-talPSfD9UZ .carousel-indicators .active {
  background: #fff;
}
.cid-talPSfD9UZ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-talPSfD9UZ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-talPSfD9UZ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-talPSfD9UZ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-talPSfD9UZ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-talPSfD9UZ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-talPSfD9UZ .carousel {
  width: 100%;
}
.cid-talPSfD9UZ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-talPSfD9UZ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-talPSfD9UZ .modal.fade .modal-dialog,
.cid-talPSfD9UZ .modal.in .modal-dialog {
  transform: none;
}
.cid-talPSfD9UZ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-talPSfD9UZ H6 {
  text-align: center;
}
.cid-talPUoiQTI {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sYRxLCnZLH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sYRxLCnZLH .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sYRxLCnZLH .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sYRxLCnZLH .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sYRxLCnZLH .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sYRxLCnZLH .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-sYRxLCnZLH .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sYRxLCnZLH .carousel-control,
.cid-sYRxLCnZLH .close {
  background: #1b1b1b;
}
.cid-sYRxLCnZLH .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sYRxLCnZLH .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sYRxLCnZLH .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sYRxLCnZLH .carousel-control-next span {
  margin-left: 5px;
}
.cid-sYRxLCnZLH .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-sYRxLCnZLH .close::before {
  content: '\e91a';
}
.cid-sYRxLCnZLH .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sYRxLCnZLH .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-sYRxLCnZLH .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sYRxLCnZLH .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sYRxLCnZLH .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sYRxLCnZLH .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sYRxLCnZLH .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-sYRxLCnZLH .carousel-indicators li.active,
.cid-sYRxLCnZLH .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sYRxLCnZLH .carousel-indicators li::after,
.cid-sYRxLCnZLH .carousel-indicators li::before {
  content: none;
}
.cid-sYRxLCnZLH .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sYRxLCnZLH .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sYRxLCnZLH .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sYRxLCnZLH .carousel-indicators {
    display: none;
  }
}
.cid-sYRxLCnZLH .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sYRxLCnZLH .carousel-inner > .active {
  display: block;
}
.cid-sYRxLCnZLH .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sYRxLCnZLH .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sYRxLCnZLH .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sYRxLCnZLH .carousel-control,
  .cid-sYRxLCnZLH .carousel-indicators,
  .cid-sYRxLCnZLH .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sYRxLCnZLH .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sYRxLCnZLH .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sYRxLCnZLH .carousel-indicators .active,
.cid-sYRxLCnZLH .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sYRxLCnZLH .carousel-indicators .active {
  background: #fff;
}
.cid-sYRxLCnZLH .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sYRxLCnZLH .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sYRxLCnZLH .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sYRxLCnZLH .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sYRxLCnZLH .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sYRxLCnZLH .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sYRxLCnZLH .carousel {
  width: 100%;
}
.cid-sYRxLCnZLH .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sYRxLCnZLH .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sYRxLCnZLH .modal.fade .modal-dialog,
.cid-sYRxLCnZLH .modal.in .modal-dialog {
  transform: none;
}
.cid-sYRxLCnZLH .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sYRxLCnZLH H6 {
  text-align: center;
}
.cid-sYRxOxJhRb {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-takVM0gFM6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-takVM0gFM6 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-takVM0gFM6 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-takVM0gFM6 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-takVM0gFM6 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-takVM0gFM6 .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-takVM0gFM6 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-takVM0gFM6 .carousel-control,
.cid-takVM0gFM6 .close {
  background: #1b1b1b;
}
.cid-takVM0gFM6 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-takVM0gFM6 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-takVM0gFM6 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-takVM0gFM6 .carousel-control-next span {
  margin-left: 5px;
}
.cid-takVM0gFM6 .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-takVM0gFM6 .close::before {
  content: '\e91a';
}
.cid-takVM0gFM6 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-takVM0gFM6 .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-takVM0gFM6 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-takVM0gFM6 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-takVM0gFM6 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-takVM0gFM6 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-takVM0gFM6 .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-takVM0gFM6 .carousel-indicators li.active,
.cid-takVM0gFM6 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-takVM0gFM6 .carousel-indicators li::after,
.cid-takVM0gFM6 .carousel-indicators li::before {
  content: none;
}
.cid-takVM0gFM6 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-takVM0gFM6 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-takVM0gFM6 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-takVM0gFM6 .carousel-indicators {
    display: none;
  }
}
.cid-takVM0gFM6 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-takVM0gFM6 .carousel-inner > .active {
  display: block;
}
.cid-takVM0gFM6 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-takVM0gFM6 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-takVM0gFM6 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-takVM0gFM6 .carousel-control,
  .cid-takVM0gFM6 .carousel-indicators,
  .cid-takVM0gFM6 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-takVM0gFM6 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-takVM0gFM6 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-takVM0gFM6 .carousel-indicators .active,
.cid-takVM0gFM6 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-takVM0gFM6 .carousel-indicators .active {
  background: #fff;
}
.cid-takVM0gFM6 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-takVM0gFM6 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-takVM0gFM6 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-takVM0gFM6 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-takVM0gFM6 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-takVM0gFM6 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-takVM0gFM6 .carousel {
  width: 100%;
}
.cid-takVM0gFM6 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-takVM0gFM6 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-takVM0gFM6 .modal.fade .modal-dialog,
.cid-takVM0gFM6 .modal.in .modal-dialog {
  transform: none;
}
.cid-takVM0gFM6 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-takVM0gFM6 H6 {
  text-align: center;
}
.cid-takVMZF10N {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-taIprscOtU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-taIprscOtU .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-taIprscOtU .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-taIprscOtU .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-taIprscOtU .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-taIprscOtU .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-taIprscOtU .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-taIprscOtU .carousel-control,
.cid-taIprscOtU .close {
  background: #1b1b1b;
}
.cid-taIprscOtU .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-taIprscOtU .carousel-control-prev span {
  margin-right: 5px;
}
.cid-taIprscOtU .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-taIprscOtU .carousel-control-next span {
  margin-left: 5px;
}
.cid-taIprscOtU .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-taIprscOtU .close::before {
  content: '\e91a';
}
.cid-taIprscOtU .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-taIprscOtU .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-taIprscOtU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-taIprscOtU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-taIprscOtU .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-taIprscOtU .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-taIprscOtU .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-taIprscOtU .carousel-indicators li.active,
.cid-taIprscOtU .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-taIprscOtU .carousel-indicators li::after,
.cid-taIprscOtU .carousel-indicators li::before {
  content: none;
}
.cid-taIprscOtU .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-taIprscOtU .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-taIprscOtU .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-taIprscOtU .carousel-indicators {
    display: none;
  }
}
.cid-taIprscOtU .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-taIprscOtU .carousel-inner > .active {
  display: block;
}
.cid-taIprscOtU .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-taIprscOtU .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-taIprscOtU .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-taIprscOtU .carousel-control,
  .cid-taIprscOtU .carousel-indicators,
  .cid-taIprscOtU .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-taIprscOtU .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-taIprscOtU .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-taIprscOtU .carousel-indicators .active,
.cid-taIprscOtU .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-taIprscOtU .carousel-indicators .active {
  background: #fff;
}
.cid-taIprscOtU .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-taIprscOtU .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-taIprscOtU .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-taIprscOtU .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-taIprscOtU .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-taIprscOtU .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-taIprscOtU .carousel {
  width: 100%;
}
.cid-taIprscOtU .modal-backdrop.in {
  opacity: 0.8;
}
.cid-taIprscOtU .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-taIprscOtU .modal.fade .modal-dialog,
.cid-taIprscOtU .modal.in .modal-dialog {
  transform: none;
}
.cid-taIprscOtU .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-taIprscOtU H6 {
  text-align: center;
}
.cid-taIpwvO2yF {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-talznkZAfn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-talznkZAfn .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-talznkZAfn .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-talznkZAfn .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-talznkZAfn .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-talznkZAfn .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-talznkZAfn .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-talznkZAfn .carousel-control,
.cid-talznkZAfn .close {
  background: #1b1b1b;
}
.cid-talznkZAfn .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-talznkZAfn .carousel-control-prev span {
  margin-right: 5px;
}
.cid-talznkZAfn .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-talznkZAfn .carousel-control-next span {
  margin-left: 5px;
}
.cid-talznkZAfn .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-talznkZAfn .close::before {
  content: '\e91a';
}
.cid-talznkZAfn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-talznkZAfn .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-talznkZAfn .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-talznkZAfn .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-talznkZAfn .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-talznkZAfn .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-talznkZAfn .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-talznkZAfn .carousel-indicators li.active,
.cid-talznkZAfn .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-talznkZAfn .carousel-indicators li::after,
.cid-talznkZAfn .carousel-indicators li::before {
  content: none;
}
.cid-talznkZAfn .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-talznkZAfn .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-talznkZAfn .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-talznkZAfn .carousel-indicators {
    display: none;
  }
}
.cid-talznkZAfn .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-talznkZAfn .carousel-inner > .active {
  display: block;
}
.cid-talznkZAfn .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-talznkZAfn .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-talznkZAfn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-talznkZAfn .carousel-control,
  .cid-talznkZAfn .carousel-indicators,
  .cid-talznkZAfn .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-talznkZAfn .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-talznkZAfn .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-talznkZAfn .carousel-indicators .active,
.cid-talznkZAfn .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-talznkZAfn .carousel-indicators .active {
  background: #fff;
}
.cid-talznkZAfn .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-talznkZAfn .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-talznkZAfn .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-talznkZAfn .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-talznkZAfn .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-talznkZAfn .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-talznkZAfn .carousel {
  width: 100%;
}
.cid-talznkZAfn .modal-backdrop.in {
  opacity: 0.8;
}
.cid-talznkZAfn .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-talznkZAfn .modal.fade .modal-dialog,
.cid-talznkZAfn .modal.in .modal-dialog {
  transform: none;
}
.cid-talznkZAfn .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-talznkZAfn H6 {
  text-align: center;
}
.cid-talzp6dbFK {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-talD62Vgs5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-talD62Vgs5 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-talD62Vgs5 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-talD62Vgs5 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-talD62Vgs5 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-talD62Vgs5 .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-talD62Vgs5 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-talD62Vgs5 .carousel-control,
.cid-talD62Vgs5 .close {
  background: #1b1b1b;
}
.cid-talD62Vgs5 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-talD62Vgs5 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-talD62Vgs5 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-talD62Vgs5 .carousel-control-next span {
  margin-left: 5px;
}
.cid-talD62Vgs5 .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-talD62Vgs5 .close::before {
  content: '\e91a';
}
.cid-talD62Vgs5 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-talD62Vgs5 .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-talD62Vgs5 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-talD62Vgs5 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-talD62Vgs5 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-talD62Vgs5 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-talD62Vgs5 .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-talD62Vgs5 .carousel-indicators li.active,
.cid-talD62Vgs5 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-talD62Vgs5 .carousel-indicators li::after,
.cid-talD62Vgs5 .carousel-indicators li::before {
  content: none;
}
.cid-talD62Vgs5 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-talD62Vgs5 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-talD62Vgs5 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-talD62Vgs5 .carousel-indicators {
    display: none;
  }
}
.cid-talD62Vgs5 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-talD62Vgs5 .carousel-inner > .active {
  display: block;
}
.cid-talD62Vgs5 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-talD62Vgs5 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-talD62Vgs5 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-talD62Vgs5 .carousel-control,
  .cid-talD62Vgs5 .carousel-indicators,
  .cid-talD62Vgs5 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-talD62Vgs5 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-talD62Vgs5 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-talD62Vgs5 .carousel-indicators .active,
.cid-talD62Vgs5 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-talD62Vgs5 .carousel-indicators .active {
  background: #fff;
}
.cid-talD62Vgs5 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-talD62Vgs5 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-talD62Vgs5 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-talD62Vgs5 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-talD62Vgs5 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-talD62Vgs5 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-talD62Vgs5 .carousel {
  width: 100%;
}
.cid-talD62Vgs5 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-talD62Vgs5 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-talD62Vgs5 .modal.fade .modal-dialog,
.cid-talD62Vgs5 .modal.in .modal-dialog {
  transform: none;
}
.cid-talD62Vgs5 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-talD62Vgs5 H6 {
  text-align: center;
}
.cid-talD6YAhdb {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-takSvqpVCq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-takSvqpVCq .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-takSvqpVCq .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-takSvqpVCq .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-takSvqpVCq .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-takSvqpVCq .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-takSvqpVCq .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-takSvqpVCq .carousel-control,
.cid-takSvqpVCq .close {
  background: #1b1b1b;
}
.cid-takSvqpVCq .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-takSvqpVCq .carousel-control-prev span {
  margin-right: 5px;
}
.cid-takSvqpVCq .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-takSvqpVCq .carousel-control-next span {
  margin-left: 5px;
}
.cid-takSvqpVCq .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-takSvqpVCq .close::before {
  content: '\e91a';
}
.cid-takSvqpVCq .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-takSvqpVCq .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-takSvqpVCq .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-takSvqpVCq .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-takSvqpVCq .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-takSvqpVCq .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-takSvqpVCq .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-takSvqpVCq .carousel-indicators li.active,
.cid-takSvqpVCq .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-takSvqpVCq .carousel-indicators li::after,
.cid-takSvqpVCq .carousel-indicators li::before {
  content: none;
}
.cid-takSvqpVCq .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-takSvqpVCq .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-takSvqpVCq .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-takSvqpVCq .carousel-indicators {
    display: none;
  }
}
.cid-takSvqpVCq .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-takSvqpVCq .carousel-inner > .active {
  display: block;
}
.cid-takSvqpVCq .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-takSvqpVCq .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-takSvqpVCq .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-takSvqpVCq .carousel-control,
  .cid-takSvqpVCq .carousel-indicators,
  .cid-takSvqpVCq .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-takSvqpVCq .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-takSvqpVCq .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-takSvqpVCq .carousel-indicators .active,
.cid-takSvqpVCq .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-takSvqpVCq .carousel-indicators .active {
  background: #fff;
}
.cid-takSvqpVCq .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-takSvqpVCq .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-takSvqpVCq .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-takSvqpVCq .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-takSvqpVCq .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-takSvqpVCq .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-takSvqpVCq .carousel {
  width: 100%;
}
.cid-takSvqpVCq .modal-backdrop.in {
  opacity: 0.8;
}
.cid-takSvqpVCq .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-takSvqpVCq .modal.fade .modal-dialog,
.cid-takSvqpVCq .modal.in .modal-dialog {
  transform: none;
}
.cid-takSvqpVCq .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-takSvqpVCq H6 {
  text-align: center;
}
.cid-takSwf8Egm {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sYRyzXuSe9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sYRyzXuSe9 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sYRyzXuSe9 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sYRyzXuSe9 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sYRyzXuSe9 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sYRyzXuSe9 .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-sYRyzXuSe9 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sYRyzXuSe9 .carousel-control,
.cid-sYRyzXuSe9 .close {
  background: #1b1b1b;
}
.cid-sYRyzXuSe9 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sYRyzXuSe9 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sYRyzXuSe9 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sYRyzXuSe9 .carousel-control-next span {
  margin-left: 5px;
}
.cid-sYRyzXuSe9 .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-sYRyzXuSe9 .close::before {
  content: '\e91a';
}
.cid-sYRyzXuSe9 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sYRyzXuSe9 .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-sYRyzXuSe9 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sYRyzXuSe9 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sYRyzXuSe9 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sYRyzXuSe9 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sYRyzXuSe9 .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-sYRyzXuSe9 .carousel-indicators li.active,
.cid-sYRyzXuSe9 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sYRyzXuSe9 .carousel-indicators li::after,
.cid-sYRyzXuSe9 .carousel-indicators li::before {
  content: none;
}
.cid-sYRyzXuSe9 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sYRyzXuSe9 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sYRyzXuSe9 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sYRyzXuSe9 .carousel-indicators {
    display: none;
  }
}
.cid-sYRyzXuSe9 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sYRyzXuSe9 .carousel-inner > .active {
  display: block;
}
.cid-sYRyzXuSe9 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sYRyzXuSe9 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sYRyzXuSe9 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sYRyzXuSe9 .carousel-control,
  .cid-sYRyzXuSe9 .carousel-indicators,
  .cid-sYRyzXuSe9 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sYRyzXuSe9 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sYRyzXuSe9 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sYRyzXuSe9 .carousel-indicators .active,
.cid-sYRyzXuSe9 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sYRyzXuSe9 .carousel-indicators .active {
  background: #fff;
}
.cid-sYRyzXuSe9 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sYRyzXuSe9 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sYRyzXuSe9 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sYRyzXuSe9 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sYRyzXuSe9 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sYRyzXuSe9 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sYRyzXuSe9 .carousel {
  width: 100%;
}
.cid-sYRyzXuSe9 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sYRyzXuSe9 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sYRyzXuSe9 .modal.fade .modal-dialog,
.cid-sYRyzXuSe9 .modal.in .modal-dialog {
  transform: none;
}
.cid-sYRyzXuSe9 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sYRyzXuSe9 H6 {
  text-align: center;
}
.cid-sYRyChfDaY {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tcpevUMk9q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tcpevUMk9q .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tcpevUMk9q .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tcpevUMk9q .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tcpevUMk9q .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tcpevUMk9q .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-tcpevUMk9q .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tcpevUMk9q .carousel-control,
.cid-tcpevUMk9q .close {
  background: #1b1b1b;
}
.cid-tcpevUMk9q .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tcpevUMk9q .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tcpevUMk9q .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tcpevUMk9q .carousel-control-next span {
  margin-left: 5px;
}
.cid-tcpevUMk9q .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-tcpevUMk9q .close::before {
  content: '\e91a';
}
.cid-tcpevUMk9q .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tcpevUMk9q .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-tcpevUMk9q .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tcpevUMk9q .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tcpevUMk9q .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tcpevUMk9q .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tcpevUMk9q .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-tcpevUMk9q .carousel-indicators li.active,
.cid-tcpevUMk9q .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tcpevUMk9q .carousel-indicators li::after,
.cid-tcpevUMk9q .carousel-indicators li::before {
  content: none;
}
.cid-tcpevUMk9q .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tcpevUMk9q .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tcpevUMk9q .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tcpevUMk9q .carousel-indicators {
    display: none;
  }
}
.cid-tcpevUMk9q .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tcpevUMk9q .carousel-inner > .active {
  display: block;
}
.cid-tcpevUMk9q .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tcpevUMk9q .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tcpevUMk9q .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tcpevUMk9q .carousel-control,
  .cid-tcpevUMk9q .carousel-indicators,
  .cid-tcpevUMk9q .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tcpevUMk9q .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tcpevUMk9q .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tcpevUMk9q .carousel-indicators .active,
.cid-tcpevUMk9q .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tcpevUMk9q .carousel-indicators .active {
  background: #fff;
}
.cid-tcpevUMk9q .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tcpevUMk9q .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tcpevUMk9q .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tcpevUMk9q .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tcpevUMk9q .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tcpevUMk9q .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tcpevUMk9q .carousel {
  width: 100%;
}
.cid-tcpevUMk9q .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tcpevUMk9q .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tcpevUMk9q .modal.fade .modal-dialog,
.cid-tcpevUMk9q .modal.in .modal-dialog {
  transform: none;
}
.cid-tcpevUMk9q .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tcpevUMk9q H6 {
  text-align: center;
}
.cid-tcpexFgCx3 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5FzzXRX8J {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s48P1Icc8J {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-s48P1Icc8J .row-links {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .social-row {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-s48P1Icc8J .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-s48P1Icc8J .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-s48P1Icc8J .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-s48P1Icc8J .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s48P1Icc8J .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-s48P1Icc8J .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s48P1Icc8J .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s48P1Icc8J .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-s48P1Icc8J .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-s48P1Icc8J foot-menu-item {
  text-align: right;
}
