body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((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: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
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.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 2.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 2.25rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.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-ucraHdZ1V1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ucraHdZ1V1 nav.navbar {
  position: fixed;
}
.cid-ucraHdZ1V1 .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-ucraHdZ1V1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucraHdZ1V1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ucraHdZ1V1 .dropdown-item:hover,
.cid-ucraHdZ1V1 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-ucraHdZ1V1 .dropdown-item:hover span {
  color: white;
}
.cid-ucraHdZ1V1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucraHdZ1V1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucraHdZ1V1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucraHdZ1V1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucraHdZ1V1 .nav-link {
  position: relative;
}
.cid-ucraHdZ1V1 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ucraHdZ1V1 .container {
    flex-wrap: nowrap;
  }
}
.cid-ucraHdZ1V1 .iconfont-wrapper {
  color: #1d2a25 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ucraHdZ1V1 .dropdown-menu,
.cid-ucraHdZ1V1 .navbar.opened {
  background: #085c09 !important;
}
.cid-ucraHdZ1V1 .nav-item:focus,
.cid-ucraHdZ1V1 .nav-link:focus {
  outline: none;
}
.cid-ucraHdZ1V1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucraHdZ1V1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucraHdZ1V1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucraHdZ1V1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucraHdZ1V1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucraHdZ1V1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucraHdZ1V1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #085c09;
}
.cid-ucraHdZ1V1 .navbar.opened {
  transition: all 0.3s;
}
.cid-ucraHdZ1V1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucraHdZ1V1 .navbar .navbar-logo img {
  width: auto;
}
.cid-ucraHdZ1V1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucraHdZ1V1 .navbar.collapsed {
  justify-content: center;
}
.cid-ucraHdZ1V1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucraHdZ1V1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ucraHdZ1V1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucraHdZ1V1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucraHdZ1V1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ucraHdZ1V1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucraHdZ1V1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucraHdZ1V1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucraHdZ1V1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucraHdZ1V1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucraHdZ1V1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucraHdZ1V1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucraHdZ1V1 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ucraHdZ1V1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucraHdZ1V1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucraHdZ1V1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucraHdZ1V1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucraHdZ1V1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucraHdZ1V1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucraHdZ1V1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucraHdZ1V1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucraHdZ1V1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucraHdZ1V1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucraHdZ1V1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucraHdZ1V1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucraHdZ1V1 .dropdown-item.active,
.cid-ucraHdZ1V1 .dropdown-item:active {
  background-color: transparent;
}
.cid-ucraHdZ1V1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucraHdZ1V1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucraHdZ1V1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucraHdZ1V1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #085c09;
}
.cid-ucraHdZ1V1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucraHdZ1V1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucraHdZ1V1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucraHdZ1V1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucraHdZ1V1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucraHdZ1V1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffe885;
}
.cid-ucraHdZ1V1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucraHdZ1V1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucraHdZ1V1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucraHdZ1V1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucraHdZ1V1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucraHdZ1V1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucraHdZ1V1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucraHdZ1V1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucraHdZ1V1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ucraHdZ1V1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucraHdZ1V1 .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-ucraHdZ1V1 .navbar {
    height: 70px;
  }
  .cid-ucraHdZ1V1 .navbar.opened {
    height: auto;
  }
  .cid-ucraHdZ1V1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucrDbLbrlW {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/photo-2025-05-07-08-52-25-1280x715.jpg");
}
.cid-ucrDbLbrlW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucrDbLbrlW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucrDbLbrlW .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uIASkqSVXG {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/photo-2025-05-07-08-52-25-1280x715.jpg");
}
.cid-uIASkqSVXG .mbr-overlay {
  background: #fafafa;
  opacity: 0.1;
}
.cid-uIASkqSVXG img,
.cid-uIASkqSVXG .item-img {
  width: 100%;
}
.cid-uIASkqSVXG .item:focus,
.cid-uIASkqSVXG span:focus {
  outline: none;
}
.cid-uIASkqSVXG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uIASkqSVXG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #9fdbf8;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uIASkqSVXG .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIASkqSVXG .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uIASkqSVXG .item-wrapper {
  background: transparent;
}
.cid-uIASkqSVXG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uIASkqSVXG .mbr-section-title {
  color: #232323;
}
.cid-uIASkqSVXG .mbr-text,
.cid-uIASkqSVXG .mbr-section-btn {
  text-align: left;
}
.cid-uIASkqSVXG .item-title {
  text-align: center;
  color: #fafafa;
}
.cid-uIASkqSVXG .item-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uJKwsa8Xmz {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/photo-2025-05-07-08-52-25-1280x715.jpg");
}
.cid-uJKwsa8Xmz .mbr-overlay {
  background: #fafafa;
  opacity: 0.6;
}
.cid-uJKwsa8Xmz img,
.cid-uJKwsa8Xmz .item-img {
  width: 100%;
}
.cid-uJKwsa8Xmz .item:focus,
.cid-uJKwsa8Xmz span:focus {
  outline: none;
}
.cid-uJKwsa8Xmz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uJKwsa8Xmz .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uJKwsa8Xmz .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJKwsa8Xmz .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uJKwsa8Xmz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uJKwsa8Xmz .mbr-section-title {
  color: #232323;
}
.cid-uJKwsa8Xmz .mbr-text,
.cid-uJKwsa8Xmz .mbr-section-btn {
  text-align: center;
}
.cid-uJKwsa8Xmz .item-title {
  text-align: center;
}
.cid-uJKwsa8Xmz .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-ucraW4YZKi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucraW4YZKi .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucraW4YZKi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucraW4YZKi .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-ucraW4YZKi .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-ucraW4YZKi .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ucraW4YZKi .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-ucraW4YZKi .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-ucrb0LstIS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-ucrb0LstIS .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucrb0LstIS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucrb0LstIS .google-map {
  height: 30rem;
  position: relative;
}
.cid-ucrb0LstIS .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ucrb0LstIS .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ucrb0LstIS .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ucrb0LstIS .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v6QdERQ4yo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v6QdERQ4yo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6QdERQ4yo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6QdERQ4yo .item {
  padding-bottom: 2rem;
}
.cid-v6QdERQ4yo .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v6QdERQ4yo .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v6QdERQ4yo .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-v6QdERQ4yo .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v6QdERQ4yo .carousel-control,
.cid-v6QdERQ4yo .close {
  background: #1b1b1b;
}
.cid-v6QdERQ4yo .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v6QdERQ4yo .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v6QdERQ4yo .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v6QdERQ4yo .carousel-control-next span {
  margin-left: 5px;
}
.cid-v6QdERQ4yo .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-v6QdERQ4yo .close::before {
  content: '\e91a';
}
.cid-v6QdERQ4yo .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v6QdERQ4yo .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-v6QdERQ4yo .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6QdERQ4yo .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v6QdERQ4yo .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v6QdERQ4yo .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v6QdERQ4yo .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-v6QdERQ4yo .carousel-indicators li.active,
.cid-v6QdERQ4yo .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v6QdERQ4yo .carousel-indicators li::after,
.cid-v6QdERQ4yo .carousel-indicators li::before {
  content: none;
}
.cid-v6QdERQ4yo .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v6QdERQ4yo .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v6QdERQ4yo .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v6QdERQ4yo .carousel-indicators {
    display: none;
  }
}
.cid-v6QdERQ4yo .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v6QdERQ4yo .carousel-inner > .active {
  display: block;
}
.cid-v6QdERQ4yo .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6QdERQ4yo .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6QdERQ4yo .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v6QdERQ4yo .carousel-control,
  .cid-v6QdERQ4yo .carousel-indicators,
  .cid-v6QdERQ4yo .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v6QdERQ4yo .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v6QdERQ4yo .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v6QdERQ4yo .carousel-indicators .active,
.cid-v6QdERQ4yo .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v6QdERQ4yo .carousel-indicators .active {
  background: #fff;
}
.cid-v6QdERQ4yo .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v6QdERQ4yo .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v6QdERQ4yo .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v6QdERQ4yo .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v6QdERQ4yo .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v6QdERQ4yo .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v6QdERQ4yo .carousel {
  width: 100%;
}
.cid-v6QdERQ4yo .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v6QdERQ4yo .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v6QdERQ4yo .modal.fade .modal-dialog,
.cid-v6QdERQ4yo .modal.in .modal-dialog {
  transform: none;
}
.cid-v6QdERQ4yo .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v6QdERQ4yo H6 {
  text-align: center;
}
.cid-v3s7ZZWtye {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3s7ZZWtye img,
.cid-v3s7ZZWtye .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3s7ZZWtye .item:focus,
.cid-v3s7ZZWtye span:focus {
  outline: none;
}
.cid-v3s7ZZWtye .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v3s7ZZWtye .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3s7ZZWtye .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3s7ZZWtye .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3s7ZZWtye .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3s7ZZWtye .mbr-section-title {
  color: #232323;
}
.cid-v3s7z3as5p {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3s7z3as5p img,
.cid-v3s7z3as5p .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3s7z3as5p .item:focus,
.cid-v3s7z3as5p span:focus {
  outline: none;
}
.cid-v3s7z3as5p .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v3s7z3as5p .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3s7z3as5p .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3s7z3as5p .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3s7z3as5p .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3s7z3as5p .mbr-section-title {
  color: #232323;
}
.cid-v3s70mOGUZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3s70mOGUZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3s70mOGUZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3s70mOGUZ .item {
  padding-bottom: 2rem;
}
.cid-v3s70mOGUZ .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v3s70mOGUZ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3s70mOGUZ .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-v3s70mOGUZ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v3s70mOGUZ .carousel-control,
.cid-v3s70mOGUZ .close {
  background: #1b1b1b;
}
.cid-v3s70mOGUZ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v3s70mOGUZ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v3s70mOGUZ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v3s70mOGUZ .carousel-control-next span {
  margin-left: 5px;
}
.cid-v3s70mOGUZ .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-v3s70mOGUZ .close::before {
  content: '\e91a';
}
.cid-v3s70mOGUZ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v3s70mOGUZ .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-v3s70mOGUZ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3s70mOGUZ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3s70mOGUZ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3s70mOGUZ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v3s70mOGUZ .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-v3s70mOGUZ .carousel-indicators li.active,
.cid-v3s70mOGUZ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3s70mOGUZ .carousel-indicators li::after,
.cid-v3s70mOGUZ .carousel-indicators li::before {
  content: none;
}
.cid-v3s70mOGUZ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3s70mOGUZ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v3s70mOGUZ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v3s70mOGUZ .carousel-indicators {
    display: none;
  }
}
.cid-v3s70mOGUZ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3s70mOGUZ .carousel-inner > .active {
  display: block;
}
.cid-v3s70mOGUZ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3s70mOGUZ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3s70mOGUZ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v3s70mOGUZ .carousel-control,
  .cid-v3s70mOGUZ .carousel-indicators,
  .cid-v3s70mOGUZ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v3s70mOGUZ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v3s70mOGUZ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v3s70mOGUZ .carousel-indicators .active,
.cid-v3s70mOGUZ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v3s70mOGUZ .carousel-indicators .active {
  background: #fff;
}
.cid-v3s70mOGUZ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v3s70mOGUZ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v3s70mOGUZ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v3s70mOGUZ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v3s70mOGUZ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v3s70mOGUZ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v3s70mOGUZ .carousel {
  width: 100%;
}
.cid-v3s70mOGUZ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v3s70mOGUZ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v3s70mOGUZ .modal.fade .modal-dialog,
.cid-v3s70mOGUZ .modal.in .modal-dialog {
  transform: none;
}
.cid-v3s70mOGUZ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v3s70mOGUZ H6 {
  text-align: center;
}
.cid-v3rQjryNlM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3rQjryNlM img,
.cid-v3rQjryNlM .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3rQjryNlM .item:focus,
.cid-v3rQjryNlM span:focus {
  outline: none;
}
.cid-v3rQjryNlM .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v3rQjryNlM .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3rQjryNlM .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3rQjryNlM .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3rQjryNlM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3rQjryNlM .mbr-section-title {
  color: #232323;
}
.cid-v3rQ2c6MLx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3rQ2c6MLx img,
.cid-v3rQ2c6MLx .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3rQ2c6MLx .item:focus,
.cid-v3rQ2c6MLx span:focus {
  outline: none;
}
.cid-v3rQ2c6MLx .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v3rQ2c6MLx .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3rQ2c6MLx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3rQ2c6MLx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3rQ2c6MLx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3rQ2c6MLx .mbr-section-title {
  color: #232323;
}
.cid-v3rPTdw3ol {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3rPTdw3ol img,
.cid-v3rPTdw3ol .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3rPTdw3ol .item:focus,
.cid-v3rPTdw3ol span:focus {
  outline: none;
}
.cid-v3rPTdw3ol .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v3rPTdw3ol .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3rPTdw3ol .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3rPTdw3ol .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3rPTdw3ol .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3rPTdw3ol .mbr-section-title {
  color: #232323;
}
.cid-v3rP3kj8PN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3rP3kj8PN img,
.cid-v3rP3kj8PN .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3rP3kj8PN .item:focus,
.cid-v3rP3kj8PN span:focus {
  outline: none;
}
.cid-v3rP3kj8PN .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v3rP3kj8PN .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3rP3kj8PN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3rP3kj8PN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3rP3kj8PN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3rP3kj8PN .mbr-section-title {
  color: #232323;
}
.cid-v3rOMK0Ye3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3rOMK0Ye3 img,
.cid-v3rOMK0Ye3 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3rOMK0Ye3 .item:focus,
.cid-v3rOMK0Ye3 span:focus {
  outline: none;
}
.cid-v3rOMK0Ye3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v3rOMK0Ye3 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3rOMK0Ye3 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3rOMK0Ye3 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3rOMK0Ye3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3rOMK0Ye3 .mbr-section-title {
  color: #232323;
}
.cid-v3rKQGryd7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3rKQGryd7 img,
.cid-v3rKQGryd7 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3rKQGryd7 .item:focus,
.cid-v3rKQGryd7 span:focus {
  outline: none;
}
.cid-v3rKQGryd7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v3rKQGryd7 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3rKQGryd7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3rKQGryd7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3rKQGryd7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3rKQGryd7 .mbr-section-title {
  color: #232323;
}
.cid-v3rNGGeS3I {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3rNGGeS3I .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3rNGGeS3I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3rNGGeS3I .item {
  padding-bottom: 2rem;
}
.cid-v3rNGGeS3I .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v3rNGGeS3I .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3rNGGeS3I .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-v3rNGGeS3I .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v3rNGGeS3I .carousel-control,
.cid-v3rNGGeS3I .close {
  background: #1b1b1b;
}
.cid-v3rNGGeS3I .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v3rNGGeS3I .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v3rNGGeS3I .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v3rNGGeS3I .carousel-control-next span {
  margin-left: 5px;
}
.cid-v3rNGGeS3I .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-v3rNGGeS3I .close::before {
  content: '\e91a';
}
.cid-v3rNGGeS3I .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v3rNGGeS3I .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-v3rNGGeS3I .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3rNGGeS3I .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3rNGGeS3I .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3rNGGeS3I .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v3rNGGeS3I .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-v3rNGGeS3I .carousel-indicators li.active,
.cid-v3rNGGeS3I .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3rNGGeS3I .carousel-indicators li::after,
.cid-v3rNGGeS3I .carousel-indicators li::before {
  content: none;
}
.cid-v3rNGGeS3I .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3rNGGeS3I .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v3rNGGeS3I .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v3rNGGeS3I .carousel-indicators {
    display: none;
  }
}
.cid-v3rNGGeS3I .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3rNGGeS3I .carousel-inner > .active {
  display: block;
}
.cid-v3rNGGeS3I .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3rNGGeS3I .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3rNGGeS3I .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v3rNGGeS3I .carousel-control,
  .cid-v3rNGGeS3I .carousel-indicators,
  .cid-v3rNGGeS3I .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v3rNGGeS3I .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v3rNGGeS3I .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v3rNGGeS3I .carousel-indicators .active,
.cid-v3rNGGeS3I .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v3rNGGeS3I .carousel-indicators .active {
  background: #fff;
}
.cid-v3rNGGeS3I .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v3rNGGeS3I .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v3rNGGeS3I .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v3rNGGeS3I .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v3rNGGeS3I .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v3rNGGeS3I .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v3rNGGeS3I .carousel {
  width: 100%;
}
.cid-v3rNGGeS3I .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v3rNGGeS3I .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v3rNGGeS3I .modal.fade .modal-dialog,
.cid-v3rNGGeS3I .modal.in .modal-dialog {
  transform: none;
}
.cid-v3rNGGeS3I .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v3rNGGeS3I H6 {
  text-align: center;
}
.cid-v3rNeckEUK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bfc8e8;
}
.cid-v3rNeckEUK img,
.cid-v3rNeckEUK .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3rNeckEUK .item:focus,
.cid-v3rNeckEUK span:focus {
  outline: none;
}
.cid-v3rNeckEUK .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v3rNeckEUK .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3rNeckEUK .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3rNeckEUK .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3rNeckEUK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3rNeckEUK .mbr-section-title {
  color: #232323;
}
.cid-v3rKIYbyMj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bfc8e8;
}
.cid-v3rKIYbyMj img,
.cid-v3rKIYbyMj .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3rKIYbyMj .item:focus,
.cid-v3rKIYbyMj span:focus {
  outline: none;
}
.cid-v3rKIYbyMj .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v3rKIYbyMj .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3rKIYbyMj .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3rKIYbyMj .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3rKIYbyMj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3rKIYbyMj .mbr-section-title {
  color: #232323;
}
.cid-uZzCLcdshU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bfc8e8;
}
.cid-uZzCLcdshU img,
.cid-uZzCLcdshU .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uZzCLcdshU .item:focus,
.cid-uZzCLcdshU span:focus {
  outline: none;
}
.cid-uZzCLcdshU .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uZzCLcdshU .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uZzCLcdshU .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZzCLcdshU .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uZzCLcdshU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZzCLcdshU .mbr-section-title {
  color: #232323;
}
.cid-uZzB7i4GJw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bfc8e8;
}
.cid-uZzB7i4GJw img,
.cid-uZzB7i4GJw .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uZzB7i4GJw .item:focus,
.cid-uZzB7i4GJw span:focus {
  outline: none;
}
.cid-uZzB7i4GJw .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uZzB7i4GJw .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uZzB7i4GJw .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZzB7i4GJw .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uZzB7i4GJw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZzB7i4GJw .mbr-section-title {
  color: #232323;
}
.cid-uJ9ZSoHU5A {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bfc8e8;
}
.cid-uJ9ZSoHU5A .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ9ZSoHU5A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ9ZSoHU5A .item {
  padding-bottom: 2rem;
}
.cid-uJ9ZSoHU5A .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uJ9ZSoHU5A .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uJ9ZSoHU5A .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-uJ9ZSoHU5A .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uJ9ZSoHU5A .carousel-control,
.cid-uJ9ZSoHU5A .close {
  background: #1b1b1b;
}
.cid-uJ9ZSoHU5A .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uJ9ZSoHU5A .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uJ9ZSoHU5A .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uJ9ZSoHU5A .carousel-control-next span {
  margin-left: 5px;
}
.cid-uJ9ZSoHU5A .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-uJ9ZSoHU5A .close::before {
  content: '\e91a';
}
.cid-uJ9ZSoHU5A .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uJ9ZSoHU5A .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-uJ9ZSoHU5A .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJ9ZSoHU5A .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uJ9ZSoHU5A .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uJ9ZSoHU5A .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uJ9ZSoHU5A .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-uJ9ZSoHU5A .carousel-indicators li.active,
.cid-uJ9ZSoHU5A .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uJ9ZSoHU5A .carousel-indicators li::after,
.cid-uJ9ZSoHU5A .carousel-indicators li::before {
  content: none;
}
.cid-uJ9ZSoHU5A .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uJ9ZSoHU5A .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uJ9ZSoHU5A .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uJ9ZSoHU5A .carousel-indicators {
    display: none;
  }
}
.cid-uJ9ZSoHU5A .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uJ9ZSoHU5A .carousel-inner > .active {
  display: block;
}
.cid-uJ9ZSoHU5A .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJ9ZSoHU5A .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uJ9ZSoHU5A .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uJ9ZSoHU5A .carousel-control,
  .cid-uJ9ZSoHU5A .carousel-indicators,
  .cid-uJ9ZSoHU5A .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uJ9ZSoHU5A .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uJ9ZSoHU5A .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uJ9ZSoHU5A .carousel-indicators .active,
.cid-uJ9ZSoHU5A .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uJ9ZSoHU5A .carousel-indicators .active {
  background: #fff;
}
.cid-uJ9ZSoHU5A .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uJ9ZSoHU5A .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uJ9ZSoHU5A .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uJ9ZSoHU5A .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uJ9ZSoHU5A .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uJ9ZSoHU5A .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uJ9ZSoHU5A .carousel {
  width: 100%;
}
.cid-uJ9ZSoHU5A .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uJ9ZSoHU5A .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uJ9ZSoHU5A .modal.fade .modal-dialog,
.cid-uJ9ZSoHU5A .modal.in .modal-dialog {
  transform: none;
}
.cid-uJ9ZSoHU5A .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uJ9ZSoHU5A H6 {
  text-align: center;
}
.cid-uJEWTMyX3n {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bfc8e8;
}
.cid-uJEWTMyX3n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJEWTMyX3n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJEWTMyX3n .item {
  padding-bottom: 2rem;
}
.cid-uJEWTMyX3n .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uJEWTMyX3n .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uJEWTMyX3n .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-uJEWTMyX3n .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uJEWTMyX3n .carousel-control,
.cid-uJEWTMyX3n .close {
  background: #1b1b1b;
}
.cid-uJEWTMyX3n .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uJEWTMyX3n .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uJEWTMyX3n .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uJEWTMyX3n .carousel-control-next span {
  margin-left: 5px;
}
.cid-uJEWTMyX3n .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-uJEWTMyX3n .close::before {
  content: '\e91a';
}
.cid-uJEWTMyX3n .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uJEWTMyX3n .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-uJEWTMyX3n .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJEWTMyX3n .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uJEWTMyX3n .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uJEWTMyX3n .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uJEWTMyX3n .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-uJEWTMyX3n .carousel-indicators li.active,
.cid-uJEWTMyX3n .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uJEWTMyX3n .carousel-indicators li::after,
.cid-uJEWTMyX3n .carousel-indicators li::before {
  content: none;
}
.cid-uJEWTMyX3n .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uJEWTMyX3n .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uJEWTMyX3n .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uJEWTMyX3n .carousel-indicators {
    display: none;
  }
}
.cid-uJEWTMyX3n .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uJEWTMyX3n .carousel-inner > .active {
  display: block;
}
.cid-uJEWTMyX3n .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJEWTMyX3n .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uJEWTMyX3n .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uJEWTMyX3n .carousel-control,
  .cid-uJEWTMyX3n .carousel-indicators,
  .cid-uJEWTMyX3n .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uJEWTMyX3n .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uJEWTMyX3n .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uJEWTMyX3n .carousel-indicators .active,
.cid-uJEWTMyX3n .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uJEWTMyX3n .carousel-indicators .active {
  background: #fff;
}
.cid-uJEWTMyX3n .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uJEWTMyX3n .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uJEWTMyX3n .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uJEWTMyX3n .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uJEWTMyX3n .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uJEWTMyX3n .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uJEWTMyX3n .carousel {
  width: 100%;
}
.cid-uJEWTMyX3n .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uJEWTMyX3n .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uJEWTMyX3n .modal.fade .modal-dialog,
.cid-uJEWTMyX3n .modal.in .modal-dialog {
  transform: none;
}
.cid-uJEWTMyX3n .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uJEWTMyX3n H6 {
  text-align: center;
}
.cid-v6QcNvfA2I {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v6QcNvfA2I .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6QcNvfA2I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6QcNvfA2I .item {
  padding-bottom: 2rem;
}
.cid-v6QcNvfA2I .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v6QcNvfA2I .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v6QcNvfA2I .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-v6QcNvfA2I .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v6QcNvfA2I .carousel-control,
.cid-v6QcNvfA2I .close {
  background: #1b1b1b;
}
.cid-v6QcNvfA2I .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v6QcNvfA2I .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v6QcNvfA2I .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v6QcNvfA2I .carousel-control-next span {
  margin-left: 5px;
}
.cid-v6QcNvfA2I .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-v6QcNvfA2I .close::before {
  content: '\e91a';
}
.cid-v6QcNvfA2I .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v6QcNvfA2I .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-v6QcNvfA2I .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6QcNvfA2I .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v6QcNvfA2I .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v6QcNvfA2I .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v6QcNvfA2I .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-v6QcNvfA2I .carousel-indicators li.active,
.cid-v6QcNvfA2I .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v6QcNvfA2I .carousel-indicators li::after,
.cid-v6QcNvfA2I .carousel-indicators li::before {
  content: none;
}
.cid-v6QcNvfA2I .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v6QcNvfA2I .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v6QcNvfA2I .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v6QcNvfA2I .carousel-indicators {
    display: none;
  }
}
.cid-v6QcNvfA2I .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v6QcNvfA2I .carousel-inner > .active {
  display: block;
}
.cid-v6QcNvfA2I .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6QcNvfA2I .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6QcNvfA2I .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v6QcNvfA2I .carousel-control,
  .cid-v6QcNvfA2I .carousel-indicators,
  .cid-v6QcNvfA2I .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v6QcNvfA2I .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v6QcNvfA2I .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v6QcNvfA2I .carousel-indicators .active,
.cid-v6QcNvfA2I .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v6QcNvfA2I .carousel-indicators .active {
  background: #fff;
}
.cid-v6QcNvfA2I .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v6QcNvfA2I .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v6QcNvfA2I .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v6QcNvfA2I .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v6QcNvfA2I .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v6QcNvfA2I .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v6QcNvfA2I .carousel {
  width: 100%;
}
.cid-v6QcNvfA2I .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v6QcNvfA2I .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v6QcNvfA2I .modal.fade .modal-dialog,
.cid-v6QcNvfA2I .modal.in .modal-dialog {
  transform: none;
}
.cid-v6QcNvfA2I .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v6QcNvfA2I H6 {
  text-align: center;
}
.cid-v6QckTvRMt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v6QckTvRMt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6QckTvRMt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6QckTvRMt .item {
  padding-bottom: 2rem;
}
.cid-v6QckTvRMt .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v6QckTvRMt .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v6QckTvRMt .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-v6QckTvRMt .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v6QckTvRMt .carousel-control,
.cid-v6QckTvRMt .close {
  background: #1b1b1b;
}
.cid-v6QckTvRMt .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v6QckTvRMt .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v6QckTvRMt .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v6QckTvRMt .carousel-control-next span {
  margin-left: 5px;
}
.cid-v6QckTvRMt .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-v6QckTvRMt .close::before {
  content: '\e91a';
}
.cid-v6QckTvRMt .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v6QckTvRMt .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-v6QckTvRMt .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6QckTvRMt .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v6QckTvRMt .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v6QckTvRMt .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v6QckTvRMt .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-v6QckTvRMt .carousel-indicators li.active,
.cid-v6QckTvRMt .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v6QckTvRMt .carousel-indicators li::after,
.cid-v6QckTvRMt .carousel-indicators li::before {
  content: none;
}
.cid-v6QckTvRMt .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v6QckTvRMt .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v6QckTvRMt .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v6QckTvRMt .carousel-indicators {
    display: none;
  }
}
.cid-v6QckTvRMt .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v6QckTvRMt .carousel-inner > .active {
  display: block;
}
.cid-v6QckTvRMt .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6QckTvRMt .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6QckTvRMt .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v6QckTvRMt .carousel-control,
  .cid-v6QckTvRMt .carousel-indicators,
  .cid-v6QckTvRMt .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v6QckTvRMt .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v6QckTvRMt .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v6QckTvRMt .carousel-indicators .active,
.cid-v6QckTvRMt .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v6QckTvRMt .carousel-indicators .active {
  background: #fff;
}
.cid-v6QckTvRMt .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v6QckTvRMt .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v6QckTvRMt .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v6QckTvRMt .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v6QckTvRMt .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v6QckTvRMt .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v6QckTvRMt .carousel {
  width: 100%;
}
.cid-v6QckTvRMt .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v6QckTvRMt .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v6QckTvRMt .modal.fade .modal-dialog,
.cid-v6QckTvRMt .modal.in .modal-dialog {
  transform: none;
}
.cid-v6QckTvRMt .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v6QckTvRMt H6 {
  text-align: center;
}
.cid-v6Qc8Ar0N5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v6Qc8Ar0N5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6Qc8Ar0N5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6Qc8Ar0N5 .item {
  padding-bottom: 2rem;
}
.cid-v6Qc8Ar0N5 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v6Qc8Ar0N5 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v6Qc8Ar0N5 .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-v6Qc8Ar0N5 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v6Qc8Ar0N5 .carousel-control,
.cid-v6Qc8Ar0N5 .close {
  background: #1b1b1b;
}
.cid-v6Qc8Ar0N5 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v6Qc8Ar0N5 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v6Qc8Ar0N5 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v6Qc8Ar0N5 .carousel-control-next span {
  margin-left: 5px;
}
.cid-v6Qc8Ar0N5 .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-v6Qc8Ar0N5 .close::before {
  content: '\e91a';
}
.cid-v6Qc8Ar0N5 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v6Qc8Ar0N5 .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-v6Qc8Ar0N5 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6Qc8Ar0N5 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v6Qc8Ar0N5 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v6Qc8Ar0N5 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v6Qc8Ar0N5 .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-v6Qc8Ar0N5 .carousel-indicators li.active,
.cid-v6Qc8Ar0N5 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v6Qc8Ar0N5 .carousel-indicators li::after,
.cid-v6Qc8Ar0N5 .carousel-indicators li::before {
  content: none;
}
.cid-v6Qc8Ar0N5 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v6Qc8Ar0N5 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v6Qc8Ar0N5 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v6Qc8Ar0N5 .carousel-indicators {
    display: none;
  }
}
.cid-v6Qc8Ar0N5 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v6Qc8Ar0N5 .carousel-inner > .active {
  display: block;
}
.cid-v6Qc8Ar0N5 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6Qc8Ar0N5 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6Qc8Ar0N5 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v6Qc8Ar0N5 .carousel-control,
  .cid-v6Qc8Ar0N5 .carousel-indicators,
  .cid-v6Qc8Ar0N5 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v6Qc8Ar0N5 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v6Qc8Ar0N5 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v6Qc8Ar0N5 .carousel-indicators .active,
.cid-v6Qc8Ar0N5 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v6Qc8Ar0N5 .carousel-indicators .active {
  background: #fff;
}
.cid-v6Qc8Ar0N5 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v6Qc8Ar0N5 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v6Qc8Ar0N5 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v6Qc8Ar0N5 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v6Qc8Ar0N5 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v6Qc8Ar0N5 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v6Qc8Ar0N5 .carousel {
  width: 100%;
}
.cid-v6Qc8Ar0N5 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v6Qc8Ar0N5 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v6Qc8Ar0N5 .modal.fade .modal-dialog,
.cid-v6Qc8Ar0N5 .modal.in .modal-dialog {
  transform: none;
}
.cid-v6Qc8Ar0N5 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v6Qc8Ar0N5 H6 {
  text-align: center;
}
.cid-v3Vm5qtn5b {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3Vm5qtn5b .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Vm5qtn5b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Vm5qtn5b .item {
  padding-bottom: 2rem;
}
.cid-v3Vm5qtn5b .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v3Vm5qtn5b .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3Vm5qtn5b .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-v3Vm5qtn5b .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v3Vm5qtn5b .carousel-control,
.cid-v3Vm5qtn5b .close {
  background: #1b1b1b;
}
.cid-v3Vm5qtn5b .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v3Vm5qtn5b .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v3Vm5qtn5b .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v3Vm5qtn5b .carousel-control-next span {
  margin-left: 5px;
}
.cid-v3Vm5qtn5b .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-v3Vm5qtn5b .close::before {
  content: '\e91a';
}
.cid-v3Vm5qtn5b .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v3Vm5qtn5b .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-v3Vm5qtn5b .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3Vm5qtn5b .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3Vm5qtn5b .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3Vm5qtn5b .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v3Vm5qtn5b .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-v3Vm5qtn5b .carousel-indicators li.active,
.cid-v3Vm5qtn5b .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3Vm5qtn5b .carousel-indicators li::after,
.cid-v3Vm5qtn5b .carousel-indicators li::before {
  content: none;
}
.cid-v3Vm5qtn5b .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3Vm5qtn5b .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v3Vm5qtn5b .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v3Vm5qtn5b .carousel-indicators {
    display: none;
  }
}
.cid-v3Vm5qtn5b .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3Vm5qtn5b .carousel-inner > .active {
  display: block;
}
.cid-v3Vm5qtn5b .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3Vm5qtn5b .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3Vm5qtn5b .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v3Vm5qtn5b .carousel-control,
  .cid-v3Vm5qtn5b .carousel-indicators,
  .cid-v3Vm5qtn5b .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v3Vm5qtn5b .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v3Vm5qtn5b .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v3Vm5qtn5b .carousel-indicators .active,
.cid-v3Vm5qtn5b .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v3Vm5qtn5b .carousel-indicators .active {
  background: #fff;
}
.cid-v3Vm5qtn5b .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v3Vm5qtn5b .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v3Vm5qtn5b .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v3Vm5qtn5b .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v3Vm5qtn5b .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v3Vm5qtn5b .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v3Vm5qtn5b .carousel {
  width: 100%;
}
.cid-v3Vm5qtn5b .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v3Vm5qtn5b .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v3Vm5qtn5b .modal.fade .modal-dialog,
.cid-v3Vm5qtn5b .modal.in .modal-dialog {
  transform: none;
}
.cid-v3Vm5qtn5b .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v3Vm5qtn5b H6 {
  text-align: center;
}
.cid-v3Vm62bCNu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3Vm62bCNu img,
.cid-v3Vm62bCNu .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3Vm62bCNu .item:focus,
.cid-v3Vm62bCNu span:focus {
  outline: none;
}
.cid-v3Vm62bCNu .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v3Vm62bCNu .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3Vm62bCNu .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3Vm62bCNu .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3Vm62bCNu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3Vm62bCNu .mbr-section-title {
  color: #232323;
}
.cid-v3rJuz8RQ8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #04f5b6;
}
.cid-v3rJuz8RQ8 img,
.cid-v3rJuz8RQ8 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3rJuz8RQ8 .item:focus,
.cid-v3rJuz8RQ8 span:focus {
  outline: none;
}
.cid-v3rJuz8RQ8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v3rJuz8RQ8 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3rJuz8RQ8 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3rJuz8RQ8 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3rJuz8RQ8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3rJuz8RQ8 .mbr-section-title {
  color: #232323;
}
.cid-uZzCa4OrHZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #04f5b6;
}
.cid-uZzCa4OrHZ img,
.cid-uZzCa4OrHZ .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uZzCa4OrHZ .item:focus,
.cid-uZzCa4OrHZ span:focus {
  outline: none;
}
.cid-uZzCa4OrHZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uZzCa4OrHZ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uZzCa4OrHZ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZzCa4OrHZ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uZzCa4OrHZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZzCa4OrHZ .mbr-section-title {
  color: #232323;
}
.cid-uYxpWTPz0h {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #04f5b6;
}
.cid-uYxpWTPz0h img,
.cid-uYxpWTPz0h .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uYxpWTPz0h .item:focus,
.cid-uYxpWTPz0h span:focus {
  outline: none;
}
.cid-uYxpWTPz0h .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYxpWTPz0h .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYxpWTPz0h .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYxpWTPz0h .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYxpWTPz0h .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYxpWTPz0h .mbr-section-title {
  color: #232323;
}
.cid-uKu6VD1YQI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #04f5b6;
}
.cid-uKu6VD1YQI img,
.cid-uKu6VD1YQI .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uKu6VD1YQI .item:focus,
.cid-uKu6VD1YQI span:focus {
  outline: none;
}
.cid-uKu6VD1YQI .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uKu6VD1YQI .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uKu6VD1YQI .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uKu6VD1YQI .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uKu6VD1YQI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uKu6VD1YQI .mbr-section-title {
  color: #232323;
}
.cid-uJ9YqBEt86 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #04f5b6;
}
.cid-uJ9YqBEt86 img,
.cid-uJ9YqBEt86 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uJ9YqBEt86 .item:focus,
.cid-uJ9YqBEt86 span:focus {
  outline: none;
}
.cid-uJ9YqBEt86 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJ9YqBEt86 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #e6c63b;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uJ9YqBEt86 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJ9YqBEt86 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uJ9YqBEt86 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uJ9YqBEt86 .mbr-section-title {
  color: #232323;
}
.cid-uJEVsRO1gj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #04f5b6;
}
.cid-uJEVsRO1gj img,
.cid-uJEVsRO1gj .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uJEVsRO1gj .item:focus,
.cid-uJEVsRO1gj span:focus {
  outline: none;
}
.cid-uJEVsRO1gj .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJEVsRO1gj .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uJEVsRO1gj .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJEVsRO1gj .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uJEVsRO1gj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uJEVsRO1gj .mbr-section-title {
  color: #232323;
}
.cid-uJEW2W9CKh {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #04f5b6;
}
.cid-uJEW2W9CKh img,
.cid-uJEW2W9CKh .item-img {
  width: 100%;
}
.cid-uJEW2W9CKh .item:focus,
.cid-uJEW2W9CKh span:focus {
  outline: none;
}
.cid-uJEW2W9CKh .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJEW2W9CKh .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uJEW2W9CKh .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJEW2W9CKh .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uJEW2W9CKh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uJEW2W9CKh .mbr-section-title {
  color: #232323;
}
.cid-uJF3NdEC9V {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uJF3NdEC9V img,
.cid-uJF3NdEC9V .item-img {
  width: 100%;
}
.cid-uJF3NdEC9V .item:focus,
.cid-uJF3NdEC9V span:focus {
  outline: none;
}
.cid-uJF3NdEC9V .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJF3NdEC9V .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uJF3NdEC9V .item {
  padding: 0;
  margin: 0;
}
.cid-uJF3NdEC9V .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uJF3NdEC9V .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJF3NdEC9V .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uJF3NdEC9V .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uJF3NdEC9V .mbr-section-title {
  color: #232323;
}
.cid-uJF3NZ2MdJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uJF3NZ2MdJ img,
.cid-uJF3NZ2MdJ .item-img {
  width: 100%;
}
.cid-uJF3NZ2MdJ .item:focus,
.cid-uJF3NZ2MdJ span:focus {
  outline: none;
}
.cid-uJF3NZ2MdJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJF3NZ2MdJ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uJF3NZ2MdJ .item {
  padding: 0;
  margin: 0;
}
.cid-uJF3NZ2MdJ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uJF3NZ2MdJ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJF3NZ2MdJ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uJF3NZ2MdJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uJF3NZ2MdJ .mbr-section-title {
  color: #232323;
}
.cid-uJF3PtRRHW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uJF3PtRRHW img,
.cid-uJF3PtRRHW .item-img {
  width: 100%;
}
.cid-uJF3PtRRHW .item:focus,
.cid-uJF3PtRRHW span:focus {
  outline: none;
}
.cid-uJF3PtRRHW .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJF3PtRRHW .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uJF3PtRRHW .item {
  padding: 0;
  margin: 0;
}
.cid-uJF3PtRRHW .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uJF3PtRRHW .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJF3PtRRHW .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uJF3PtRRHW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uJF3PtRRHW .mbr-section-title {
  color: #232323;
}
.cid-uJF3P7f9OW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uJF3P7f9OW img,
.cid-uJF3P7f9OW .item-img {
  width: 100%;
}
.cid-uJF3P7f9OW .item:focus,
.cid-uJF3P7f9OW span:focus {
  outline: none;
}
.cid-uJF3P7f9OW .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJF3P7f9OW .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uJF3P7f9OW .item {
  padding: 0;
  margin: 0;
}
.cid-uJF3P7f9OW .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uJF3P7f9OW .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJF3P7f9OW .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uJF3P7f9OW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uJF3P7f9OW .mbr-section-title {
  color: #232323;
}
.cid-uJF3OMEHbJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uJF3OMEHbJ img,
.cid-uJF3OMEHbJ .item-img {
  width: 100%;
}
.cid-uJF3OMEHbJ .item:focus,
.cid-uJF3OMEHbJ span:focus {
  outline: none;
}
.cid-uJF3OMEHbJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJF3OMEHbJ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uJF3OMEHbJ .item {
  padding: 0;
  margin: 0;
}
.cid-uJF3OMEHbJ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uJF3OMEHbJ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJF3OMEHbJ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uJF3OMEHbJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uJF3OMEHbJ .mbr-section-title {
  color: #232323;
}
.cid-ucraHdZ1V1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ucraHdZ1V1 nav.navbar {
  position: fixed;
}
.cid-ucraHdZ1V1 .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-ucraHdZ1V1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucraHdZ1V1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ucraHdZ1V1 .dropdown-item:hover,
.cid-ucraHdZ1V1 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-ucraHdZ1V1 .dropdown-item:hover span {
  color: white;
}
.cid-ucraHdZ1V1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucraHdZ1V1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucraHdZ1V1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucraHdZ1V1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucraHdZ1V1 .nav-link {
  position: relative;
}
.cid-ucraHdZ1V1 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ucraHdZ1V1 .container {
    flex-wrap: nowrap;
  }
}
.cid-ucraHdZ1V1 .iconfont-wrapper {
  color: #1d2a25 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ucraHdZ1V1 .dropdown-menu,
.cid-ucraHdZ1V1 .navbar.opened {
  background: #085c09 !important;
}
.cid-ucraHdZ1V1 .nav-item:focus,
.cid-ucraHdZ1V1 .nav-link:focus {
  outline: none;
}
.cid-ucraHdZ1V1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucraHdZ1V1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucraHdZ1V1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucraHdZ1V1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucraHdZ1V1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucraHdZ1V1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucraHdZ1V1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #085c09;
}
.cid-ucraHdZ1V1 .navbar.opened {
  transition: all 0.3s;
}
.cid-ucraHdZ1V1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucraHdZ1V1 .navbar .navbar-logo img {
  width: auto;
}
.cid-ucraHdZ1V1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucraHdZ1V1 .navbar.collapsed {
  justify-content: center;
}
.cid-ucraHdZ1V1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucraHdZ1V1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ucraHdZ1V1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucraHdZ1V1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucraHdZ1V1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ucraHdZ1V1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucraHdZ1V1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucraHdZ1V1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucraHdZ1V1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucraHdZ1V1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucraHdZ1V1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucraHdZ1V1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucraHdZ1V1 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ucraHdZ1V1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucraHdZ1V1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucraHdZ1V1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucraHdZ1V1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucraHdZ1V1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucraHdZ1V1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucraHdZ1V1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucraHdZ1V1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucraHdZ1V1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucraHdZ1V1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucraHdZ1V1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucraHdZ1V1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucraHdZ1V1 .dropdown-item.active,
.cid-ucraHdZ1V1 .dropdown-item:active {
  background-color: transparent;
}
.cid-ucraHdZ1V1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucraHdZ1V1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucraHdZ1V1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucraHdZ1V1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #085c09;
}
.cid-ucraHdZ1V1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucraHdZ1V1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucraHdZ1V1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucraHdZ1V1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucraHdZ1V1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucraHdZ1V1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffe885;
}
.cid-ucraHdZ1V1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucraHdZ1V1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucraHdZ1V1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucraHdZ1V1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucraHdZ1V1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucraHdZ1V1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucraHdZ1V1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucraHdZ1V1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucraHdZ1V1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ucraHdZ1V1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucraHdZ1V1 .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-ucraHdZ1V1 .navbar {
    height: 70px;
  }
  .cid-ucraHdZ1V1 .navbar.opened {
    height: auto;
  }
  .cid-ucraHdZ1V1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v6QaWC3qtu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v6QaWC3qtu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6QaWC3qtu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6QaWC3qtu .item {
  padding-bottom: 2rem;
}
.cid-v6QaWC3qtu .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v6QaWC3qtu .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v6QaWC3qtu .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-v6QaWC3qtu .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v6QaWC3qtu .carousel-control,
.cid-v6QaWC3qtu .close {
  background: #1b1b1b;
}
.cid-v6QaWC3qtu .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v6QaWC3qtu .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v6QaWC3qtu .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v6QaWC3qtu .carousel-control-next span {
  margin-left: 5px;
}
.cid-v6QaWC3qtu .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-v6QaWC3qtu .close::before {
  content: '\e91a';
}
.cid-v6QaWC3qtu .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v6QaWC3qtu .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-v6QaWC3qtu .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6QaWC3qtu .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v6QaWC3qtu .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v6QaWC3qtu .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v6QaWC3qtu .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-v6QaWC3qtu .carousel-indicators li.active,
.cid-v6QaWC3qtu .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v6QaWC3qtu .carousel-indicators li::after,
.cid-v6QaWC3qtu .carousel-indicators li::before {
  content: none;
}
.cid-v6QaWC3qtu .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v6QaWC3qtu .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v6QaWC3qtu .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v6QaWC3qtu .carousel-indicators {
    display: none;
  }
}
.cid-v6QaWC3qtu .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v6QaWC3qtu .carousel-inner > .active {
  display: block;
}
.cid-v6QaWC3qtu .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6QaWC3qtu .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6QaWC3qtu .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v6QaWC3qtu .carousel-control,
  .cid-v6QaWC3qtu .carousel-indicators,
  .cid-v6QaWC3qtu .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v6QaWC3qtu .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v6QaWC3qtu .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v6QaWC3qtu .carousel-indicators .active,
.cid-v6QaWC3qtu .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v6QaWC3qtu .carousel-indicators .active {
  background: #fff;
}
.cid-v6QaWC3qtu .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v6QaWC3qtu .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v6QaWC3qtu .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v6QaWC3qtu .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v6QaWC3qtu .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v6QaWC3qtu .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v6QaWC3qtu .carousel {
  width: 100%;
}
.cid-v6QaWC3qtu .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v6QaWC3qtu .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v6QaWC3qtu .modal.fade .modal-dialog,
.cid-v6QaWC3qtu .modal.in .modal-dialog {
  transform: none;
}
.cid-v6QaWC3qtu .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v6QaWC3qtu H6 {
  text-align: center;
}
.cid-v6Q93jJbsS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v6Q93jJbsS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6Q93jJbsS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6Q93jJbsS .item {
  padding-bottom: 2rem;
}
.cid-v6Q93jJbsS .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-v6Q93jJbsS .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v6Q93jJbsS .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-v6Q93jJbsS .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v6Q93jJbsS .carousel-control,
.cid-v6Q93jJbsS .close {
  background: #1b1b1b;
}
.cid-v6Q93jJbsS .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v6Q93jJbsS .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v6Q93jJbsS .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v6Q93jJbsS .carousel-control-next span {
  margin-left: 5px;
}
.cid-v6Q93jJbsS .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-v6Q93jJbsS .close::before {
  content: '\e91a';
}
.cid-v6Q93jJbsS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v6Q93jJbsS .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-v6Q93jJbsS .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6Q93jJbsS .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v6Q93jJbsS .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v6Q93jJbsS .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v6Q93jJbsS .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-v6Q93jJbsS .carousel-indicators li.active,
.cid-v6Q93jJbsS .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v6Q93jJbsS .carousel-indicators li::after,
.cid-v6Q93jJbsS .carousel-indicators li::before {
  content: none;
}
.cid-v6Q93jJbsS .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v6Q93jJbsS .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v6Q93jJbsS .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v6Q93jJbsS .carousel-indicators {
    display: none;
  }
}
.cid-v6Q93jJbsS .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v6Q93jJbsS .carousel-inner > .active {
  display: block;
}
.cid-v6Q93jJbsS .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6Q93jJbsS .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6Q93jJbsS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v6Q93jJbsS .carousel-control,
  .cid-v6Q93jJbsS .carousel-indicators,
  .cid-v6Q93jJbsS .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v6Q93jJbsS .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v6Q93jJbsS .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v6Q93jJbsS .carousel-indicators .active,
.cid-v6Q93jJbsS .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v6Q93jJbsS .carousel-indicators .active {
  background: #fff;
}
.cid-v6Q93jJbsS .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v6Q93jJbsS .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v6Q93jJbsS .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v6Q93jJbsS .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v6Q93jJbsS .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v6Q93jJbsS .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v6Q93jJbsS .carousel {
  width: 100%;
}
.cid-v6Q93jJbsS .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v6Q93jJbsS .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v6Q93jJbsS .modal.fade .modal-dialog,
.cid-v6Q93jJbsS .modal.in .modal-dialog {
  transform: none;
}
.cid-v6Q93jJbsS .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v6Q93jJbsS H6 {
  text-align: center;
}
.cid-v6iePC2khl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v6iePC2khl img,
.cid-v6iePC2khl .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v6iePC2khl .item:focus,
.cid-v6iePC2khl span:focus {
  outline: none;
}
.cid-v6iePC2khl .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v6iePC2khl .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v6iePC2khl .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v6iePC2khl .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v6iePC2khl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v6iePC2khl .mbr-section-title {
  color: #232323;
}
.cid-v6iij3EFNg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v6iij3EFNg img,
.cid-v6iij3EFNg .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v6iij3EFNg .item:focus,
.cid-v6iij3EFNg span:focus {
  outline: none;
}
.cid-v6iij3EFNg .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v6iij3EFNg .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v6iij3EFNg .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v6iij3EFNg .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v6iij3EFNg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v6iij3EFNg .mbr-section-title {
  color: #232323;
}
.cid-v3s6xAz8oM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3s6xAz8oM img,
.cid-v3s6xAz8oM .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3s6xAz8oM .item:focus,
.cid-v3s6xAz8oM span:focus {
  outline: none;
}
.cid-v3s6xAz8oM .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v3s6xAz8oM .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3s6xAz8oM .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3s6xAz8oM .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3s6xAz8oM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3s6xAz8oM .mbr-section-title {
  color: #232323;
}
.cid-v3rTgC5m2Q {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3rTgC5m2Q img,
.cid-v3rTgC5m2Q .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3rTgC5m2Q .item:focus,
.cid-v3rTgC5m2Q span:focus {
  outline: none;
}
.cid-v3rTgC5m2Q .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v3rTgC5m2Q .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3rTgC5m2Q .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3rTgC5m2Q .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3rTgC5m2Q .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3rTgC5m2Q .mbr-section-title {
  color: #232323;
}
.cid-v3rSgFb3if {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3rSgFb3if img,
.cid-v3rSgFb3if .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3rSgFb3if .item:focus,
.cid-v3rSgFb3if span:focus {
  outline: none;
}
.cid-v3rSgFb3if .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v3rSgFb3if .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3rSgFb3if .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3rSgFb3if .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3rSgFb3if .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3rSgFb3if .mbr-section-title {
  color: #232323;
}
.cid-v3rRQkvL0a {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3rRQkvL0a img,
.cid-v3rRQkvL0a .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3rRQkvL0a .item:focus,
.cid-v3rRQkvL0a span:focus {
  outline: none;
}
.cid-v3rRQkvL0a .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v3rRQkvL0a .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3rRQkvL0a .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3rRQkvL0a .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3rRQkvL0a .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3rRQkvL0a .mbr-section-title {
  color: #232323;
}
.cid-v3rLlm0vus {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3rLlm0vus img,
.cid-v3rLlm0vus .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3rLlm0vus .item:focus,
.cid-v3rLlm0vus span:focus {
  outline: none;
}
.cid-v3rLlm0vus .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v3rLlm0vus .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3rLlm0vus .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3rLlm0vus .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3rLlm0vus .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3rLlm0vus .mbr-section-title {
  color: #232323;
}
.cid-v3rL51Qwak {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3rL51Qwak img,
.cid-v3rL51Qwak .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3rL51Qwak .item:focus,
.cid-v3rL51Qwak span:focus {
  outline: none;
}
.cid-v3rL51Qwak .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v3rL51Qwak .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3rL51Qwak .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3rL51Qwak .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3rL51Qwak .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3rL51Qwak .mbr-section-title {
  color: #232323;
}
.cid-v3rJhMRMlq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3rJhMRMlq img,
.cid-v3rJhMRMlq .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3rJhMRMlq .item:focus,
.cid-v3rJhMRMlq span:focus {
  outline: none;
}
.cid-v3rJhMRMlq .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v3rJhMRMlq .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3rJhMRMlq .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3rJhMRMlq .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3rJhMRMlq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3rJhMRMlq .mbr-section-title {
  color: #232323;
}
.cid-v3rJ6sHb7M {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3rJ6sHb7M img,
.cid-v3rJ6sHb7M .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3rJ6sHb7M .item:focus,
.cid-v3rJ6sHb7M span:focus {
  outline: none;
}
.cid-v3rJ6sHb7M .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v3rJ6sHb7M .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3rJ6sHb7M .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3rJ6sHb7M .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3rJ6sHb7M .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3rJ6sHb7M .mbr-section-title {
  color: #232323;
}
.cid-uZzCtxuny6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZzCtxuny6 img,
.cid-uZzCtxuny6 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uZzCtxuny6 .item:focus,
.cid-uZzCtxuny6 span:focus {
  outline: none;
}
.cid-uZzCtxuny6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uZzCtxuny6 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uZzCtxuny6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZzCtxuny6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uZzCtxuny6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZzCtxuny6 .mbr-section-title {
  color: #232323;
}
.cid-uZzA3ZbpDo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZzA3ZbpDo img,
.cid-uZzA3ZbpDo .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uZzA3ZbpDo .item:focus,
.cid-uZzA3ZbpDo span:focus {
  outline: none;
}
.cid-uZzA3ZbpDo .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uZzA3ZbpDo .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uZzA3ZbpDo .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZzA3ZbpDo .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uZzA3ZbpDo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZzA3ZbpDo .mbr-section-title {
  color: #232323;
}
.cid-uYPfz76FRP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYPfz76FRP img,
.cid-uYPfz76FRP .item-img {
  width: 100%;
}
.cid-uYPfz76FRP .item:focus,
.cid-uYPfz76FRP span:focus {
  outline: none;
}
.cid-uYPfz76FRP .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYPfz76FRP .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYPfz76FRP .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYPfz76FRP .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYPfz76FRP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYPfz76FRP .mbr-section-title {
  color: #232323;
}
.cid-uYPf6X5lG7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYPf6X5lG7 img,
.cid-uYPf6X5lG7 .item-img {
  width: 100%;
}
.cid-uYPf6X5lG7 .item:focus,
.cid-uYPf6X5lG7 span:focus {
  outline: none;
}
.cid-uYPf6X5lG7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYPf6X5lG7 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYPf6X5lG7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYPf6X5lG7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYPf6X5lG7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYPf6X5lG7 .mbr-section-title {
  color: #232323;
}
.cid-uRWh5gjOXT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRWh5gjOXT img,
.cid-uRWh5gjOXT .item-img {
  width: 100%;
}
.cid-uRWh5gjOXT .item:focus,
.cid-uRWh5gjOXT span:focus {
  outline: none;
}
.cid-uRWh5gjOXT .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uRWh5gjOXT .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRWh5gjOXT .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRWh5gjOXT .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRWh5gjOXT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRWh5gjOXT .mbr-section-title {
  color: #232323;
}
.cid-uRWgLtnYTL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRWgLtnYTL img,
.cid-uRWgLtnYTL .item-img {
  width: 100%;
}
.cid-uRWgLtnYTL .item:focus,
.cid-uRWgLtnYTL span:focus {
  outline: none;
}
.cid-uRWgLtnYTL .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uRWgLtnYTL .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRWgLtnYTL .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRWgLtnYTL .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRWgLtnYTL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRWgLtnYTL .mbr-section-title {
  color: #232323;
}
.cid-uRWgdukbMQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRWgdukbMQ img,
.cid-uRWgdukbMQ .item-img {
  width: 100%;
}
.cid-uRWgdukbMQ .item:focus,
.cid-uRWgdukbMQ span:focus {
  outline: none;
}
.cid-uRWgdukbMQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uRWgdukbMQ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uRWgdukbMQ .item {
  padding: 0;
  margin: 0;
}
.cid-uRWgdukbMQ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRWgdukbMQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRWgdukbMQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRWgdukbMQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRWgdukbMQ .mbr-section-title {
  color: #232323;
}
.cid-uRWfRr5B5Q {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRWfRr5B5Q img,
.cid-uRWfRr5B5Q .item-img {
  width: 100%;
}
.cid-uRWfRr5B5Q .item:focus,
.cid-uRWfRr5B5Q span:focus {
  outline: none;
}
.cid-uRWfRr5B5Q .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uRWfRr5B5Q .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRWfRr5B5Q .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRWfRr5B5Q .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRWfRr5B5Q .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRWfRr5B5Q .mbr-section-title {
  color: #232323;
}
.cid-uRWfvKYNKy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRWfvKYNKy img,
.cid-uRWfvKYNKy .item-img {
  width: 100%;
}
.cid-uRWfvKYNKy .item:focus,
.cid-uRWfvKYNKy span:focus {
  outline: none;
}
.cid-uRWfvKYNKy .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uRWfvKYNKy .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRWfvKYNKy .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRWfvKYNKy .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRWfvKYNKy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRWfvKYNKy .mbr-section-title {
  color: #232323;
}
.cid-uRWfcBEjZ3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRWfcBEjZ3 img,
.cid-uRWfcBEjZ3 .item-img {
  width: 100%;
}
.cid-uRWfcBEjZ3 .item:focus,
.cid-uRWfcBEjZ3 span:focus {
  outline: none;
}
.cid-uRWfcBEjZ3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uRWfcBEjZ3 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRWfcBEjZ3 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRWfcBEjZ3 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRWfcBEjZ3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRWfcBEjZ3 .mbr-section-title {
  color: #232323;
}
.cid-uRWeUE8qUl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRWeUE8qUl img,
.cid-uRWeUE8qUl .item-img {
  width: 100%;
}
.cid-uRWeUE8qUl .item:focus,
.cid-uRWeUE8qUl span:focus {
  outline: none;
}
.cid-uRWeUE8qUl .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uRWeUE8qUl .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRWeUE8qUl .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRWeUE8qUl .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRWeUE8qUl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRWeUE8qUl .mbr-section-title {
  color: #232323;
}
.cid-uRWeBBgdjH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRWeBBgdjH img,
.cid-uRWeBBgdjH .item-img {
  width: 100%;
}
.cid-uRWeBBgdjH .item:focus,
.cid-uRWeBBgdjH span:focus {
  outline: none;
}
.cid-uRWeBBgdjH .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uRWeBBgdjH .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRWeBBgdjH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRWeBBgdjH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRWeBBgdjH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRWeBBgdjH .mbr-section-title {
  color: #232323;
}
.cid-uRWea0VSKW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRWea0VSKW img,
.cid-uRWea0VSKW .item-img {
  width: 100%;
}
.cid-uRWea0VSKW .item:focus,
.cid-uRWea0VSKW span:focus {
  outline: none;
}
.cid-uRWea0VSKW .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uRWea0VSKW .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRWea0VSKW .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRWea0VSKW .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRWea0VSKW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRWea0VSKW .mbr-section-title {
  color: #232323;
}
.cid-uRW2n1f1RX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRW2n1f1RX img,
.cid-uRW2n1f1RX .item-img {
  width: 100%;
}
.cid-uRW2n1f1RX .item:focus,
.cid-uRW2n1f1RX span:focus {
  outline: none;
}
.cid-uRW2n1f1RX .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uRW2n1f1RX .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRW2n1f1RX .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRW2n1f1RX .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRW2n1f1RX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRW2n1f1RX .mbr-section-title {
  color: #232323;
}
.cid-uRWdd1VlDT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRWdd1VlDT img,
.cid-uRWdd1VlDT .item-img {
  width: 100%;
}
.cid-uRWdd1VlDT .item:focus,
.cid-uRWdd1VlDT span:focus {
  outline: none;
}
.cid-uRWdd1VlDT .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uRWdd1VlDT .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRWdd1VlDT .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRWdd1VlDT .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRWdd1VlDT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRWdd1VlDT .mbr-section-title {
  color: #232323;
}
.cid-uRW0gwT21V {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRW0gwT21V img,
.cid-uRW0gwT21V .item-img {
  width: 100%;
}
.cid-uRW0gwT21V .item:focus,
.cid-uRW0gwT21V span:focus {
  outline: none;
}
.cid-uRW0gwT21V .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uRW0gwT21V .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRW0gwT21V .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRW0gwT21V .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRW0gwT21V .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRW0gwT21V .mbr-section-title {
  color: #232323;
}
.cid-uRVZopEm2p {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRVZopEm2p img,
.cid-uRVZopEm2p .item-img {
  width: 100%;
}
.cid-uRVZopEm2p .item:focus,
.cid-uRVZopEm2p span:focus {
  outline: none;
}
.cid-uRVZopEm2p .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uRVZopEm2p .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRVZopEm2p .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRVZopEm2p .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRVZopEm2p .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRVZopEm2p .mbr-section-title {
  color: #232323;
}
.cid-uRVZ27gATe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRVZ27gATe img,
.cid-uRVZ27gATe .item-img {
  width: 100%;
}
.cid-uRVZ27gATe .item:focus,
.cid-uRVZ27gATe span:focus {
  outline: none;
}
.cid-uRVZ27gATe .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uRVZ27gATe .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRVZ27gATe .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRVZ27gATe .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRVZ27gATe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRVZ27gATe .mbr-section-title {
  color: #232323;
}
.cid-uRVRloELbK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRVRloELbK img,
.cid-uRVRloELbK .item-img {
  width: 100%;
}
.cid-uRVRloELbK .item:focus,
.cid-uRVRloELbK span:focus {
  outline: none;
}
.cid-uRVRloELbK .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uRVRloELbK .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRVRloELbK .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRVRloELbK .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRVRloELbK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRVRloELbK .mbr-section-title {
  color: #232323;
}
.cid-uRVQSd8wCD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRVQSd8wCD img,
.cid-uRVQSd8wCD .item-img {
  width: 100%;
}
.cid-uRVQSd8wCD .item:focus,
.cid-uRVQSd8wCD span:focus {
  outline: none;
}
.cid-uRVQSd8wCD .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uRVQSd8wCD .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRVQSd8wCD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRVQSd8wCD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRVQSd8wCD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRVQSd8wCD .mbr-section-title {
  color: #232323;
}
.cid-uRVPXvUM55 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRVPXvUM55 img,
.cid-uRVPXvUM55 .item-img {
  width: 100%;
}
.cid-uRVPXvUM55 .item:focus,
.cid-uRVPXvUM55 span:focus {
  outline: none;
}
.cid-uRVPXvUM55 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uRVPXvUM55 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRVPXvUM55 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRVPXvUM55 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRVPXvUM55 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRVPXvUM55 .mbr-section-title {
  color: #232323;
}
.cid-uPzDU02v4O {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uPzDU02v4O img,
.cid-uPzDU02v4O .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uPzDU02v4O .item:focus,
.cid-uPzDU02v4O span:focus {
  outline: none;
}
.cid-uPzDU02v4O .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uPzDU02v4O .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPzDU02v4O .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPzDU02v4O .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uPzDU02v4O .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPzDU02v4O .mbr-section-title {
  color: #232323;
}
.cid-uPzCdBRm8j {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uPzCdBRm8j img,
.cid-uPzCdBRm8j .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uPzCdBRm8j .item:focus,
.cid-uPzCdBRm8j span:focus {
  outline: none;
}
.cid-uPzCdBRm8j .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uPzCdBRm8j .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPzCdBRm8j .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPzCdBRm8j .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uPzCdBRm8j .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPzCdBRm8j .mbr-section-title {
  color: #232323;
}
.cid-uPzD7ltTL9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uPzD7ltTL9 img,
.cid-uPzD7ltTL9 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uPzD7ltTL9 .item:focus,
.cid-uPzD7ltTL9 span:focus {
  outline: none;
}
.cid-uPzD7ltTL9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uPzD7ltTL9 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPzD7ltTL9 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPzD7ltTL9 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uPzD7ltTL9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPzD7ltTL9 .mbr-section-title {
  color: #232323;
}
.cid-uPzCQ09gn8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uPzCQ09gn8 img,
.cid-uPzCQ09gn8 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uPzCQ09gn8 .item:focus,
.cid-uPzCQ09gn8 span:focus {
  outline: none;
}
.cid-uPzCQ09gn8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uPzCQ09gn8 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPzCQ09gn8 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPzCQ09gn8 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uPzCQ09gn8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPzCQ09gn8 .mbr-section-title {
  color: #232323;
}
.cid-uPzBTXTFcw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uPzBTXTFcw img,
.cid-uPzBTXTFcw .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uPzBTXTFcw .item:focus,
.cid-uPzBTXTFcw span:focus {
  outline: none;
}
.cid-uPzBTXTFcw .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uPzBTXTFcw .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPzBTXTFcw .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPzBTXTFcw .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uPzBTXTFcw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPzBTXTFcw .mbr-section-title {
  color: #232323;
}
.cid-uPzB1WnCVc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uPzB1WnCVc img,
.cid-uPzB1WnCVc .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uPzB1WnCVc .item:focus,
.cid-uPzB1WnCVc span:focus {
  outline: none;
}
.cid-uPzB1WnCVc .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uPzB1WnCVc .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPzB1WnCVc .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPzB1WnCVc .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uPzB1WnCVc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPzB1WnCVc .mbr-section-title {
  color: #232323;
}
.cid-uPzAOscvhv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uPzAOscvhv img,
.cid-uPzAOscvhv .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uPzAOscvhv .item:focus,
.cid-uPzAOscvhv span:focus {
  outline: none;
}
.cid-uPzAOscvhv .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uPzAOscvhv .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPzAOscvhv .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPzAOscvhv .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uPzAOscvhv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPzAOscvhv .mbr-section-title {
  color: #232323;
}
.cid-uOxZL8Jqvm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOxZL8Jqvm img,
.cid-uOxZL8Jqvm .item-img {
  width: 100%;
}
.cid-uOxZL8Jqvm .item:focus,
.cid-uOxZL8Jqvm span:focus {
  outline: none;
}
.cid-uOxZL8Jqvm .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOxZL8Jqvm .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOxZL8Jqvm .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOxZL8Jqvm .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOxZL8Jqvm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOxZL8Jqvm .mbr-section-title {
  color: #232323;
}
.cid-uOxJqRclS6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOxJqRclS6 img,
.cid-uOxJqRclS6 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uOxJqRclS6 .item:focus,
.cid-uOxJqRclS6 span:focus {
  outline: none;
}
.cid-uOxJqRclS6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOxJqRclS6 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOxJqRclS6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOxJqRclS6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOxJqRclS6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOxJqRclS6 .mbr-section-title {
  color: #232323;
}
.cid-uOxJepbVo7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOxJepbVo7 img,
.cid-uOxJepbVo7 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uOxJepbVo7 .item:focus,
.cid-uOxJepbVo7 span:focus {
  outline: none;
}
.cid-uOxJepbVo7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOxJepbVo7 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOxJepbVo7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOxJepbVo7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOxJepbVo7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOxJepbVo7 .mbr-section-title {
  color: #232323;
}
.cid-uOxIGY0443 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOxIGY0443 img,
.cid-uOxIGY0443 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uOxIGY0443 .item:focus,
.cid-uOxIGY0443 span:focus {
  outline: none;
}
.cid-uOxIGY0443 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOxIGY0443 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOxIGY0443 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOxIGY0443 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOxIGY0443 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOxIGY0443 .mbr-section-title {
  color: #232323;
}
.cid-uOxIthh8yp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOxIthh8yp img,
.cid-uOxIthh8yp .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uOxIthh8yp .item:focus,
.cid-uOxIthh8yp span:focus {
  outline: none;
}
.cid-uOxIthh8yp .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOxIthh8yp .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOxIthh8yp .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOxIthh8yp .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOxIthh8yp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOxIthh8yp .mbr-section-title {
  color: #232323;
}
.cid-uOxI6XMYSq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOxI6XMYSq img,
.cid-uOxI6XMYSq .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uOxI6XMYSq .item:focus,
.cid-uOxI6XMYSq span:focus {
  outline: none;
}
.cid-uOxI6XMYSq .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOxI6XMYSq .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOxI6XMYSq .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOxI6XMYSq .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOxI6XMYSq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOxI6XMYSq .mbr-section-title {
  color: #232323;
}
.cid-uOxHheTlB6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOxHheTlB6 img,
.cid-uOxHheTlB6 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uOxHheTlB6 .item:focus,
.cid-uOxHheTlB6 span:focus {
  outline: none;
}
.cid-uOxHheTlB6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOxHheTlB6 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOxHheTlB6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOxHheTlB6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOxHheTlB6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOxHheTlB6 .mbr-section-title {
  color: #232323;
}
.cid-uOxHgFpMny {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOxHgFpMny img,
.cid-uOxHgFpMny .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uOxHgFpMny .item:focus,
.cid-uOxHgFpMny span:focus {
  outline: none;
}
.cid-uOxHgFpMny .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOxHgFpMny .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOxHgFpMny .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOxHgFpMny .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOxHgFpMny .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOxHgFpMny .mbr-section-title {
  color: #232323;
}
.cid-uOxGEiQhf8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOxGEiQhf8 img,
.cid-uOxGEiQhf8 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uOxGEiQhf8 .item:focus,
.cid-uOxGEiQhf8 span:focus {
  outline: none;
}
.cid-uOxGEiQhf8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOxGEiQhf8 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOxGEiQhf8 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOxGEiQhf8 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOxGEiQhf8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOxGEiQhf8 .mbr-section-title {
  color: #232323;
}
.cid-uOxGtstour {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOxGtstour img,
.cid-uOxGtstour .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uOxGtstour .item:focus,
.cid-uOxGtstour span:focus {
  outline: none;
}
.cid-uOxGtstour .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOxGtstour .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOxGtstour .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOxGtstour .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOxGtstour .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOxGtstour .mbr-section-title {
  color: #232323;
}
.cid-uOxG7Sefin {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOxG7Sefin img,
.cid-uOxG7Sefin .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uOxG7Sefin .item:focus,
.cid-uOxG7Sefin span:focus {
  outline: none;
}
.cid-uOxG7Sefin .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOxG7Sefin .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOxG7Sefin .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOxG7Sefin .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOxG7Sefin .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOxG7Sefin .mbr-section-title {
  color: #232323;
}
.cid-uOxFyTNLBL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOxFyTNLBL img,
.cid-uOxFyTNLBL .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uOxFyTNLBL .item:focus,
.cid-uOxFyTNLBL span:focus {
  outline: none;
}
.cid-uOxFyTNLBL .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOxFyTNLBL .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOxFyTNLBL .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOxFyTNLBL .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOxFyTNLBL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOxFyTNLBL .mbr-section-title {
  color: #232323;
}
.cid-uOxEJrrKAk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOxEJrrKAk img,
.cid-uOxEJrrKAk .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uOxEJrrKAk .item:focus,
.cid-uOxEJrrKAk span:focus {
  outline: none;
}
.cid-uOxEJrrKAk .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOxEJrrKAk .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOxEJrrKAk .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOxEJrrKAk .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOxEJrrKAk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOxEJrrKAk .mbr-section-title {
  color: #232323;
}
.cid-uOxEtnublO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOxEtnublO img,
.cid-uOxEtnublO .item-img {
  width: 100%;
}
.cid-uOxEtnublO .item:focus,
.cid-uOxEtnublO span:focus {
  outline: none;
}
.cid-uOxEtnublO .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOxEtnublO .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOxEtnublO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOxEtnublO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOxEtnublO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOxEtnublO .mbr-section-title {
  color: #232323;
}
.cid-uOxDeRbT9g {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOxDeRbT9g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOxDeRbT9g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOxDeRbT9g .item {
  padding-bottom: 2rem;
}
.cid-uOxDeRbT9g .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uOxDeRbT9g .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uOxDeRbT9g .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-uOxDeRbT9g .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uOxDeRbT9g .carousel-control,
.cid-uOxDeRbT9g .close {
  background: #1b1b1b;
}
.cid-uOxDeRbT9g .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uOxDeRbT9g .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uOxDeRbT9g .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uOxDeRbT9g .carousel-control-next span {
  margin-left: 5px;
}
.cid-uOxDeRbT9g .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-uOxDeRbT9g .close::before {
  content: '\e91a';
}
.cid-uOxDeRbT9g .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uOxDeRbT9g .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-uOxDeRbT9g .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOxDeRbT9g .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uOxDeRbT9g .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uOxDeRbT9g .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uOxDeRbT9g .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-uOxDeRbT9g .carousel-indicators li.active,
.cid-uOxDeRbT9g .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uOxDeRbT9g .carousel-indicators li::after,
.cid-uOxDeRbT9g .carousel-indicators li::before {
  content: none;
}
.cid-uOxDeRbT9g .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uOxDeRbT9g .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uOxDeRbT9g .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uOxDeRbT9g .carousel-indicators {
    display: none;
  }
}
.cid-uOxDeRbT9g .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uOxDeRbT9g .carousel-inner > .active {
  display: block;
}
.cid-uOxDeRbT9g .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOxDeRbT9g .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uOxDeRbT9g .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uOxDeRbT9g .carousel-control,
  .cid-uOxDeRbT9g .carousel-indicators,
  .cid-uOxDeRbT9g .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uOxDeRbT9g .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uOxDeRbT9g .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uOxDeRbT9g .carousel-indicators .active,
.cid-uOxDeRbT9g .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uOxDeRbT9g .carousel-indicators .active {
  background: #fff;
}
.cid-uOxDeRbT9g .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uOxDeRbT9g .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uOxDeRbT9g .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uOxDeRbT9g .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uOxDeRbT9g .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uOxDeRbT9g .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uOxDeRbT9g .carousel {
  width: 100%;
}
.cid-uOxDeRbT9g .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uOxDeRbT9g .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uOxDeRbT9g .modal.fade .modal-dialog,
.cid-uOxDeRbT9g .modal.in .modal-dialog {
  transform: none;
}
.cid-uOxDeRbT9g .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uOxDeRbT9g H6 {
  text-align: center;
}
.cid-uOxDeRbT9g H3 {
  text-align: center;
}
.cid-uMhv6jW0hF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMhv6jW0hF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMhv6jW0hF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMhv6jW0hF .item {
  padding-bottom: 2rem;
}
.cid-uMhv6jW0hF .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uMhv6jW0hF .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uMhv6jW0hF .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-uMhv6jW0hF .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uMhv6jW0hF .carousel-control,
.cid-uMhv6jW0hF .close {
  background: #1b1b1b;
}
.cid-uMhv6jW0hF .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMhv6jW0hF .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMhv6jW0hF .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMhv6jW0hF .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMhv6jW0hF .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-uMhv6jW0hF .close::before {
  content: '\e91a';
}
.cid-uMhv6jW0hF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMhv6jW0hF .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-uMhv6jW0hF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMhv6jW0hF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMhv6jW0hF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMhv6jW0hF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMhv6jW0hF .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-uMhv6jW0hF .carousel-indicators li.active,
.cid-uMhv6jW0hF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMhv6jW0hF .carousel-indicators li::after,
.cid-uMhv6jW0hF .carousel-indicators li::before {
  content: none;
}
.cid-uMhv6jW0hF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMhv6jW0hF .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMhv6jW0hF .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMhv6jW0hF .carousel-indicators {
    display: none;
  }
}
.cid-uMhv6jW0hF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMhv6jW0hF .carousel-inner > .active {
  display: block;
}
.cid-uMhv6jW0hF .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMhv6jW0hF .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMhv6jW0hF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMhv6jW0hF .carousel-control,
  .cid-uMhv6jW0hF .carousel-indicators,
  .cid-uMhv6jW0hF .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMhv6jW0hF .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMhv6jW0hF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMhv6jW0hF .carousel-indicators .active,
.cid-uMhv6jW0hF .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMhv6jW0hF .carousel-indicators .active {
  background: #fff;
}
.cid-uMhv6jW0hF .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMhv6jW0hF .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMhv6jW0hF .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMhv6jW0hF .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMhv6jW0hF .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMhv6jW0hF .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMhv6jW0hF .carousel {
  width: 100%;
}
.cid-uMhv6jW0hF .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMhv6jW0hF .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMhv6jW0hF .modal.fade .modal-dialog,
.cid-uMhv6jW0hF .modal.in .modal-dialog {
  transform: none;
}
.cid-uMhv6jW0hF .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMhv6jW0hF H6 {
  text-align: center;
}
.cid-uMhu1uRA4l {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMhu1uRA4l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMhu1uRA4l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMhu1uRA4l .item {
  padding-bottom: 2rem;
}
.cid-uMhu1uRA4l .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uMhu1uRA4l .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uMhu1uRA4l .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-uMhu1uRA4l .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uMhu1uRA4l .carousel-control,
.cid-uMhu1uRA4l .close {
  background: #1b1b1b;
}
.cid-uMhu1uRA4l .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMhu1uRA4l .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMhu1uRA4l .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMhu1uRA4l .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMhu1uRA4l .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-uMhu1uRA4l .close::before {
  content: '\e91a';
}
.cid-uMhu1uRA4l .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMhu1uRA4l .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-uMhu1uRA4l .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMhu1uRA4l .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMhu1uRA4l .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMhu1uRA4l .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMhu1uRA4l .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-uMhu1uRA4l .carousel-indicators li.active,
.cid-uMhu1uRA4l .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMhu1uRA4l .carousel-indicators li::after,
.cid-uMhu1uRA4l .carousel-indicators li::before {
  content: none;
}
.cid-uMhu1uRA4l .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMhu1uRA4l .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMhu1uRA4l .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMhu1uRA4l .carousel-indicators {
    display: none;
  }
}
.cid-uMhu1uRA4l .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMhu1uRA4l .carousel-inner > .active {
  display: block;
}
.cid-uMhu1uRA4l .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMhu1uRA4l .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMhu1uRA4l .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMhu1uRA4l .carousel-control,
  .cid-uMhu1uRA4l .carousel-indicators,
  .cid-uMhu1uRA4l .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMhu1uRA4l .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMhu1uRA4l .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMhu1uRA4l .carousel-indicators .active,
.cid-uMhu1uRA4l .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMhu1uRA4l .carousel-indicators .active {
  background: #fff;
}
.cid-uMhu1uRA4l .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMhu1uRA4l .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMhu1uRA4l .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMhu1uRA4l .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMhu1uRA4l .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMhu1uRA4l .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMhu1uRA4l .carousel {
  width: 100%;
}
.cid-uMhu1uRA4l .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMhu1uRA4l .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMhu1uRA4l .modal.fade .modal-dialog,
.cid-uMhu1uRA4l .modal.in .modal-dialog {
  transform: none;
}
.cid-uMhu1uRA4l .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMhu1uRA4l H6 {
  text-align: center;
}
.cid-uJEYFL5kCe {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/photo-2025-05-07-09-06-32-1280x713.jpg");
}
.cid-uJEYFL5kCe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJEYFL5kCe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJEYFL5kCe .item {
  padding-bottom: 2rem;
}
.cid-uJEYFL5kCe .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uJEYFL5kCe .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uJEYFL5kCe .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-uJEYFL5kCe .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uJEYFL5kCe .carousel-control,
.cid-uJEYFL5kCe .close {
  background: #1b1b1b;
}
.cid-uJEYFL5kCe .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uJEYFL5kCe .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uJEYFL5kCe .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uJEYFL5kCe .carousel-control-next span {
  margin-left: 5px;
}
.cid-uJEYFL5kCe .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-uJEYFL5kCe .close::before {
  content: '\e91a';
}
.cid-uJEYFL5kCe .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uJEYFL5kCe .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-uJEYFL5kCe .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJEYFL5kCe .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uJEYFL5kCe .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uJEYFL5kCe .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uJEYFL5kCe .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-uJEYFL5kCe .carousel-indicators li.active,
.cid-uJEYFL5kCe .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uJEYFL5kCe .carousel-indicators li::after,
.cid-uJEYFL5kCe .carousel-indicators li::before {
  content: none;
}
.cid-uJEYFL5kCe .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uJEYFL5kCe .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uJEYFL5kCe .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uJEYFL5kCe .carousel-indicators {
    display: none;
  }
}
.cid-uJEYFL5kCe .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uJEYFL5kCe .carousel-inner > .active {
  display: block;
}
.cid-uJEYFL5kCe .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJEYFL5kCe .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uJEYFL5kCe .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uJEYFL5kCe .carousel-control,
  .cid-uJEYFL5kCe .carousel-indicators,
  .cid-uJEYFL5kCe .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uJEYFL5kCe .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uJEYFL5kCe .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uJEYFL5kCe .carousel-indicators .active,
.cid-uJEYFL5kCe .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uJEYFL5kCe .carousel-indicators .active {
  background: #fff;
}
.cid-uJEYFL5kCe .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uJEYFL5kCe .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uJEYFL5kCe .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uJEYFL5kCe .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uJEYFL5kCe .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uJEYFL5kCe .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uJEYFL5kCe .carousel {
  width: 100%;
}
.cid-uJEYFL5kCe .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uJEYFL5kCe .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uJEYFL5kCe .modal.fade .modal-dialog,
.cid-uJEYFL5kCe .modal.in .modal-dialog {
  transform: none;
}
.cid-uJEYFL5kCe .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uJEYFL5kCe H6 {
  text-align: center;
}
.cid-uJEYWE2IVf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/photo-2025-05-07-09-06-32-1280x713.jpg");
}
.cid-uJEYWE2IVf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJEYWE2IVf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJEYWE2IVf .item {
  padding-bottom: 2rem;
}
.cid-uJEYWE2IVf .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uJEYWE2IVf .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uJEYWE2IVf .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-uJEYWE2IVf .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uJEYWE2IVf .carousel-control,
.cid-uJEYWE2IVf .close {
  background: #1b1b1b;
}
.cid-uJEYWE2IVf .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uJEYWE2IVf .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uJEYWE2IVf .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uJEYWE2IVf .carousel-control-next span {
  margin-left: 5px;
}
.cid-uJEYWE2IVf .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-uJEYWE2IVf .close::before {
  content: '\e91a';
}
.cid-uJEYWE2IVf .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uJEYWE2IVf .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-uJEYWE2IVf .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJEYWE2IVf .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uJEYWE2IVf .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uJEYWE2IVf .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uJEYWE2IVf .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-uJEYWE2IVf .carousel-indicators li.active,
.cid-uJEYWE2IVf .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uJEYWE2IVf .carousel-indicators li::after,
.cid-uJEYWE2IVf .carousel-indicators li::before {
  content: none;
}
.cid-uJEYWE2IVf .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uJEYWE2IVf .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uJEYWE2IVf .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uJEYWE2IVf .carousel-indicators {
    display: none;
  }
}
.cid-uJEYWE2IVf .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uJEYWE2IVf .carousel-inner > .active {
  display: block;
}
.cid-uJEYWE2IVf .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJEYWE2IVf .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uJEYWE2IVf .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uJEYWE2IVf .carousel-control,
  .cid-uJEYWE2IVf .carousel-indicators,
  .cid-uJEYWE2IVf .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uJEYWE2IVf .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uJEYWE2IVf .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uJEYWE2IVf .carousel-indicators .active,
.cid-uJEYWE2IVf .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uJEYWE2IVf .carousel-indicators .active {
  background: #fff;
}
.cid-uJEYWE2IVf .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uJEYWE2IVf .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uJEYWE2IVf .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uJEYWE2IVf .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uJEYWE2IVf .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uJEYWE2IVf .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uJEYWE2IVf .carousel {
  width: 100%;
}
.cid-uJEYWE2IVf .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uJEYWE2IVf .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uJEYWE2IVf .modal.fade .modal-dialog,
.cid-uJEYWE2IVf .modal.in .modal-dialog {
  transform: none;
}
.cid-uJEYWE2IVf .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uJEYWE2IVf H6 {
  text-align: center;
}
.cid-uJF03sMnOf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #96ff98;
}
.cid-uJF03sMnOf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJF03sMnOf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJF03sMnOf .item {
  padding-bottom: 2rem;
}
.cid-uJF03sMnOf .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uJF03sMnOf .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uJF03sMnOf .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-uJF03sMnOf .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uJF03sMnOf .carousel-control,
.cid-uJF03sMnOf .close {
  background: #1b1b1b;
}
.cid-uJF03sMnOf .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uJF03sMnOf .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uJF03sMnOf .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uJF03sMnOf .carousel-control-next span {
  margin-left: 5px;
}
.cid-uJF03sMnOf .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-uJF03sMnOf .close::before {
  content: '\e91a';
}
.cid-uJF03sMnOf .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uJF03sMnOf .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-uJF03sMnOf .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJF03sMnOf .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uJF03sMnOf .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uJF03sMnOf .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uJF03sMnOf .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-uJF03sMnOf .carousel-indicators li.active,
.cid-uJF03sMnOf .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uJF03sMnOf .carousel-indicators li::after,
.cid-uJF03sMnOf .carousel-indicators li::before {
  content: none;
}
.cid-uJF03sMnOf .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uJF03sMnOf .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uJF03sMnOf .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uJF03sMnOf .carousel-indicators {
    display: none;
  }
}
.cid-uJF03sMnOf .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uJF03sMnOf .carousel-inner > .active {
  display: block;
}
.cid-uJF03sMnOf .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJF03sMnOf .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uJF03sMnOf .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uJF03sMnOf .carousel-control,
  .cid-uJF03sMnOf .carousel-indicators,
  .cid-uJF03sMnOf .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uJF03sMnOf .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uJF03sMnOf .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uJF03sMnOf .carousel-indicators .active,
.cid-uJF03sMnOf .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uJF03sMnOf .carousel-indicators .active {
  background: #fff;
}
.cid-uJF03sMnOf .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uJF03sMnOf .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uJF03sMnOf .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uJF03sMnOf .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uJF03sMnOf .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uJF03sMnOf .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uJF03sMnOf .carousel {
  width: 100%;
}
.cid-uJF03sMnOf .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uJF03sMnOf .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uJF03sMnOf .modal.fade .modal-dialog,
.cid-uJF03sMnOf .modal.in .modal-dialog {
  transform: none;
}
.cid-uJF03sMnOf .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uJF03sMnOf H6 {
  text-align: center;
}
.cid-uJF0qPV1w7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #96ff98;
}
.cid-uJF0qPV1w7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJF0qPV1w7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJF0qPV1w7 .item {
  padding-bottom: 2rem;
}
.cid-uJF0qPV1w7 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uJF0qPV1w7 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uJF0qPV1w7 .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-uJF0qPV1w7 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uJF0qPV1w7 .carousel-control,
.cid-uJF0qPV1w7 .close {
  background: #1b1b1b;
}
.cid-uJF0qPV1w7 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uJF0qPV1w7 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uJF0qPV1w7 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uJF0qPV1w7 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uJF0qPV1w7 .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-uJF0qPV1w7 .close::before {
  content: '\e91a';
}
.cid-uJF0qPV1w7 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uJF0qPV1w7 .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-uJF0qPV1w7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJF0qPV1w7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uJF0qPV1w7 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uJF0qPV1w7 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uJF0qPV1w7 .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-uJF0qPV1w7 .carousel-indicators li.active,
.cid-uJF0qPV1w7 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uJF0qPV1w7 .carousel-indicators li::after,
.cid-uJF0qPV1w7 .carousel-indicators li::before {
  content: none;
}
.cid-uJF0qPV1w7 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uJF0qPV1w7 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uJF0qPV1w7 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uJF0qPV1w7 .carousel-indicators {
    display: none;
  }
}
.cid-uJF0qPV1w7 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uJF0qPV1w7 .carousel-inner > .active {
  display: block;
}
.cid-uJF0qPV1w7 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJF0qPV1w7 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uJF0qPV1w7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uJF0qPV1w7 .carousel-control,
  .cid-uJF0qPV1w7 .carousel-indicators,
  .cid-uJF0qPV1w7 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uJF0qPV1w7 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uJF0qPV1w7 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uJF0qPV1w7 .carousel-indicators .active,
.cid-uJF0qPV1w7 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uJF0qPV1w7 .carousel-indicators .active {
  background: #fff;
}
.cid-uJF0qPV1w7 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uJF0qPV1w7 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uJF0qPV1w7 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uJF0qPV1w7 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uJF0qPV1w7 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uJF0qPV1w7 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uJF0qPV1w7 .carousel {
  width: 100%;
}
.cid-uJF0qPV1w7 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uJF0qPV1w7 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uJF0qPV1w7 .modal.fade .modal-dialog,
.cid-uJF0qPV1w7 .modal.in .modal-dialog {
  transform: none;
}
.cid-uJF0qPV1w7 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uJF0qPV1w7 H6 {
  text-align: center;
}
.cid-uJF0qPV1w7 DIV {
  text-align: center;
}
.cid-uJF1ahIi1L {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-color: #96ff98;
}
.cid-uJF1ahIi1L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJF1ahIi1L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJF1ahIi1L .item {
  padding-bottom: 2rem;
}
.cid-uJF1ahIi1L .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uJF1ahIi1L .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uJF1ahIi1L .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-uJF1ahIi1L .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uJF1ahIi1L .carousel-control,
.cid-uJF1ahIi1L .close {
  background: #1b1b1b;
}
.cid-uJF1ahIi1L .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uJF1ahIi1L .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uJF1ahIi1L .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uJF1ahIi1L .carousel-control-next span {
  margin-left: 5px;
}
.cid-uJF1ahIi1L .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-uJF1ahIi1L .close::before {
  content: '\e91a';
}
.cid-uJF1ahIi1L .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uJF1ahIi1L .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-uJF1ahIi1L .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJF1ahIi1L .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uJF1ahIi1L .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uJF1ahIi1L .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uJF1ahIi1L .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-uJF1ahIi1L .carousel-indicators li.active,
.cid-uJF1ahIi1L .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uJF1ahIi1L .carousel-indicators li::after,
.cid-uJF1ahIi1L .carousel-indicators li::before {
  content: none;
}
.cid-uJF1ahIi1L .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uJF1ahIi1L .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uJF1ahIi1L .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uJF1ahIi1L .carousel-indicators {
    display: none;
  }
}
.cid-uJF1ahIi1L .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uJF1ahIi1L .carousel-inner > .active {
  display: block;
}
.cid-uJF1ahIi1L .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJF1ahIi1L .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uJF1ahIi1L .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uJF1ahIi1L .carousel-control,
  .cid-uJF1ahIi1L .carousel-indicators,
  .cid-uJF1ahIi1L .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uJF1ahIi1L .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uJF1ahIi1L .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uJF1ahIi1L .carousel-indicators .active,
.cid-uJF1ahIi1L .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uJF1ahIi1L .carousel-indicators .active {
  background: #fff;
}
.cid-uJF1ahIi1L .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uJF1ahIi1L .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uJF1ahIi1L .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uJF1ahIi1L .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uJF1ahIi1L .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uJF1ahIi1L .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uJF1ahIi1L .carousel {
  width: 100%;
}
.cid-uJF1ahIi1L .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uJF1ahIi1L .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uJF1ahIi1L .modal.fade .modal-dialog,
.cid-uJF1ahIi1L .modal.in .modal-dialog {
  transform: none;
}
.cid-uJF1ahIi1L .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uJF1ahIi1L H6 {
  text-align: center;
}
.cid-uJF42eb1Y8 {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #96ff98;
}
.cid-uJF42eb1Y8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJF42eb1Y8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJF42eb1Y8 .item {
  padding-bottom: 2rem;
}
.cid-uJF42eb1Y8 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uJF42eb1Y8 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uJF42eb1Y8 .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-uJF42eb1Y8 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uJF42eb1Y8 .carousel-control,
.cid-uJF42eb1Y8 .close {
  background: #1b1b1b;
}
.cid-uJF42eb1Y8 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uJF42eb1Y8 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uJF42eb1Y8 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uJF42eb1Y8 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uJF42eb1Y8 .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-uJF42eb1Y8 .close::before {
  content: '\e91a';
}
.cid-uJF42eb1Y8 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uJF42eb1Y8 .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-uJF42eb1Y8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJF42eb1Y8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uJF42eb1Y8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uJF42eb1Y8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uJF42eb1Y8 .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-uJF42eb1Y8 .carousel-indicators li.active,
.cid-uJF42eb1Y8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uJF42eb1Y8 .carousel-indicators li::after,
.cid-uJF42eb1Y8 .carousel-indicators li::before {
  content: none;
}
.cid-uJF42eb1Y8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uJF42eb1Y8 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uJF42eb1Y8 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uJF42eb1Y8 .carousel-indicators {
    display: none;
  }
}
.cid-uJF42eb1Y8 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uJF42eb1Y8 .carousel-inner > .active {
  display: block;
}
.cid-uJF42eb1Y8 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJF42eb1Y8 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uJF42eb1Y8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uJF42eb1Y8 .carousel-control,
  .cid-uJF42eb1Y8 .carousel-indicators,
  .cid-uJF42eb1Y8 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uJF42eb1Y8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uJF42eb1Y8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uJF42eb1Y8 .carousel-indicators .active,
.cid-uJF42eb1Y8 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uJF42eb1Y8 .carousel-indicators .active {
  background: #fff;
}
.cid-uJF42eb1Y8 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uJF42eb1Y8 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uJF42eb1Y8 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uJF42eb1Y8 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uJF42eb1Y8 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uJF42eb1Y8 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uJF42eb1Y8 .carousel {
  width: 100%;
}
.cid-uJF42eb1Y8 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uJF42eb1Y8 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uJF42eb1Y8 .modal.fade .modal-dialog,
.cid-uJF42eb1Y8 .modal.in .modal-dialog {
  transform: none;
}
.cid-uJF42eb1Y8 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uJF42eb1Y8 H6 {
  text-align: center;
}
.cid-uJF435GVZX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #96ff98;
}
.cid-uJF435GVZX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJF435GVZX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJF435GVZX .item {
  padding-bottom: 2rem;
}
.cid-uJF435GVZX .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uJF435GVZX .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uJF435GVZX .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-uJF435GVZX .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uJF435GVZX .carousel-control,
.cid-uJF435GVZX .close {
  background: #1b1b1b;
}
.cid-uJF435GVZX .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uJF435GVZX .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uJF435GVZX .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uJF435GVZX .carousel-control-next span {
  margin-left: 5px;
}
.cid-uJF435GVZX .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-uJF435GVZX .close::before {
  content: '\e91a';
}
.cid-uJF435GVZX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uJF435GVZX .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-uJF435GVZX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJF435GVZX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uJF435GVZX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uJF435GVZX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uJF435GVZX .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-uJF435GVZX .carousel-indicators li.active,
.cid-uJF435GVZX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uJF435GVZX .carousel-indicators li::after,
.cid-uJF435GVZX .carousel-indicators li::before {
  content: none;
}
.cid-uJF435GVZX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uJF435GVZX .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uJF435GVZX .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uJF435GVZX .carousel-indicators {
    display: none;
  }
}
.cid-uJF435GVZX .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uJF435GVZX .carousel-inner > .active {
  display: block;
}
.cid-uJF435GVZX .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJF435GVZX .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uJF435GVZX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uJF435GVZX .carousel-control,
  .cid-uJF435GVZX .carousel-indicators,
  .cid-uJF435GVZX .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uJF435GVZX .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uJF435GVZX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uJF435GVZX .carousel-indicators .active,
.cid-uJF435GVZX .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uJF435GVZX .carousel-indicators .active {
  background: #fff;
}
.cid-uJF435GVZX .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uJF435GVZX .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uJF435GVZX .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uJF435GVZX .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uJF435GVZX .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uJF435GVZX .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uJF435GVZX .carousel {
  width: 100%;
}
.cid-uJF435GVZX .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uJF435GVZX .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uJF435GVZX .modal.fade .modal-dialog,
.cid-uJF435GVZX .modal.in .modal-dialog {
  transform: none;
}
.cid-uJF435GVZX .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uJF435GVZX H6 {
  text-align: center;
}
.cid-uJF43CdS7p {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #96ff98;
}
.cid-uJF43CdS7p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJF43CdS7p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJF43CdS7p .item {
  padding-bottom: 2rem;
}
.cid-uJF43CdS7p .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uJF43CdS7p .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uJF43CdS7p .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-uJF43CdS7p .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uJF43CdS7p .carousel-control,
.cid-uJF43CdS7p .close {
  background: #1b1b1b;
}
.cid-uJF43CdS7p .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uJF43CdS7p .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uJF43CdS7p .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uJF43CdS7p .carousel-control-next span {
  margin-left: 5px;
}
.cid-uJF43CdS7p .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-uJF43CdS7p .close::before {
  content: '\e91a';
}
.cid-uJF43CdS7p .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uJF43CdS7p .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-uJF43CdS7p .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJF43CdS7p .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uJF43CdS7p .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uJF43CdS7p .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uJF43CdS7p .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-uJF43CdS7p .carousel-indicators li.active,
.cid-uJF43CdS7p .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uJF43CdS7p .carousel-indicators li::after,
.cid-uJF43CdS7p .carousel-indicators li::before {
  content: none;
}
.cid-uJF43CdS7p .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uJF43CdS7p .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uJF43CdS7p .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uJF43CdS7p .carousel-indicators {
    display: none;
  }
}
.cid-uJF43CdS7p .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uJF43CdS7p .carousel-inner > .active {
  display: block;
}
.cid-uJF43CdS7p .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJF43CdS7p .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uJF43CdS7p .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uJF43CdS7p .carousel-control,
  .cid-uJF43CdS7p .carousel-indicators,
  .cid-uJF43CdS7p .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uJF43CdS7p .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uJF43CdS7p .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uJF43CdS7p .carousel-indicators .active,
.cid-uJF43CdS7p .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uJF43CdS7p .carousel-indicators .active {
  background: #fff;
}
.cid-uJF43CdS7p .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uJF43CdS7p .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uJF43CdS7p .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uJF43CdS7p .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uJF43CdS7p .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uJF43CdS7p .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uJF43CdS7p .carousel {
  width: 100%;
}
.cid-uJF43CdS7p .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uJF43CdS7p .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uJF43CdS7p .modal.fade .modal-dialog,
.cid-uJF43CdS7p .modal.in .modal-dialog {
  transform: none;
}
.cid-uJF43CdS7p .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uJF43CdS7p H6 {
  text-align: center;
}
